/* -------------------------------------------------------------
 * Ultra-Attractive Modern Sneaker Landing Page Stylesheet (Bengali)
 * Luxury Floating Studio Showcase Display (NO WHITE BOXES)
 * ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --theme-sage-dark: #2b3e34;
  --theme-sage: #3d584b;
  --theme-sage-light: #547562;
  --bg-dark: #060e0a;
  --bg-card: rgba(18, 33, 26, 0.78);
  --bg-card-hover: rgba(26, 48, 38, 0.95);
  --accent-primary: #10b981;
  --accent-secondary: #00f5a0;
  --accent-emerald-deep: #059669;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --text-main: #f3f7f4;
  --text-muted: #9bb1a5;
  --text-gold: #fbbf24;
  --border-color: rgba(84, 117, 98, 0.28);
  --border-glow: rgba(16, 185, 129, 0.45);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --shadow-glow: 0 10px 35px -5px rgba(16, 185, 129, 0.42);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Hind Siliguri', 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background: 
    radial-gradient(circle at 50% -10%, #1e3a2c 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(61, 88, 75, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    #060e0a;
  min-height: 100vh;
}

/* Background Grid Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(84, 117, 98, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(84, 117, 98, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* -------------------------------------------------------------
 * Top Announcement Bar (Luxury Glass Obsidian)
 * ------------------------------------------------------------- */
.announcement-bar {
  background: #050b07;
  border-bottom: 1px solid rgba(84, 117, 98, 0.3);
  padding: 8px 0;
  position: relative;
  z-index: 101;
  font-size: 13px;
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.announcement-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-badge {
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary));
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  white-space: nowrap;
}

.announcement-text {
  font-weight: 600;
  color: #cbd5e1;
}

.announcement-hotline {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.announcement-hotline:hover {
  color: var(--accent-secondary);
}

.announcement-hotline i {
  color: var(--accent-primary);
}

/* -------------------------------------------------------------
 * Header Navbar (Full-Width Glassmorphic Navigation)
 * ------------------------------------------------------------- */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 14, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(84, 117, 98, 0.22);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon-box {
  transform: scale(1.08) rotate(-6deg);
}

.logo-text-box {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-title .accent-text {
  color: var(--accent-primary);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Nav Menu & Links */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  background: rgba(61, 88, 75, 0.15);
  padding: 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(84, 117, 98, 0.2);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  white-space: nowrap;
}

.nav-link i {
  font-size: 12px;
  opacity: 0.8;
}

.nav-link:hover {
  color: #fff;
  background: rgba(84, 117, 98, 0.2);
}

.nav-link.active {
  color: #fff;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-weight: 700;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(61, 88, 75, 0.2);
  border: 1px solid rgba(84, 117, 98, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-phone-chip i {
  color: var(--accent-secondary);
  font-size: 12px;
}

.nav-phone-chip:hover {
  background: rgba(84, 117, 98, 0.35);
  border-color: rgba(84, 117, 98, 0.6);
  transform: translateY(-2px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary));
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.65);
}

.cart-pulse-icon {
  font-size: 13px;
}

/* Container Utility */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 88, 75, 0.28);
  border: 1px solid rgba(84, 117, 98, 0.45);
  color: var(--accent-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 35%, var(--accent-secondary) 70%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 19px;
  margin-bottom: 35px;
  max-width: 600px;
  line-height: 1.7;
}

/* Hero Top Badges & Social Proof */
.hero-top-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 88, 75, 0.2);
  border: 1px solid rgba(84, 117, 98, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.hero-rating-pill .stars {
  color: #fbbf24;
  font-size: 12px;
  display: flex;
  gap: 2px;
}

.hero-rating-pill strong {
  color: #fbbf24;
}

/* Enhanced Price & Scarcity Box */
.price-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(18, 33, 26, 0.55);
  backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(84, 117, 98, 0.45);
  width: fit-content;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(16, 185, 129, 0.06);
}

.price-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.current-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--accent-secondary);
  text-shadow: 0 0 20px rgba(0, 245, 160, 0.35);
  line-height: 1;
}

.original-price {
  font-size: 22px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stock-urgency-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.stock-urgency-pill strong {
  color: #fff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-emerald-deep) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
  color: #fff;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  animation: btnShine 4s infinite ease-in-out;
}

@keyframes btnShine {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.55);
}

.btn-secondary {
  background: rgba(61, 88, 75, 0.15);
  color: var(--text-main);
  padding: 18px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgba(84, 117, 98, 0.25);
  border-color: rgba(84, 117, 98, 0.5);
}

.hero-features-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  background: rgba(61, 88, 75, 0.15);
  border: 1px solid rgba(84, 117, 98, 0.22);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.hero-feature-item i {
  color: var(--accent-secondary);
  font-size: 15px;
}

/* -------------------------------------------------------------
 * Ultra-Luxury Hero Visual Showcase Card & Dynamic Ambient Aura
 * ------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dynamic Ambient Glow Behind Card */
.hero-ambient-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-ambient-glow.glow-cyan {
  background: radial-gradient(circle, rgba(0, 242, 254, 0.5) 0%, rgba(2, 132, 199, 0.25) 50%, transparent 75%);
}

.hero-ambient-glow.glow-orange {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.55) 0%, rgba(234, 88, 12, 0.25) 50%, transparent 75%);
}

.hero-ambient-glow.glow-blue {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.55) 0%, rgba(30, 64, 175, 0.25) 50%, transparent 75%);
}

.hero-ambient-glow.glow-yellow {
  background: radial-gradient(circle, rgba(234, 179, 8, 0.55) 0%, rgba(202, 138, 4, 0.25) 50%, transparent 75%);
}

.visual-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(18, 33, 26, 0.85);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(84, 117, 98, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(84, 117, 98, 0.25);
  overflow: hidden;
}

/* Card Top Bar */
.visual-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.model-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(61, 88, 75, 0.25);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(84, 117, 98, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 62%;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 10px var(--accent-secondary);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

.zoom-preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(61, 88, 75, 0.2);
  border: 1px solid rgba(84, 117, 98, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.zoom-preview-pill:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

/* Hero Image Wrapper & Floating Specs */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0b1812;
  border: 1px solid rgba(84, 117, 98, 0.25);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.7);
}

.hero-shoe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  cursor: pointer;
}

.hero-shoe-img:hover {
  transform: scale(1.04);
}

.floating-spec-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(14, 28, 20, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(84, 117, 98, 0.35);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.floating-spec-badge i {
  color: var(--accent-secondary);
}

.floating-spec-badge.badge-left {
  bottom: 14px;
  left: 14px;
}

.floating-spec-badge.badge-right {
  bottom: 14px;
  right: 14px;
}

/* Color Picker Header */
.color-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.picker-label {
  font-weight: 600;
}

.picker-active-text {
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Color Selection Chips Grid */
.color-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.color-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.color-chip .chip-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.color-chip .chip-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.color-chip:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.color-chip:hover .chip-text {
  color: #fff;
}

.color-chip.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.color-chip.active .chip-text {
  color: #fff;
  font-weight: 800;
}

/* -------------------------------------------------------------
 * 4-Product Showcase Section (ISOLATED FLOATING STUDIO RENDERS)
 * ------------------------------------------------------------- */
.products-section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px;
}

.section-subtitle {
  color: var(--accent-secondary);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: inline-block;
  background: rgba(61, 88, 75, 0.25);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(84, 117, 98, 0.35);
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-12px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.zoom-hint-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(6, 14, 10, 0.75);
  border: 1px solid rgba(84, 117, 98, 0.4);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 5;
  cursor: pointer;
  transition: var(--transition);
}

.zoom-hint-badge:hover {
  background: var(--accent-primary);
  transform: scale(1.1);
}

/* Product Image Wrapper - Ultra-Crisp Studio Showcase */
.product-img-wrapper {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  background: #0b1812;
  border: 1px solid rgba(84, 117, 98, 0.2);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-info h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-gold);
  font-size: 14px;
  margin-bottom: 14px;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: 4px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.product-price-row .price {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-secondary);
}

.product-price-row .old-price {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card .btn-order-card {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary));
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.product-card .btn-order-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.55);
}

/* Feature Highlights Grid */
.features-section {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(61, 88, 75, 0.28);
  border: 1px solid rgba(84, 117, 98, 0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-secondary);
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Urgency Timer Banner */
.urgency-section {
  background: linear-gradient(135deg, rgba(61, 88, 75, 0.35), rgba(6, 14, 10, 0.95));
  border: 2px solid rgba(84, 117, 98, 0.45);
  border-radius: var(--radius-lg);
  padding: 45px;
  margin: 40px 0 90px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.urgency-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.urgency-info h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.urgency-info p {
  color: var(--text-gold);
  font-weight: 700;
  font-size: 17px;
}

.timer-wrapper {
  display: flex;
  gap: 18px;
}

.timer-box {
  background: rgba(6, 14, 10, 0.85);
  border: 1px solid rgba(84, 117, 98, 0.45);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  min-width: 85px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.timer-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-secondary);
  display: block;
}

.timer-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Specs Gallery */
.details-section {
  padding-bottom: 90px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.details-img-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.details-img-box img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
  cursor: pointer;
}

.details-img-box:hover img {
  transform: scale(1.03);
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(61, 88, 75, 0.15);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(84, 117, 98, 0.22);
}

.spec-item i {
  color: var(--accent-secondary);
  font-size: 24px;
  margin-top: 2px;
}

.spec-item h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.spec-item p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Reviews */
.reviews-section {
  padding: 90px 0;
  background: rgba(0, 0, 0, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius-md);
}

.review-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--text-main);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.reviewer-name {
  font-weight: 800;
  color: #fff;
  font-size: 17px;
}

.reviewer-location {
  font-size: 13px;
  color: var(--text-muted);
}

/* Order Form */
.order-section {
  padding: 100px 0;
}

.order-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 15px;
}

.form-input, .form-select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(6, 14, 10, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
}

.size-selector-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  padding: 12px 20px;
  background: rgba(6, 14, 10, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  transition: var(--transition);
  user-select: none;
}

.chip.active {
  background: linear-gradient(135deg, var(--accent-emerald-deep), var(--accent-primary));
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.45);
}

.order-summary-box {
  background: rgba(6, 14, 10, 0.6);
  border: 1px solid rgba(84, 117, 98, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
}

.summary-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 16px;
}

.summary-row.total {
  border-top: 1px dashed var(--border-color);
  padding-top: 18px;
  margin-top: 18px;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-secondary);
}

.payment-method-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-primary);
  color: var(--accent-secondary);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  margin: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-emerald-deep) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
  color: #fff;
  padding: 20px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 21px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.55);
}

/* Image Zoom Lightbox Modal */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 8, 5, 0.96);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  text-align: center;
}

.image-lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(16, 185, 129, 0.35));
  border-radius: var(--radius-md);
}

.image-lightbox-caption {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-top: 20px;
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: -10px;
  background: var(--accent-primary);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-primary);
}

/* Social Proof Toast */
.social-proof-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(11, 23, 17, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.toast-content p {
  font-size: 14px;
  color: var(--text-main);
}

.toast-content strong {
  color: var(--accent-secondary);
}

.toast-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 14, 10, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 14px 22px;
  z-index: 999;
  justify-content: space-between;
  align-items: center;
}

/* Confirmation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #0d1b14;
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  padding: 45px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-icon {
  font-size: 64px;
  color: var(--accent-secondary);
  margin-bottom: 18px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 35px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.footer-credit {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* Responsive Rules */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .announcement-hotline {
    display: none;
  }
  .announcement-container {
    justify-content: center;
    text-align: center;
  }
  .hero-grid, .details-grid, .order-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-visual {
    order: -1;
  }
  .urgency-grid {
    justify-content: center;
    text-align: center;
  }
  .urgency-info {
    text-align: center;
  }
}

/* Mobile Responsive System (Strictly <= 600px) */
@media (max-width: 600px) {
  body {
    padding-bottom: 76px;
  }
  .container {
    padding: 0 16px;
  }
  .announcement-left {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .announcement-text {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }
  .navbar-container {
    padding: 10px 16px;
  }
  .nav-phone-chip span {
    display: none;
  }
  .nav-phone-chip {
    padding: 8px 10px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .logo-title {
    font-size: 20px;
  }
  .logo-icon-box {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .hero-section {
    padding: 24px 0 45px;
  }
  .hero-badge-tag {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .price-box {
    width: 100%;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
  }
  .current-price {
    font-size: 32px;
  }
  .original-price {
    font-size: 18px;
  }
  .price-main {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }
  .hero-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .hero-feature-item {
    font-size: 12px;
    padding: 6px 8px;
    justify-content: center;
    text-align: center;
  }
  .visual-card {
    padding: 14px;
    border-radius: 20px;
  }
  .model-status-pill {
    font-size: 11px;
    padding: 5px 10px;
    max-width: 58%;
  }
  .zoom-preview-pill {
    font-size: 10.5px;
    padding: 5px 10px;
  }
  .hero-image-wrapper {
    height: 270px;
    border-radius: 14px;
  }
  .floating-spec-badge {
    font-size: 10.5px;
    padding: 4px 8px;
  }
  .floating-spec-badge.badge-left {
    bottom: 8px;
    left: 8px;
  }
  .floating-spec-badge.badge-right {
    bottom: 8px;
    right: 8px;
  }
  .color-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .color-chip {
    padding: 9px 7px;
    gap: 6px;
    border-radius: 10px;
  }
  .color-chip .chip-swatch {
    width: 13px;
    height: 13px;
  }
  .color-chip .chip-text {
    font-size: 11.5px;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-title {
    font-size: 26px;
  }
  .products-section,
  .features-section,
  .reviews-section,
  .order-section {
    padding: 50px 0;
  }
  .details-section {
    padding-bottom: 50px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card {
    padding: 18px;
    border-radius: 18px;
  }
  .product-img-wrapper {
    height: 220px;
    margin-bottom: 14px;
  }
  .product-info h3 {
    font-size: 18px;
  }
  .product-price-row .price {
    font-size: 24px;
  }
  .product-card .btn-order-card {
    padding: 13px;
    font-size: 14.5px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 14px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .urgency-section {
    padding: 26px 16px;
    margin: 25px 0 50px;
    border-radius: 18px;
  }
  .urgency-info h2 {
    font-size: 22px;
  }
  .urgency-info p {
    font-size: 14px;
  }
  .timer-wrapper {
    gap: 8px;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
  }
  .timer-box {
    min-width: 0;
    flex: 1;
    padding: 10px 4px;
    border-radius: 10px;
  }
  .timer-num {
    font-size: 23px;
  }
  .timer-label {
    font-size: 10.5px;
  }
  .details-grid {
    gap: 28px;
  }
  .details-img-box {
    padding: 12px;
    border-radius: 18px;
  }
  .details-img-box img {
    max-height: 260px;
  }
  .spec-item {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
  }
  .spec-item i {
    font-size: 20px;
  }
  .spec-item h4 {
    font-size: 17px;
  }
  .spec-item p {
    font-size: 13.5px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .review-text {
    font-size: 14.5px;
    margin-bottom: 16px;
  }
  .sticky-mobile-cta {
    display: flex;
  }
  .order-wrapper {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .form-input,
  .form-select {
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 10px;
  }
  .size-selector-chips {
    gap: 8px;
  }
  .chip {
    padding: 10px 12px;
    font-size: 14px;
    flex: 1;
    min-width: 46px;
    text-align: center;
    border-radius: 10px;
  }
  .order-summary-box {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .summary-title {
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  .summary-row {
    font-size: 14.5px;
    margin-bottom: 12px;
  }
  .summary-row.total {
    font-size: 20px;
    padding-top: 14px;
    margin-top: 14px;
  }
  .payment-method-badge {
    font-size: 13px;
    padding: 10px 8px;
    margin: 16px 0;
    border-radius: 10px;
  }
  .submit-btn {
    padding: 16px;
    font-size: 18px;
  }
  .social-proof-toast {
    left: 15px;
    right: 15px;
    bottom: 80px;
  }
  .footer {
    padding: 45px 0 25px;
    font-size: 14px;
  }
  .modal-box {
    padding: 28px 16px;
    width: 92%;
    border-radius: 18px;
  }
  .modal-box h2 {
    font-size: 20px !important;
    line-height: 1.3;
  }
  .modal-box p {
    font-size: 14px !important;
    margin-bottom: 18px !important;
  }
  .modal-icon {
    font-size: 50px;
    margin-bottom: 12px;
  }
  .image-lightbox-content {
    max-width: 95%;
    max-height: 88%;
  }
  .lightbox-close-btn {
    top: 14px;
    right: 14px;
    position: fixed;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .image-lightbox-caption {
    font-size: 17px;
    margin-top: 14px;
  }
}

/* Compact Smartphones (max-width: 420px) */
@media (max-width: 420px) {
  .container {
    padding: 0 13px;
  }
  .announcement-bar {
    padding: 6px 0;
  }
  .announcement-container {
    padding: 0 10px;
  }
  .announcement-badge {
    font-size: 10px;
    padding: 2px 7px;
  }
  .announcement-text {
    font-size: 11px;
    line-height: 1.35;
  }
  .navbar-container {
    padding: 8px 10px;
    gap: 6px;
  }
  .logo {
    gap: 8px;
  }
  .logo-title {
    font-size: 17px;
  }
  .logo-sub {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .logo-icon-box {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 9px;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-phone-chip {
    padding: 7px 9px;
    font-size: 12px;
  }
  .nav-cta {
    padding: 7px 11px;
    font-size: 12px;
    gap: 5px;
  }
  .hero-section {
    padding: 18px 0 38px;
  }
  .hero-title {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .hero-desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .hero-badge-tag {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .hero-rating-pill {
    font-size: 11.5px;
    padding: 4px 10px;
  }
  .price-box {
    padding: 13px 14px;
  }
  .current-price {
    font-size: 28px;
  }
  .original-price {
    font-size: 16px;
  }
  .hero-image-wrapper {
    height: 230px;
  }
  .model-status-pill {
    font-size: 10px;
    padding: 4px 7px;
    max-width: 55%;
  }
  .zoom-preview-pill {
    font-size: 9.5px;
    padding: 4px 7px;
  }
  .floating-spec-badge {
    font-size: 9.5px;
    padding: 3px 7px;
  }
  .color-options-grid {
    gap: 5px;
  }
  .color-chip {
    padding: 7px 5px;
    gap: 4px;
    border-radius: 8px;
  }
  .color-chip .chip-swatch {
    width: 11px;
    height: 11px;
  }
  .color-chip .chip-text {
    font-size: 10.5px;
  }
  .section-title {
    font-size: 22px;
  }
  .section-subtitle {
    font-size: 11.5px;
    padding: 2px 10px;
  }
  .product-img-wrapper {
    height: 195px;
  }
  .product-info h3 {
    font-size: 16.5px;
  }
  .product-price-row .price {
    font-size: 21px;
  }
  .feature-card {
    padding: 16px 13px;
  }
  .urgency-section {
    padding: 20px 12px;
    margin: 20px 0 45px;
  }
  .urgency-info h2 {
    font-size: 20px;
  }
  .urgency-info p {
    font-size: 13.5px;
  }
  .timer-wrapper {
    gap: 6px;
  }
  .timer-box {
    padding: 8px 4px;
    border-radius: 8px;
  }
  .timer-num {
    font-size: 20px;
  }
  .timer-label {
    font-size: 10px;
  }
  .spec-item {
    padding: 12px;
    gap: 10px;
  }
  .spec-item h4 {
    font-size: 15.5px;
  }
  .spec-item p {
    font-size: 12.5px;
  }
  .review-card {
    padding: 16px 13px;
  }
  .order-wrapper {
    padding: 18px 12px;
  }
  .form-input,
  .form-select {
    padding: 11px 12px;
    font-size: 14px;
  }
  .size-selector-chips {
    gap: 6px;
  }
  .chip {
    padding: 8px 8px;
    font-size: 13px;
    min-width: 38px;
  }
  .order-summary-box {
    padding: 14px 11px;
  }
  .summary-title {
    font-size: 16px;
  }
  .summary-row {
    font-size: 13.5px;
  }
  .summary-row.total {
    font-size: 18px;
  }
  .payment-method-badge {
    font-size: 12px;
    padding: 8px 6px;
  }
  .submit-btn {
    padding: 14px;
    font-size: 16px;
  }
  .sticky-mobile-cta {
    padding: 10px 12px;
    height: 62px;
  }
  #mobilePriceTag {
    font-size: 16px;
  }
  .sticky-mobile-cta .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
  }
  .social-proof-toast {
    left: 8px;
    right: 8px;
    bottom: 70px;
    padding: 10px 12px;
    gap: 10px;
  }
  .social-proof-toast .toast-img {
    width: 34px;
    height: 34px;
  }
  .social-proof-toast .toast-content p {
    font-size: 11.5px;
  }
  .footer {
    padding: 35px 0 20px;
    font-size: 13px;
  }
  .footer-logo {
    font-size: 18px;
  }
}

/* Ultra-Compact Devices (max-width: 350px) */
@media (max-width: 350px) {
  .logo-sub {
    display: none;
  }
  .logo-title {
    font-size: 15px;
  }
  .nav-cta span:last-child {
    display: none;
  }
  .nav-cta {
    padding: 7px 10px;
  }
  .hero-title {
    font-size: 21px;
  }
  .hero-image-wrapper {
    height: 200px;
  }
  .timer-num {
    font-size: 18px;
  }
  .timer-box {
    padding: 6px 3px;
  }
  .chip {
    padding: 6px 6px;
    font-size: 12px;
    min-width: 34px;
  }
}
