* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}

		body {
			font-family: 'Segoe UI', Arial, sans-serif;
			background: #f0f4ff;
			color: #222;
			max-width: 480px;
			margin: 0 auto;
		}

		/* FLOATING ORDER BUTTON */
		.float-btn {
			position: fixed;
			bottom: 18px;
			left: 50%;
			transform: translateX(-50%);
			z-index: 1000;
			width: 92%;
			max-width: 440px;
		}

		.float-btn a {
			display: block;
			background: linear-gradient(135deg, #1565c0, #1976d2);
			color: #fff;
			text-align: center;
			padding: 16px 20px;
			border-radius: 50px;
			font-size: 17px;
			font-weight: 800;
			text-decoration: none;
			box-shadow: 0 6px 24px rgba(21, 101, 192, 0.5);
			animation: pulse 2s infinite;
		}

		@keyframes pulse {

			0%,
			100% {
				box-shadow: 0 6px 24px rgba(21, 101, 192, 0.5)
			}

			50% {
				box-shadow: 0 8px 32px rgba(21, 101, 192, 0.75)
			}
		}

		/* TOP BAR */
		.top-bar {
			background: linear-gradient(135deg, #0d47a1, #1565c0);
			color: #fff;
			text-align: center;
			padding: 10px 16px;
			font-size: 13px;
			font-weight: 600;
		}

		.top-bar span {
			color: #90caf9;
		}

		/* BADGES */
		.hero-badges {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 10px 14px;
			background: #fff;
			border-bottom: 1px solid #e3f2fd;
		}

		.badge-instock {
			display: flex;
			align-items: center;
			gap: 6px;
			background: linear-gradient(135deg, #e3f2fd, #bbdefb);
			border: 1.5px solid #1976d2;
			border-radius: 20px;
			padding: 6px 14px;
			font-size: 13px;
			font-weight: 700;
			color: #0d47a1;
		}

		.hit-badge {
			background: linear-gradient(135deg, #1565c0, #1976d2);
			color: #fff;
			border-radius: 20px;
			padding: 6px 14px;
			font-size: 12px;
			font-weight: 800;
			letter-spacing: 0.5px;
			animation: pulse 2s infinite;
		}

		/* COUNTDOWN */
		.countdown-wrap {
			background: linear-gradient(135deg, #0d47a1, #1565c0);
			padding: 12px 16px;
			text-align: center;
		}

		.countdown-label {
			color: #90caf9;
			font-size: 12px;
			margin-bottom: 6px;
		}

		.countdown-label span {
			color: #ffeb3b;
			font-weight: 700;
		}

		.countdown-timer {
			display: flex;
			justify-content: center;
			gap: 10px;
		}

		.time-block {
			background: #1976d2;
			border-radius: 10px;
			padding: 8px 14px;
			min-width: 58px;
			text-align: center;
		}

		.time-block .num {
			font-size: 24px;
			font-weight: 900;
			color: #fff;
			line-height: 1;
		}

		.time-block .lbl {
			font-size: 10px;
			color: rgba(255, 255, 255, 0.8);
			margin-top: 2px;
		}

		.time-sep {
			color: #ffeb3b;
			font-size: 24px;
			font-weight: 900;
			align-self: center;
			margin-top: -6px;
		}

		/* HERO IMAGE */
		.hero img {
			width: 100%;
			display: block;
		}

		/* TRUST STRIP */
		.trust-strip {
			background: #fff;
			padding: 14px 16px;
			border-bottom: 2px solid #e3f2fd;
		}

		.trust-item {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 7px 0;
			border-bottom: 1px solid #f0f4ff;
			font-size: 13.5px;
			font-weight: 600;
			color: #333;
		}

		.trust-item:last-child {
			border-bottom: none;
		}

		.trust-item .icon {
			font-size: 18px;
			flex-shrink: 0;
		}

		/* URGENCY */
		.urgency {
			background: linear-gradient(135deg, #fff8e1, #ffecb3);
			border-left: 4px solid #ffa000;
			padding: 14px 16px;
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.urgency .fire {
			font-size: 28px;
		}

		.urgency-text {
			font-size: 13px;
			font-weight: 700;
			color: #e65100;
			line-height: 1.4;
		}

		.urgency-text span {
			font-size: 20px;
			color: #ffa000;
		}

		/* ORDER FORM */
		.order-section {
			background: linear-gradient(135deg, #0d47a1, #1565c0);
			padding: 24px 16px;
			margin: 8px 0;
		}

		.order-section.white-bg {
			background: #fff;
			border-top: 3px solid #1565c0;
		}

		.order-manager-note {
			background: linear-gradient(135deg, #e3f2fd, #bbdefb);
			border-radius: 12px;
			padding: 14px 16px;
			margin-bottom: 16px;
			border: 1.5px solid #1976d2;
			text-align: center;
		}

		.order-manager-note .mgr-icon {
			font-size: 28px;
			margin-bottom: 6px;
		}

		.order-manager-note p {
			font-size: 13.5px;
			font-weight: 700;
			color: #0d47a1;
			line-height: 1.5;
		}

		.price-block {
			text-align: center;
			margin-bottom: 18px;
		}

		.price-old {
			font-size: 16px;
			color: #90caf9;
			text-decoration: line-through;
			margin-bottom: 4px;
		}

		.price-new {
			font-size: 36px;
			font-weight: 900;
			color: #ffeb3b;
			line-height: 1;
		}

		.price-new span {
			font-size: 20px;
		}

		.price-save {
			display: inline-block;
			background: #ff6f00;
			color: #fff;
			border-radius: 20px;
			padding: 4px 14px;
			font-size: 13px;
			font-weight: 700;
			margin-top: 6px;
		}

		.form-title {
			text-align: center;
			font-size: 18px;
			font-weight: 900;
			color: #fff;
			margin-bottom: 16px;
		}

		.form-title.dark {
			color: #0d47a1;
		}

		.order-form input {
			width: 100%;
			padding: 15px 16px;
			border-radius: 12px;
			border: 2px solid #e0e0e0;
			font-size: 16px;
			margin-bottom: 12px;
			background: #fff;
			outline: none;
			transition: border 0.2s;
		}

		.order-form input:focus {
			border-color: #1976d2;
		}

		.order-form button {
			width: 100%;
			padding: 17px;
			border-radius: 50px;
			border: none;
			background: linear-gradient(135deg, #ff6f00, #ffa000);
			color: #fff;
			font-size: 18px;
			font-weight: 900;
			cursor: pointer;
			box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
			transition: transform 0.1s;
		}

		.order-form button:active {
			transform: scale(0.97);
		}

		.form-note {
			text-align: center;
			font-size: 12px;
			color: rgba(255, 255, 255, 0.75);
			margin-top: 10px;
		}

		.form-note.dark {
			color: #888;
		}

		/* PRICE BLOCK WHITE */
		.price-block-white {
			text-align: center;
			margin-bottom: 18px;
		}

		.price-block-white .price-old {
			color: #999;
			font-size: 16px;
			text-decoration: line-through;
		}

		.price-block-white .price-new {
			font-size: 36px;
			font-weight: 900;
			color: #1565c0;
		}

		/* PHOTO BLOCKS */
		.photo-block {
			background: #fff;
			margin-bottom: 8px;
		}

		.photo-block img {
			width: 100%;
			display: block;
		}

		.photo-desc {
			padding: 16px;
			background: #fff;
			border-top: 3px solid #1565c0;
		}

		.photo-desc h3 {
			font-size: 16px;
			font-weight: 800;
			color: #0d47a1;
			margin-bottom: 8px;
		}

		.photo-desc p {
			font-size: 14px;
			color: #555;
			line-height: 1.6;
		}

		.photo-desc ul {
			list-style: none;
			margin-top: 8px;
		}

		.photo-desc ul li {
			font-size: 13.5px;
			color: #444;
			padding: 4px 0;
			display: flex;
			align-items: flex-start;
			gap: 8px;
		}

		.photo-desc ul li::before {
			content: "✅";
			flex-shrink: 0;
		}

		/* SPECS */
		.specs-section {
			background: #fff;
			padding: 20px 16px;
			margin: 8px 0;
		}

		.specs-title {
			font-size: 18px;
			font-weight: 900;
			color: #0d47a1;
			margin-bottom: 14px;
			text-align: center;
		}

		.spec-row {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 10px 0;
			border-bottom: 1px solid #e3f2fd;
		}

		.spec-row:last-child {
			border-bottom: none;
		}

		.spec-label {
			font-size: 13px;
			color: #888;
		}

		.spec-value {
			font-size: 13px;
			font-weight: 700;
			color: #0d47a1;
			text-align: right;
			max-width: 55%;
		}

		/* COMPLECTATION */
		.complect-section {
			background: #e3f2fd;
			padding: 20px 16px;
			margin: 8px 0;
		}

		.complect-title {
			font-size: 18px;
			font-weight: 900;
			color: #0d47a1;
			margin-bottom: 14px;
			text-align: center;
		}

		.complect-item {
			display: flex;
			align-items: center;
			gap: 12px;
			background: #fff;
			border-radius: 12px;
			padding: 12px 14px;
			margin-bottom: 10px;
			box-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
			font-size: 14px;
			font-weight: 600;
			color: #1565c0;
		}

		.complect-item .ci {
			font-size: 22px;
		}

		/* REVIEWS */
		.reviews-section {
			padding: 20px 16px;
			background: #e3f2fd;
		}

		.reviews-title {
			font-size: 20px;
			font-weight: 900;
			color: #0d47a1;
			margin-bottom: 16px;
			text-align: center;
		}

		.review-card {
			background: #fff;
			border-radius: 16px;
			padding: 16px;
			margin-bottom: 14px;
			box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
			transition: transform 0.2s, box-shadow 0.2s;
		}

		.review-card:hover {
			transform: translateY(-3px);
			box-shadow: 0 8px 24px rgba(21, 101, 192, 0.18);
		}

		.review-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 10px;
		}

		.reviewer-info {
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.reviewer-avatar {
			width: 42px;
			height: 42px;
			border-radius: 50%;
			background: linear-gradient(135deg, #1565c0, #1976d2);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 18px;
			font-weight: 900;
			color: #fff;
			flex-shrink: 0;
		}

		.reviewer-name {
			font-size: 14px;
			font-weight: 700;
			color: #0d47a1;
		}

		.review-stars {
			color: #ffc107;
			font-size: 13px;
			margin-top: 2px;
		}

		.verified-badge {
			background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
			border: 1px solid #4caf50;
			border-radius: 20px;
			padding: 4px 10px;
			font-size: 11px;
			font-weight: 700;
			color: #2e7d32;
			white-space: nowrap;
		}

		.review-date {
			font-size: 11px;
			color: #aaa;
			margin-bottom: 8px;
		}

		.review-text {
			font-size: 13.5px;
			color: #444;
			line-height: 1.6;
			margin-bottom: 10px;
		}

		.review-helpful {
			font-size: 12px;
			color: #888;
			display: flex;
			align-items: center;
			gap: 6px;
		}

		.review-helpful span {
			cursor: pointer;
			color: #1565c0;
			font-weight: 700;
		}

		/* FOOTER */
		.footer {
			background: #0d47a1;
			color: #90caf9;
			text-align: center;
			padding: 20px 16px;
			font-size: 12px;
			padding-bottom: 90px;
		}

		.footer strong {
			color: #ffeb3b;
		}