/* ═══════════════════════════════════════════════════════
   POWERPUFFGIRLS — Single Product Branding Landing Page
   Swiss Design / Geometric / Light Mode / Statement Denim
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --bg:           #ffffff;
  --bg-surface:   #f7f7f8;
  --bg-card:      #ffffff;
  --bg-elevated:  #f0f0f2;
  --bg-hover:     #f3f3f5;

  --text:         #1a1a1a;
  --text-secondary: #666666;
  --text-muted:   #999999;

  --pink:         #E2679D;
  --pink-dark:    #c9557f;
  --pink-light:   #f08db8;
  --blue:         #87ceeb;
  --blue-dark:    #6ab4d4;
  --blue-light:   #a8ddf0;

  --accent:       var(--pink);
  --accent-alt:   var(--blue);

  --border:       #e5e5e5;
  --border-light: #ececec;

  --success:      #22c55e;
  --warning:      #f59e0b;
  --danger:       #ef4444;

  --radius:       0px;
  --radius-sm:    0px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.1);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container:    1100px;
  --gap:          32px;
  --gap-sm:       16px;
  --gap-xs:       8px;

  --header-h:     64px;
  --topbar-h:     36px;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Utilities ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ══════════════════════════════════════
   SPLASH SCREEN
   ══════════════════════════════════════ */
.splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  font-size: 48px;
  animation: splashPulse 1.5s ease-in-out infinite;
}

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

/* ══════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════ */
.top-bar {
  background: #ffffff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px var(--gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: var(--topbar-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.top-bar-msg {
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

.top-bar-sep {
  margin: 0 6px;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #1a1a1a;
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
  color: #ffffff;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header .nav a {
  color: rgba(255,255,255,0.8);
}

.header .nav a:hover {
  color: #ffffff;
}

.header .header-btn,
.header .menu-toggle {
  color: #ffffff;
}

body {
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-pre {
  color: var(--pink);
  font-weight: 300;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.header-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.header-btn:hover { color: var(--pink); }

.header-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-close-icon { display: none; }
.menu-toggle.active .menu-icon { display: none; }
.menu-toggle.active .menu-close-icon { display: block; }

/* ══════════════════════════════════════
   SEARCH PANEL
   ══════════════════════════════════════ */
.search-panel {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  background: var(--bg);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}

.search-panel.active {
  max-height: 400px;
  visibility: visible;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.search-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gap);
  box-sizing: border-box;
}

.search-panel-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.search-panel-input-wrap svg { flex-shrink: 0; color: var(--text-muted); }

.search-panel-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 500;
  background: transparent;
  color: var(--text);
}

.search-panel-close {
  color: var(--text-muted);
  transition: color var(--transition);
}

.search-panel-close:hover { color: var(--text); }

/* Quick Links */
.search-quick-links {
  padding-top: 8px;
}

.search-quick-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.search-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.search-quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.search-quick-item:hover {
  background: var(--bg-surface);
  border-color: var(--pink);
  color: var(--pink);
}

.search-quick-item svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

.search-quick-item:hover svg {
  color: var(--pink);
}

.search-panel-results { max-height: 300px; overflow-y: auto; }

.search-result-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.search-result-item:hover { background: var(--bg-hover); }

.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.search-result-price {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(226,103,157,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--bg-surface);
}

.btn-cart {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-cart:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════
   HERO — BRAND STATEMENT + VIDEOS
   ══════════════════════════════════════ */
.hero-brand {
  padding: 60px 0 40px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.hero-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-brand-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-jeans {
  display: block;
  font-size: 1.4em;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.spec-dot, .trust-dot {
  color: var(--pink);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.hero-trust-link:hover {
  color: var(--pink);
  text-decoration: underline;
}

/* Hero Video Grid */
.hero-brand-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-video-card {
  aspect-ratio: 9/16;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════
   BENEFITS BAR
   ══════════════════════════════════════ */
.benefits {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.benefits .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.benefit-item:last-child { border-right: none; }

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-text h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

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

/* ══════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════ */
.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   PRODUCT SHOWCASE — INLINE
   ══════════════════════════════════════ */
.product-showcase {
  background: var(--bg);
  padding-top: 20px;
}

.product-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Product Gallery */
.product-gallery-home {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.product-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: #fff;
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.05);
}

.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery-thumbs .thumb {
  flex: 0 0 calc(12.5% - 7px);
  scroll-snap-align: start;
}

.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
  background: #fff;
}

.thumb.active {
  border-color: var(--pink);
}

.thumb:hover {
  border-color: var(--text-muted);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info-home {
  padding-top: 8px;
}

.product-tag-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(226,103,157,0.08);
  padding: 6px 14px;
  margin-bottom: 16px;
}

.product-info-home h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.product-rating-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-rating-inline:hover .rating-count {
  text-decoration: underline;
}

.product-rating-inline .stars {
  color: #FFB800;
}

.product-rating-inline .rating-count {
  color: var(--text-muted);
  font-weight: 400;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.product-price-block .price-current {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
}

.product-price-block .price-compare {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price-block .price-discount {
  padding: 4px 10px;
  background: rgba(34,197,94,0.1);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.product-short-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Size Selector */
.product-size-select {
  margin-bottom: 24px;
}

.product-size-select label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  min-width: 52px;
  height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.size-btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(226,103,157,0.06);
}

.size-error .size-btn {
  border-color: #e74c3c;
  animation: shake 0.4s ease;
}

.size-error-msg {
  color: #e74c3c;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.btn-block {
  width: 100%;
}

/* Guarantees */
.product-guarantees {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.guarantee-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FEATURES SECTION — EDITORIAL ROWS
   ══════════════════════════════════════ */
.features-wrapper {
  background: var(--bg-surface);
}
.features-header-section {
  background: var(--bg-surface);
  padding-bottom: 0;
  margin-bottom: 0;
}

.detail-row {
  padding: 32px 0;
  background: var(--bg-surface);
  margin: 0;
}

.detail-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-row-reverse .detail-row-inner {
  direction: rtl;
}

.detail-row-reverse .detail-row-inner > * {
  direction: ltr;
}

.detail-media {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.detail-media img,
.detail-media video {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

.detail-row:hover .detail-media img,
.detail-row:hover .detail-media video {
  transform: scale(1.03);
}

.detail-media video {
  aspect-ratio: 9/16;
  max-height: 520px;
  object-fit: cover;
}

.detail-content {
  padding: 20px 0;
}

.detail-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  background: rgba(232,62,140,0.08);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.detail-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}

.detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
}

/* ══════════════════════════════════════
   MODEL CAROUSEL
   ══════════════════════════════════════ */
.model-carousel-section {
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}

.model-carousel-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}

/* Text Column */
.model-carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 0;
}

.model-carousel-content .section-tag {
  margin-bottom: 16px;
}

.model-carousel-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.model-carousel-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 32px;
}

/* Controls (inside carousel, overlaid on image) */
.model-carousel-controls-desktop {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 24px;
}

/* Carousel Column */
.model-carousel {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.model-carousel:active {
  cursor: grabbing;
}

.model-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
  height: 100%;
}

.model-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.model-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow Buttons */
.model-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  color: var(--text);
}

.model-carousel-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.08);
}

.model-carousel-prev { left: 12px; }
.model-carousel-next { right: 12px; }

/* Dots */
.model-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.model-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.model-carousel-dot.active {
  background: var(--pink);
  width: 20px;
  border-radius: 4px;
}

/* Pause Button */
.model-carousel-pause {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}

.model-carousel-pause:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Remove the old overlay — no longer used */
.model-carousel-overlay { display: none; }
.model-carousel-controls { display: none; }

/* ══════════════════════════════════════
   SOCIAL PROOF VIDEOS
   ══════════════════════════════════════ */
.social-videos-section {
  background: var(--bg-surface);
}

.social-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-video-card {
  aspect-ratio: 9/16;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.social-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials-section {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  border: 1px solid var(--border);
}

.testimonial-info {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.testimonial-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-rating {
  color: #FFB800;
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial-verified {
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
}

.testimonial-photo {
  margin-top: 14px;
  max-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.testimonial-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: bottom;
  transition: transform var(--transition);
}

.testimonial-photo:hover img {
  transform: scale(1.04);
}

.testimonials-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials-nav-btn {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials-nav-btn:hover:not(:disabled) {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.testimonials-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonials-page-info {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  min-width: 100px;
  text-align: center;
}

.testimonial-verified {
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
  margin-left: 8px;
}

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.newsletter {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.newsletter-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.newsletter-content > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  background: var(--bg);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.newsletter-form .btn {
  border-left: none;
  white-space: nowrap;
}

.newsletter-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.newsletter-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.newsletter-check {
  margin-bottom: 16px;
}

.newsletter-check svg {
  width: 52px;
  height: 52px;
}

.check-circle {
  stroke: var(--pink);
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle 0.6s ease forwards;
}

.check-mark {
  stroke: var(--pink);
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.4s ease 0.4s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.newsletter-success-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.newsletter-success-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 56px 0 0;
}

.footer-top {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-top .logo-text {
  color: #fff;
  font-size: 28px;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--pink-light); }

.footer-company {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-company p {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-icons img,
.payment-icons svg {
  height: 24px;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.payment-icons img:hover,
.payment-icons svg:hover { opacity: 1; }

/* ══════════════════════════════════════
   CART SIDEBAR
   ══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.cart-close:hover {
  border-color: var(--text);
  color: var(--text);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
}

.cart-item-qty span {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.cart-summary .label {
  font-size: 14px;
  color: var(--text-secondary);
}

.cart-summary .total {
  font-size: 20px;
  font-weight: 700;
}

.cart-continue-btn {
  margin-top: 8px;
}

.cart-suggestions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.cart-suggestions h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════
   QUICK OPTIONS MODAL
   ══════════════════════════════════════ */
.quick-options-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.quick-options-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quick-options-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 480px;
  max-width: 92vw;
  max-height: 85vh;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  z-index: 3001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.quick-options-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.quick-options-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-options-close {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.quick-options-close:hover { color: var(--text); }

.quick-options-body { padding: 0; }

.quick-modal-content { position: relative; }

.quick-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0;
}

.quick-modal-close:hover {
  background: var(--pink);
  color: #fff;
}

.quick-modal-product { display: flex; flex-direction: column; }

.quick-modal-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-surface);
}

.quick-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-modal-info { padding: 20px 24px 0; }

.quick-modal-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.quick-modal-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
}

.quick-modal-options { padding: 16px 24px; }

.quick-modal-option-group { margin-bottom: 16px; }
.quick-modal-option-group:last-child { margin-bottom: 0; }

.quick-modal-option-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.quick-modal-sizes,
.quick-modal-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option-btn,
.color-option-btn {
  min-width: 48px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option-btn:hover,
.color-option-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.size-option-btn.active,
.color-option-btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(226,103,157,0.08);
}

.quick-modal-add {
  margin: 0 24px 24px;
  width: calc(100% - 48px);
  padding: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   PRODUCT PAGE (detail pages)
   ══════════════════════════════════════ */
.product-page {
  padding: 40px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.product-main-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  cursor: zoom-in;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.product-thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}

.product-thumbnail.active { border-color: var(--pink); }

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info { padding-top: 8px; }

.product-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-breadcrumb a:hover { color: var(--text); }
.product-breadcrumb .sep { color: var(--text-muted); }

.product-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.product-rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.product-rating-bar .stars { font-size: 14px; }
.product-rating-bar .count { font-size: 13px; color: var(--text-muted); }
.product-rating-bar .orders { font-size: 13px; color: var(--text-muted); }

a.product-rating-bar { cursor: pointer; transition: opacity var(--transition); }
a.product-rating-bar:hover { opacity: 0.7; }
a.product-rating-bar:hover .count { text-decoration: underline; }

.product-videos {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.product-videos h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.product-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-video-item {
  aspect-ratio: 9/16;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-video-item:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-md);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-surface);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}

.product-video-item:hover .video-placeholder {
  background: var(--bg-elevated);
  color: var(--pink);
}

.video-placeholder span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

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

.product-price-current {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
}

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

.product-price-off {
  padding: 4px 10px;
  background: rgba(34,197,94,0.1);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.product-options { margin-bottom: 24px; }
.product-option { margin-bottom: 16px; }

.product-option-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.product-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-option-btn {
  min-width: 48px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.product-option-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.product-option-btn.selected {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(226,103,157,0.08);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.product-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}

.product-qty button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
}

.product-qty span {
  width: 44px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
}

.product-add-btn { flex: 1; }

.product-trust {
  position: relative;
  margin-top: 4px;
  height: 48px;
  overflow: hidden;
}

.product-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-trust-item.active { opacity: 1; }

.product-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--pink);
  flex-shrink: 0;
}

.product-trust-item span {
  display: block;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ══════════════════════════════════════
   PRODUCT DESCRIPTION & REVIEWS (detail page)
   ══════════════════════════════════════ */
.product-description {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.product-description h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-description-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.product-description-content p { margin-bottom: 16px; }
.product-description-content ul { padding-left: 20px; margin-bottom: 16px; }
.product-description-content li { list-style: disc; margin-bottom: 6px; }

.product-reviews {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

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

.reviews-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  color: var(--text-secondary);
}

.btn-write-review:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.review-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.review-verified {
  font-size: 11px;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

.review-stars {
  font-size: 13px;
  color: #FFB800;
  margin-bottom: 6px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-photos {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.review-photos img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}

.review-photos img:hover { border-color: var(--pink); }

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-pagination .pagination-btn {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
}

.reviews-pagination .pagination-btn:hover,
.reviews-pagination .pagination-btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(226,103,157,0.06);
}

.reviews-page-info {
  font-size: 12px;
  color: var(--text-muted);
}

/* Review Form */
.review-form {
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  margin-top: 20px;
  display: none;
}

.review-form.active { display: block; }

.review-form h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.review-form-group {
  margin-bottom: 16px;
}

.review-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.review-form-group input,
.review-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}

.review-form-group input:focus,
.review-form-group textarea:focus {
  border-color: var(--pink);
}

.star-select {
  display: flex;
  gap: 4px;
  cursor: pointer;
  font-size: 20px;
  color: var(--border);
}

.star-select span.filled { color: #FFB800; }

/* Related Products */
.related-products {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.related-products h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════
   LIGHTBOX GALLERY
   ══════════════════════════════════════ */
.lightbox-gallery {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-gallery.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 2;
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
  transition: opacity 0.2s ease;
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.lightbox-close-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.1em;
}


/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════
   HELP PAGE
   ══════════════════════════════════════ */
.help-page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px var(--gap-sm);
}

.help-page-nav {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.help-back-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.help-back-link:hover {
  color: var(--pink) !important;
  text-decoration: none !important;
}

.help-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.2;
}

.help-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.help-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.help-content p,
.help-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.help-content ul { padding-left: 20px; margin-bottom: 24px; }
.help-content ul li { list-style: disc; margin-bottom: 8px; }
.help-content ol { padding-left: 20px; margin-bottom: 24px; }
.help-content ol li { list-style: decimal; margin-bottom: 12px; }

.help-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.help-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 1px solid var(--border);
}

.help-table th,
.help-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid var(--border);
}

.help-table tr:last-child td { border-bottom: none; }

.help-table th {
  background: var(--bg-surface);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.help-table td { color: var(--text-secondary); }

.help-table td em {
  color: var(--success);
  font-style: normal;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.help-contact-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: 4px;
}

.help-contact-box h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text);
}

.help-contact-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.help-contact-box p:last-child { margin-bottom: 0; }
.help-contact-box a { color: var(--pink); text-decoration: underline; }
.help-contact-box a:hover { color: var(--pink-dark); }

#helpPage a { color: var(--pink); text-decoration: none; }
#helpPage a:hover { text-decoration: underline; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--pink); }

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* Contact form */
.contact-form-section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.contact-card {
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
}

.contact-icon { font-size: 28px; margin-bottom: 12px; }
.contact-card h3 { font-size: 16px; margin-top: 0; margin-bottom: 6px; }
.contact-detail { font-size: 12px; color: var(--text-muted); margin-bottom: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea { padding: 12px 16px; border: 1px solid var(--border); font-size: 14px; background: var(--bg); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--pink); }

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.payment-method-item {
  padding: 20px;
  border: 1px solid var(--border);
}

.payment-method-item strong { display: block; margin-bottom: 6px; }
.payment-method-item p { font-size: 13px; margin-bottom: 0; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --gap: 24px;
  }

  .hero-brand-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-brand-content { text-align: center; }
  .hero-desc { margin: 0 auto 20px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-specs { justify-content: center; }

  .hero-brand-videos {
    max-width: 500px;
    margin: 0 auto;
  }

  .product-showcase-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-gallery-home {
    position: static;
    max-width: 560px;
    margin: 0 auto;
  }

  .detail-row-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-row-reverse .detail-row-inner {
    direction: ltr;
  }

  .detail-media {
    max-width: 500px;
    margin: 0 auto;
  }




  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-gallery {
    position: static;
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
  }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   INTERNAL PAGES (Policy, FAQ, About, Contact)
   ══════════════════════════════════════ */
.page-content {
  padding: 60px 0 80px;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  margin-bottom: 24px;
}

.page-back:hover {
  color: var(--pink);
}

.page-back svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.page-back:hover svg {
  transform: translateX(-3px);
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0 8px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-section ul,
.policy-section ol {
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 12px;
}

.policy-section li {
  margin-bottom: 6px;
}

.policy-section a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-section a:hover {
  color: var(--pink-dark);
}

/* Info table (shipping rates, etc) */
.info-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  background: rgba(226,103,157,0.06);
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table td {
  color: var(--text-light);
}

.info-table tbody tr:hover {
  background: rgba(226,103,157,0.03);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(226,103,157,0.1);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(226,103,157,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--pink);
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.contact-card a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 4px !important;
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --gap: 16px;
    --header-h: 56px;
  }

  .nav { display: none; }
  .menu-toggle { display: flex; }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 0;
    gap: 0;
    z-index: 2000;
    align-items: stretch;
    animation: slideNavDown 0.25s ease forwards;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  @keyframes slideNavDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav.mobile-open a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-align: left;
  }

  .nav.mobile-open a::after { display: none; }

  .nav.mobile-open a:hover,
  .nav.mobile-open a.active {
    color: var(--pink);
    background: rgba(226,103,157,0.04);
  }

  .search-panel {
    top: calc(var(--topbar-h) + var(--header-h));
    z-index: 999;
  }

  .search-panel.active {
    max-height: none;
    overflow-y: auto;
  }

  .search-panel-inner {
    padding: 12px 16px 16px;
  }

  .search-panel-input-wrap {
    gap: 8px;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 2;
    padding-bottom: 8px;
  }

  .search-panel-input-wrap input {
    font-size: 15px;
    min-width: 0;
  }

  .search-panel-results {
    max-height: none;
  }

  .search-quick-grid {
    grid-template-columns: 1fr;
  }

  .search-quick-item {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* Hero */
  .hero-brand { padding: 32px 0 48px; }
  .hero-brand-content h1 { font-size: 32px; }
  .hero-brand-videos { gap: 8px; }

  /* Benefits */
  .benefits .container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefit-item {
    border-right: none;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

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

  /* Product Showcase */
  .product-gallery-thumbs .thumb {
    flex: 0 0 calc(16.66% - 6px);
  }

  /* Features — Detail Rows */
  .detail-row {
    padding: 20px 0;
  }

  .detail-row-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-row-reverse .detail-row-inner {
    direction: ltr;
  }

  .detail-content h3 {
    font-size: 22px;
  }

  .detail-content p {
    font-size: 15px;
  }

  /* Model Carousel */
  .model-carousel-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .model-carousel-content {
    padding: 40px 0;
    text-align: center;
    align-items: center;
  }

  .model-carousel-content p {
    max-width: 100%;
  }

  .model-carousel-controls-desktop {
    justify-content: center;
  }

  .model-carousel {
    position: relative;
  }

  .model-carousel-slide img {
    height: auto;
    max-height: none;
  }

  /* Social Videos */
  .social-videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Sections */
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 28px; }

  /* Newsletter */
  .newsletter-content {
    max-width: 100%;
  }

  .newsletter-content h3 {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    font-size: 16px;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-form .btn {
    border-left: none;
    border-top: 1px solid var(--border);
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-logo .logo-text { font-size: 28px; }

  /* Product Page */
  .product-page { padding: 24px 0 60px; }
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { position: static; max-width: 100%; }
  .product-main-image { aspect-ratio: 4/5; }
  .product-thumbnails { grid-template-columns: repeat(4, 1fr); }
  .product-title { font-size: 22px; margin-bottom: 12px; }
  .product-price-current { font-size: 28px; }
  .product-price-compare { font-size: 16px; }
  .product-price-off { font-size: 12px; }
  .product-price-section { margin-bottom: 20px; }
  .product-option-btn { min-width: 44px; height: 44px; padding: 0 14px; font-size: 14px; }
  .product-option-label { font-size: 13px; margin-bottom: 10px; display: block; }
  .product-actions { flex-direction: column; gap: 12px; }
  .product-add-btn { width: 100%; }
  .product-qty { justify-content: center; }
  .product-qty button { width: 48px; height: 48px; font-size: 20px; }
  .product-qty span { width: 48px; font-size: 16px; }

  .product-videos-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  .reviews-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .product-reviews { margin-top: 40px; padding-top: 32px; }

  .cart-sidebar { width: 100%; }
  .search-panel { top: calc(var(--topbar-h) + var(--header-h)); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .help-table { display: block; overflow-x: auto; }
  .contact-form .form-row { flex-direction: column; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --gap: 12px; }

  /* Hero */
  .hero-brand { padding: 24px 0 32px; }
  .hero-brand-content h1 { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-brand-videos { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Sections */
  .section { padding: 32px 0; }
  .section-header h2 { font-size: 22px; }
  .section-header p { font-size: 13px; }

  /* Product Showcase */
  .product-gallery-thumbs .thumb { flex: 0 0 calc(20% - 6px); }
  .product-price-block .price-current { font-size: 28px; }

  /* Model Carousel */
  .model-carousel-section .container {
    padding: 0;
    max-width: 100%;
  }

  .model-carousel-content {
    padding: 32px 20px;
  }

  .model-carousel-slide img { max-height: none; }
  .model-carousel-btn { width: 36px; height: 36px; }
  .model-carousel-prev { left: 8px; }
  .model-carousel-next { right: 8px; }

  /* Social Videos */
  .social-videos-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Product Page */
  .product-page { padding: 16px 0 40px; }
  .product-title { font-size: 20px; }
  .product-price-current { font-size: 26px; }
  .product-trust { height: 44px; }

  .review-card { padding: 14px 0; }
  .review-photos img { width: 48px; height: 48px; }
  .review-form { padding: 16px; }
  .star-select { font-size: 24px; }
  .btn-write-review { width: 100%; justify-content: center; }
  .review-form-group input, .review-form-group textarea { font-size: 16px; width: 100%; }
  .reviews-pagination { gap: 6px; flex-wrap: wrap; }
  .reviews-pagination .pagination-btn { padding: 8px 14px; font-size: 12px; min-height: 40px; }
  .reviews-page-info { font-size: 11px; width: 100%; text-align: center; order: -1; }

  #helpPage { padding: 16px; }
  #helpPage h2 { font-size: 20px; }
  .help-contact-box { padding: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 10px; }
  .contact-card { padding: 16px; }
  .payment-methods-grid { grid-template-columns: 1fr; gap: 10px; }
  .contact-form .form-row { flex-direction: column; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { font-size: 13px; }
  .footer-company p { font-size: 10px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Lightbox */
  .lightbox-img { max-width: 98vw; max-height: 85vh; }
  .lightbox-close-btn { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 26px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { font-size: 16px; }

  .cart-sidebar { width: 100%; }
}

/* ══════════════════════════════════════
   TOP BAR MOBILE SLIDER
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .top-bar {
    justify-content: center;
  }

  .top-bar-msg {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .top-bar-msg.active {
    opacity: 1;
  }

  .top-bar-sep {
    display: none;
  }
}
