/** Shopify CDN: Minification failed

Line 27:18 Expected identifier but found whitespace
Line 27:20 Unexpected "{"
Line 27:30 Expected ":"
Line 28:20 Expected identifier but found whitespace
Line 28:22 Unexpected "{"
Line 28:32 Expected ":"
Line 29:17 Expected identifier but found whitespace
Line 29:19 Unexpected "{"
Line 29:29 Expected ":"
Line 30:13 Expected identifier but found whitespace
... and 13 more hidden warnings

**/
/* ============================================================
   VividEye Shopify Theme — Full Responsive CSS
   Based on aosulife.com design (Aug 2026)
   Breakpoints:
     - Desktop:  ≥1024px
     - Tablet:   768px - 1023px
     - Mobile:   <768px
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --color-primary: {{ settings.color_primary | default: '#0066CC' }};
  --color-secondary: {{ settings.color_secondary | default: '#00B8A9' }};
  --color-accent: {{ settings.color_accent | default: '#FF4444' }};
  --color-bg: {{ settings.color_background | default: '#FFFFFF' }};
  --color-text: {{ settings.color_text | default: '#1A1A1A' }};
  --color-text-light: #5A6B7B;
  --color-border: #E5E7EB;
  --color-bg-light: #EAF5FF;
  --color-bg-soft: #F5F9FF;
  --color-bg-dark: #0A1628;

  --font-heading: {{ settings.font_heading.family }}, 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: {{ settings.font_body.family }}, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1280px;
  --container-padding: 24px;
  --section-padding-y: 80px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.10);

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

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin: 0; color: var(--color-text); }

/* ===== Accessibility ===== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-to-content-link:focus {
  position: fixed !important;
  top: 12px !important;
  left: 12px !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background: #fff !important;
  color: #0066CC !important;
  z-index: 10000 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

/* ===== Utilities ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}
.section { padding: var(--section-padding-y) 0; }
.section--tight { padding: calc(var(--section-padding-y) * 0.6) 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn--primary { background: #0052A3; color: #fff; }
.btn--primary:hover { background: #0052A3; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--dark { background: #000; color: #fff; }
.btn--dark:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--white { background: #fff; color: var(--color-text); }
.btn--white:hover { background: #f5f5f5; }
.btn--block { display: flex; width: 100%; }
.btn--full { display: flex; width: 100%; }
.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn--secondary { background: #f0f0f0; color: #1a1a1a; border-color: #e0e0e0; }
.btn--secondary:hover { background: #e0e0e0; transform: translateY(-1px); }
.btn--checkout { width: 100%; margin-top: 16px; }

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  z-index: 100;
  letter-spacing: .3px;
}
.announcement-bar a { color: #FFD600; text-decoration: underline; font-weight: 700; }
.announcement-bar strong { color: #FFD600; }
.announcement-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.85;
}
.announcement-bar__close:hover { opacity: 1; }

/* ===== Header ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.header-logo img, .header-logo svg { max-height: 40px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
.header-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--color-primary); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.header-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background var(--transition);
}
.header-actions .icon-btn:hover { background: var(--color-bg-light); }
.header-actions .icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.header-actions .icon-btn { position: relative; }
.header-cta { margin-left: 8px; }
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 80px 24px 24px;
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__nav a {
  display: block;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-drawer__nav a:hover { background: var(--color-bg-light); }
.mobile-drawer__cta { margin-top: 24px; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* ===== Hero Carousel (full-bleed banner) ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.hero-slides {
  position: relative;
  width: 100%;
  min-height: 560px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide__placeholder {
  width: 100%;
  height: 100%;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,0) 100%);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-slide__text {
  max-width: 580px;
}
.hero-slide__eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFD600;
  margin-bottom: 16px;
}
.hero-slide__title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-slide__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}
.hero-slide__btn {
  background: #fff;
  color: #1a1a1a;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.hero-slide__btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.is-active {
  background: #fff;
  width: 32px;
  border-radius: 5px;
}

/* ===== Service Bar ===== */
.service-bar {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.service-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-bar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.service-bar__icon svg {
  width: 40px;
  height: 40px;
}
.service-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-bar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}
.service-bar__sub {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ===== Top Sellers (4-column product cards) ===== */
.top-sellers {
  background: #fff;
  padding: var(--section-padding-y) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: 40px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}
.ts-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ts-product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.ts-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.ts-product-card__img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ts-product-card:hover .ts-product-card__img-wrap img { transform: scale(1.05); }
.ts-product-card__placeholder {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ts-product-card__placeholder svg { width: 60%; height: 60%; }
.ts-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  letter-spacing: .5px;
}
.ts-product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ts-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
}
.ts-product-card__rating .stars { color: #FFB800; letter-spacing: 1px; }
.ts-product-card__rating .rating-text { color: var(--color-text-light); }
.ts-product-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ts-product-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.ts-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.ts-product-card__compare {
  font-size: 14px;
  color: var(--color-text-light);
  text-decoration: line-through;
}
.ts-product-card__current {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
}
.ts-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
  transition: gap var(--transition);
}
.ts-product-card:hover .ts-product-card__cta { gap: 10px; }
.ts-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Categories 2x2 (Whole Popular Intelligence) ===== */
.categories-2x2 { padding: var(--section-padding-y) 0; background: #fff; }
.c22-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.c22-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  background: var(--color-bg-light);
}
.c22-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.c22-card:hover .c22-card__bg { transform: scale(1.05); }
.c22-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 60%);
  color: #fff;
}
.c22-card__title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}
.c22-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  line-height: 1.5;
}
.c22-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: opacity var(--transition);
}
.c22-card:hover .c22-card__cta { opacity: 0.85; }

/* ===== Floodlight Grid (2x2 products) ===== */
.floodlight-grid { padding: var(--section-padding-y) 0; background: var(--color-bg-soft); }
.fl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fl-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.fl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.fl-card__visual {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-card__visual img { max-width: 85%; }
.fl-card__text { padding: 16px; text-align: center; }
.fl-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.fl-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.fl-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== Bundle Feature (left image + right text) ===== */
.bundle-feature { padding: var(--section-padding-y) 0; background: #fff; }
.bundle-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bundle-feature__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
}
.bundle-feature__visual img { width: 100%; height: 100%; object-fit: cover; }
.bundle-feature__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.bundle-feature__title {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.bundle-feature__desc {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.bundle-feature__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.bundle-feature__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.bundle-feature__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.bundle-feature__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bundle-feature__savings {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  padding: 6px 14px;
  background: rgba(255,68,68,.1);
  border-radius: var(--radius-full);
}

/* ===== Category Feature (large image + text side by side) ===== */
.cat-feature { padding: 60px 0; }
.cat-feature:nth-child(even) .cat-feature__inner { direction: rtl; }
.cat-feature:nth-child(even) .cat-feature__content { direction: ltr; }
.cat-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cat-feature__content { padding: 24px 0; }
.cat-feature__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cat-feature__title {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.cat-feature__desc {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.cat-feature__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cat-feature__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.cat-feature__feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.cat-feature__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-feature__visual img { width: 100%; height: 100%; object-fit: contain; }

/* ===== Banner Split — Simple / Smart / Trusted ===== */
.banner-split {
  background: var(--color-primary);
  color: #fff;
  padding: var(--section-padding-y) 0;
}
.banner-split--light {
  background: var(--color-bg-light);
  color: var(--color-text);
}
.banner-split--light .section-eyebrow { color: var(--color-primary); }
.banner-split--light .section-title { color: var(--color-text); }
.banner-split--light .section-subtitle { color: var(--color-text-light); }
.banner-split--light .bs-card {
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.banner-split--light .bs-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.banner-split--light .bs-card__icon { background: var(--color-bg-light); color: var(--color-primary); }
.banner-split--light .bs-card__title { color: var(--color-text); }
.banner-split--light .bs-card__desc { color: var(--color-text-light); }
.banner-split--light .bs-card__link { color: var(--color-primary); border-color: var(--color-primary); }
.banner-split--light .bs-card__link:hover { background: var(--color-primary); color: #fff; }
.banner-split .section-title { color: #000; }
.bs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.bs-card {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--transition);
}
.bs-card:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-4px);
}
.bs-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-md);
}
.bs-card__icon svg { width: 32px; height: 32px; }
.bs-card__title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.bs-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bs-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
  transition: border-color var(--transition);
}
.bs-card__link:hover { border-color: #fff; }

/* ===== Features Grid (4 columns) ===== */
.features-grid {
  background: var(--color-bg-soft);
  padding: var(--section-padding-y) 0;
}
.fg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fg-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.fg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.fg-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}
.fg-card__icon svg { width: 28px; height: 28px; }
.fg-card__title {
  font-size: 18px;
  margin-bottom: 8px;
}
.fg-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== App Showcase (centered hero-like) ===== */
.app-showcase {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0052A3 100%);
  color: #fff;
  padding: var(--section-padding-y) 0;
  text-align: center;
}
.app-showcase .section-title { color: #fff; }
.app-showcase .section-subtitle { color: rgba(255,255,255,.85); }
.app-showcase__visual {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.app-showcase__visual img {
  max-width: 240px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== Testimonials (new style: user reviews) ===== */
.testimonials { padding: var(--section-padding-y) 0; }
.tm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.tm-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
}
.tm-card__rating { color: #FFB800; margin-bottom: 16px; font-size: 20px; letter-spacing: 2px; }
.tm-card__quote {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.tm-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tm-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.tm-card__name { font-weight: 600; }
.tm-card__meta { font-size: 13px; color: var(--color-text-light); }

/* ===== Media Spotlight ===== */
.media-spotlight { padding: var(--section-padding-y) 0; background: #fff; }
.ms-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.ms-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-light);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.ms-logo:hover { opacity: 1; }
.ms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ms-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-light);
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.ms-card:hover { transform: scale(1.02); }
.ms-card img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Newsletter ===== */
.newsletter {
  background: var(--color-bg-light);
  padding: var(--section-padding-y) 0;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 32px auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--color-primary); }
.newsletter__hint {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand__logo { margin-bottom: 20px; }
.footer-brand__logo img { max-height: 40px; }
.footer-brand__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--color-text);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-primary); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom__copy { font-size: 13px; color: var(--color-text-light); }
.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-payments img {
  height: 24px;
  width: auto;
  border-radius: 4px;
}

/* ===== Cart Drawer ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 250;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__title { font-size: 20px; font-weight: 700; }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
}
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.cart-line__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  object-fit: cover;
}
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.cart-line__qty button {
  width: 28px;
  height: 28px;
  font-size: 16px;
  color: var(--color-text);
}
.cart-line__qty input {
  width: 32px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
}
.cart-line__remove { color: var(--color-text-light); font-size: 13px; }

/* ===== Product Card ===== */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card__img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.product-card__quick {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__body { padding: 16px; }
.product-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.product-card__price { display: flex; align-items: baseline; gap: 8px; }
.product-card__price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
}
.product-card__price-compare {
  font-size: 14px;
  color: var(--color-text-light);
  text-decoration: line-through;
}
.product-card__rating { font-size: 12px; color: #FFB800; margin-bottom: 6px; }

/* product-card link + soldout */
.product-card__link { text-decoration: none; color: inherit; display: block; }
.product-card__soldout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
}
.product-card__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__img:not(.product-card__img--hover) { opacity: 0; }

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

/* Related Products section */
.related-products-section {
  padding: 60px 0;
  background: var(--color-bg-light);
}
.related-products-section .product-card {
  background: #fff;
}

/* ===== Product Page ===== */
.product-page { padding: 20px 0 80px; }

/* Breadcrumb */
.product-breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.breadcrumb { font-size: 13px; color: var(--color-text-light); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb__sep { color: #ccc; }
.breadcrumb__current { color: var(--color-text); font-weight: 500; }

/* Main Layout - PC: 2 columns (gallery + info) */
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: flex-start;
  margin-top: 32px;
}

/* ==================== Gallery ==================== */
.product-gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  padding-right: 4px;
}
.product-gallery__thumbs::-webkit-scrollbar { width: 4px; }
.product-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
  padding: 0;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb:hover { border-color: var(--color-primary); }
.product-gallery__thumb.is-active { border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary); }

.product-gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product-gallery__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-gallery__slide.is-active { opacity: 1; pointer-events: auto; }
.product-gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Prev / Next navigation buttons */
.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: all var(--transition);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.product-gallery__nav svg { width: 18px; height: 18px; }
.product-gallery__nav:hover { background: #fff; color: var(--color-primary); border-color: var(--color-primary); }
.product-gallery__nav--prev { left: 12px; }
.product-gallery__nav--next { right: 12px; }
.product-gallery__main:hover .product-gallery__nav { opacity: 1; }

/* Mobile dots */
.product-gallery__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.product-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.product-gallery__dot.is-active { background: var(--color-primary); width: 24px; border-radius: 4px; }

/* ==================== Product Info ==================== */
.product-info { padding-top: 0; }

.product-info__header { margin-bottom: 12px; }

.product-info__category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-info__title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.product-info__reviews-link {
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-info__reviews-link:hover { color: var(--color-primary); }
.product-info__reviews-count { font-weight: 700; color: var(--color-text); }

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.product-info__price-current { font-size: 36px; font-weight: 800; color: var(--color-accent); }
.product-info__price-compare { font-size: 18px; color: var(--color-text-light); text-decoration: line-through; }
.product-info__price-save {
  background: var(--color-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
}

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

/* Variant picker */
.variant-picker { margin-bottom: 20px; }
.variant-picker__header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.variant-picker__title { font-size: 14px; font-weight: 700; }
.variant-picker__selected { font-size: 14px; color: var(--color-text-light); }
.variant-picker__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-option {
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  min-width: 60px;
}
.variant-option.is-selected {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
  color: var(--color-primary);
}
.variant-option:hover:not(.is-selected) { border-color: var(--color-primary); }

/* Quantity + Add to Cart */
.product-info__actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.qty-input {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 56px;
}
.qty-input button {
  width: 44px;
  height: 100%;
  font-size: 20px;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
}
.qty-input button:hover { background: var(--color-bg-light); color: var(--color-primary); }
.qty-input input {
  width: 50px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn--add-to-cart {
  height: 56px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn--add-to-cart svg { width: 18px; height: 18px; }

.btn--buy-now {
  width: 100%;
  height: 48px;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--buy-now:hover { background: var(--color-primary); color: #fff; }

/* Trust badges */
.product-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.product-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}
.product-trust__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Payment methods */
.product-payment { margin-top: 4px; }
.product-payment__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.product-payment__icons {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  min-width: 48px;
  height: 28px;
  letter-spacing: 0.5px;
}

/* Product Description Section */
.product-description-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}
.product-description-title {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}
.product-description-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--color-text-light);
  font-size: 15px;
}
.product-description-content p { margin-bottom: 16px; }
.product-description-content h2, .product-description-content h3 {
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 12px;
}
.product-description-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 16px 0;
}
.product-description-content ul, .product-description-content ol {
  margin: 12px 0 16px 24px;
  list-style: disc;
}
.product-description-content li { margin-bottom: 6px; }

/* ==================== Product Reviews ==================== */
.product-reviews { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--color-border); }
.product-reviews__inner { max-width: 1100px; margin: 0 auto; }

.product-reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.product-reviews__title { font-size: 28px; }

.btn--write-review {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
}
.btn--write-review svg { width: 18px; height: 18px; }

.product-reviews__summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 32px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.product-reviews__summary-left { text-align: center; }
.product-reviews__big-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-reviews__big-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.product-reviews__stars .star-rating svg { width: 20px; height: 20px; }
.product-reviews__total { font-size: 14px; color: var(--color-text-light); }
.product-reviews__total strong { color: var(--color-text); }

.product-reviews__bars { display: flex; flex-direction: column; gap: 10px; }
.review-bar { display: grid; grid-template-columns: 50px 1fr 50px; align-items: center; gap: 12px; font-size: 13px; }
.review-bar__label { color: var(--color-text-light); font-weight: 500; }
.review-bar__track {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #FFB400 0%, #FF8A00 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.review-bar__pct { color: var(--color-text-light); text-align: right; font-weight: 500; }

.product-reviews__filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.product-reviews__filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.review-tab {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.review-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.review-tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.product-reviews__sort { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--color-text-light); }
.product-reviews__sort select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}

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

.review-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.review-card__meta { display: flex; flex-direction: column; gap: 4px; }
.review-card__name { font-weight: 700; font-size: 14px; }
.review-card__date { font-size: 12px; color: var(--color-text-light); }
.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
}
.review-card__verified::before {
  content: '✓';
  font-weight: 800;
}
.review-card__rating { display: flex; align-items: center; gap: 8px; }
.review-card__rating .star-rating svg { width: 16px; height: 16px; }
.review-card__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.review-card__body { font-size: 14px; color: var(--color-text); line-height: 1.7; margin-bottom: 12px; }
.review-card__photos { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.review-card__photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border);
}
.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
}
.review-card__helpful { display: flex; align-items: center; gap: 6px; }
.review-card__helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  color: var(--color-text-light);
  transition: all 0.2s;
}
.review-card__helpful-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.review-card__helpful-btn svg { width: 14px; height: 14px; }
.review-card__count { font-size: 13px; color: var(--color-text-light); }

.product-reviews__load-more { text-align: center; margin-top: 32px; }
.product-reviews__load-more .btn { min-width: 200px; }

/* ==================== Review Modal ==================== */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal.is-open { display: flex; }
.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.review-modal__content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s ease;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.review-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s;
}
.review-modal__close:hover { background: var(--color-border); }
.review-modal__close svg { width: 18px; height: 18px; }
.review-modal__title { font-size: 24px; margin-bottom: 4px; }
.review-modal__product { font-size: 14px; color: var(--color-text-light); margin-bottom: 24px; }

.review-form { display: flex; flex-direction: column; gap: 18px; }
.review-form__field { display: flex; flex-direction: column; gap: 8px; }
.review-form__field label { font-size: 13px; font-weight: 600; color: var(--color-text); }
.review-form__field input,
.review-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}
.review-form__field input:focus,
.review-form__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.review-form__field textarea { resize: vertical; min-height: 100px; }

.review-form__stars { display: flex; gap: 4px; }
.review-form__star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: #DDD;
  transition: color 0.1s;
}
.review-form__star svg { width: 28px; height: 28px; }
.review-form__star.is-active,
.review-form__star:hover { color: #FFB400; }
.review-form__star.is-active svg { fill: #FFB400; stroke: #FFB400; }

.review-form__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.review-form__actions .btn { min-width: 120px; }

/* ==================== Sticky Add-to-Cart Bar (Mobile) ==================== */
.product-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.product-sticky-bar.is-visible { transform: translateY(0); }
.product-sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.product-sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.product-sticky-bar__image {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}
.product-sticky-bar__image img { width: 100%; height: 100%; object-fit: cover; }
.product-sticky-bar__text { min-width: 0; flex: 1; }
.product-sticky-bar__title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-sticky-bar__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0;
}
.product-sticky-bar__btn {
  height: 48px;
  padding: 0 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-size: 14px;
}

/* Padding to body when sticky bar is visible to prevent overlap */
body.has-sticky-bar { padding-bottom: 76px; }

/* ===== Collection Page ===== */
.collection-banner {
  background: var(--color-bg-light);
  padding: 60px 0;
  text-align: center;
}
.collection-banner__title { font-size: 48px; margin-bottom: 12px; }
.collection-banner__count { color: var(--color-text-light); }
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}
.collection-toolbar__count { font-size: 14px; color: var(--color-text-light); }

/* ============================================================
   RESPONSIVE — Tablet (768px - 1023px)
   ============================================================ */
@media (max-width: 1023px) {
  :root {
    --section-padding-y: 60px;
    --container-padding: 20px;
  }

  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .hero-slides { min-height: 440px; }
  .hero-slide__content { min-height: 440px; padding: 60px 0; }
  .hero-slide__title { font-size: 42px; }
  .hero-slide__subtitle { font-size: 16px; }

  .service-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .section-title { font-size: 32px; }
  .section-subtitle { font-size: 16px; }

  .ts-product-grid { grid-template-columns: repeat(2, 1fr); }

  .c22-grid { grid-template-columns: 1fr; gap: 16px; }
  .c22-card { aspect-ratio: 16 / 10; }
  .c22-card__overlay { padding: 24px; }
  .c22-card__title { font-size: 22px; }

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

  .bundle-feature__inner { grid-template-columns: 1fr; gap: 32px; }
  .bundle-feature__title { font-size: 32px; }

  .cat-feature__inner { gap: 32px; }
  .cat-feature__title { font-size: 36px; }

  .bs-grid { grid-template-columns: 1fr; gap: 20px; }
  .bs-card { padding: 24px; }
  .bs-card__title { font-size: 24px; }

  .fg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

  .tm-grid { grid-template-columns: 1fr; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

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

  /* Product Page - Tablet */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    position: static;
  }
  .product-info__title { font-size: 28px; }
  .product-info__price-current { font-size: 32px; }
  .product-reviews__summary { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .product-reviews__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .collection-banner__title { font-size: 36px; }
}

/* ============================================================
   RESPONSIVE — Mobile (<768px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-padding-y: 40px;
    --container-padding: 16px;
  }

  body { font-size: 15px; }

  .header-inner { height: 56px; gap: 8px; }
  .header-logo img, .header-logo svg { max-height: 30px; }
  .header-logo span { font-size: 20px !important; }
  .header-actions .icon-btn { width: 34px; height: 34px; }
  .header-actions .icon-btn svg { width: 19px; height: 19px; }
  .header-actions { gap: 2px; }

  .announcement-bar { font-size: 12px; padding: 8px 32px 8px 12px; }
  .announcement-bar__close { right: 8px; }

  .btn { padding: 12px 24px; font-size: 15px; }
  .btn--lg { padding: 14px 28px; font-size: 16px; }

  .hero-slides { min-height: 360px; }
  .hero-slide__content { min-height: 360px; padding: 40px 0; }
  .hero-slide__eyebrow { font-size: 12px; margin-bottom: 10px; }
  .hero-slide__title { font-size: 30px; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 14px; }
  .hero-slide__subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero-slide__btn { padding: 12px 28px; font-size: 14px; }
  .hero-dots { bottom: 20px; gap: 8px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.is-active { width: 24px; }

  .service-bar { padding: 20px 0; }
  .service-bar__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-bar__item { gap: 10px; }
  .service-bar__icon { width: 36px; height: 36px; }
  .service-bar__icon svg { width: 32px; height: 32px; }
  .service-bar__title { font-size: 13px; }
  .service-bar__sub { font-size: 11px; }

  .section-header { margin-bottom: 28px; }
  .section-eyebrow { font-size: 12px; margin-bottom: 8px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 14px; }

  .ts-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ts-product-card__body { padding: 14px; }
  .ts-product-card__title { font-size: 14px; }
  .ts-product-card__desc { font-size: 12px; min-height: 34px; }
  .ts-product-card__current { font-size: 18px; }
  .ts-product-card__compare { font-size: 12px; }
  .ts-product-card__cta { font-size: 12px; }

  .c22-card__overlay { padding: 20px; }
  .c22-card__title { font-size: 20px; }
  .c22-card__desc { font-size: 13px; }

  .fl-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fl-card__text { padding: 12px; }
  .fl-card__title { font-size: 13px; }
  .fl-card__price { font-size: 15px; }

  .bundle-feature { padding: 32px 0; }
  .bundle-feature__inner { gap: 24px; }
  .bundle-feature__title { font-size: 24px; }
  .bundle-feature__desc { font-size: 14px; }

  .cat-feature { padding: 32px 0; }
  .cat-feature__inner { grid-template-columns: 1fr; gap: 24px; }
  .cat-feature:nth-child(even) .cat-feature__inner { direction: ltr; }
  .cat-feature__title { font-size: 24px; }
  .cat-feature__desc { font-size: 14px; }
  .cat-feature__visual { aspect-ratio: 16 / 12; }

  .bs-grid { grid-template-columns: 1fr; gap: 16px; }
  .bs-card { padding: 24px 20px; }
  .bs-card__title { font-size: 22px; }

  .fg-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fg-card { padding: 20px 16px; }
  .fg-card__icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .fg-card__icon svg { width: 22px; height: 22px; }
  .fg-card__title { font-size: 15px; }
  .fg-card__desc { font-size: 12px; }

  .app-showcase__visual img { max-width: 160px; }

  .tm-grid { grid-template-columns: 1fr; gap: 16px; }
  .tm-card { padding: 24px; }
  .tm-card__quote { font-size: 15px; }

  .ms-logos { gap: 24px; padding: 20px 0; }
  .ms-logo { font-size: 16px; }
  .ms-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input { padding: 14px 18px; }
  .newsletter__hint { font-size: 12px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-brand { text-align: center; }
  .footer-brand__logo { display: flex; justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 12px; }
  .product-card__title { font-size: 13px; min-height: 36px; }
  .product-card__price-current { font-size: 15px; }

  /* Product Page - Mobile */
  .product-page { padding: 16px 0 60px; }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
  }
  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    position: static;
  }
  .product-gallery__main {
    aspect-ratio: 1 / 1;
  }
  .product-gallery__thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .product-gallery__thumbs::-webkit-scrollbar { height: 3px; }
  .product-gallery__thumb { width: 64px; height: 64px; flex-shrink: 0; }
  .product-gallery__nav { display: none; }
  .product-gallery__dots { display: flex; }

  .product-info__title { font-size: 22px; }
  .product-info__price-current { font-size: 28px; }
  .product-info__price-compare { font-size: 15px; }
  .product-info__desc { font-size: 14px; }
  .product-trust { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-trust__item { font-size: 12px; }
  .product-trust__item svg { width: 18px; height: 18px; }

  /* Sticky bar visible */
  body.has-sticky-bar { padding-bottom: 80px; }
  .product-sticky-bar { display: block; }

  /* Reviews - Mobile */
  .product-reviews { margin-top: 60px; padding-top: 40px; }
  .product-reviews__title { font-size: 22px; }
  .product-reviews__summary { padding: 20px; gap: 20px; }
  .product-reviews__big-num { font-size: 44px; }
  .product-reviews__filter { flex-direction: column; align-items: flex-start; }
  .product-reviews__list { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 16px; }
  .review-card__title { font-size: 15px; }
  .review-modal__content { padding: 28px 20px; }
  .review-modal__title { font-size: 20px; }
  .review-form__actions { flex-direction: column-reverse; }
  .review-form__actions .btn { width: 100%; }

  /* Description Section Mobile */
  .product-description-section { margin-top: 60px; padding-top: 40px; }
  .product-description-title { font-size: 22px; }

  .collection-banner { padding: 32px 0; }
  .collection-banner__title { font-size: 26px; }

  .mobile-drawer { max-width: 100%; }
}

/* ============================================================
   Very small phones (<360px)
   ============================================================ */
@media (max-width: 359px) {
  .hero-slide__title { font-size: 24px; }
  .hero-slide__subtitle { font-size: 13px; }
  .ts-product-grid { grid-template-columns: 1fr; }
  .cat-feature__title { font-size: 22px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-info__title { font-size: 20px; }
  .product-info__price-current { font-size: 24px; }
  .product-info__actions { grid-template-columns: 1fr; }
}