/*
  BlueWell — Zippy Theme Preview CSS
  ===================================
  Brand vars derived from the BlueWell logo (electric royal blue + cyan shine).
  Native Zippy values (product card, green price badge, tag chip, grids) kept exactly.
*/

:root {
  /* ── Brand (BlueWell) ── */
  --brand-primary: #0B3FC2;
  /* royal electric blue */
  --brand-primary-dark: #082C8C;
  /* deep navy-blue */
  --brand-azure: #34B3F1;
  /* logo cyan metallic shine */
  --brand-azure-light: #5CC8FF;
  /* legible azure on dark */
  --brand-accent: #FF8A1E;
  /* warm amber — CTA + deal pop */
  --brand-accent-dark: #E8730A;
  --gold: #FFCF3F;
  /* deal-emphasis words */

  /* ── Neutrals ── */
  --navy: #08123A;
  /* footer / deep base (blue-tinted) */
  --white: #ffffff;
  --off-white: #F5F7FA;
  --border: #E0E0E0;
  --text-dark: #14213D;
  --text-muted: #6B7280;

  /* ── Layout ── */
  --page-px: 4rem;
  --radius: 8px;
  --shadow-hover: 0 8px 24px rgba(11, 63, 194, 0.16);
}

body {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.84rem;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* Full-width tinted section bands (rhythm) */
.section-band {
  width: 100%;
}

.band-soft {
  background: #F4F7FF;
}

.band-bestsellers .sh-home-page-prod-section.page-container {
  padding-top: 3.25rem;
}

#categories,
#deals {
  scroll-margin-top: 124px;
}

/* ════════ ANNOUNCEMENT BAR ════════ */
.announcement-bar {
  background: var(--brand-primary);
  padding: 8px 0;
  position: relative;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-items {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.announcement-items strong {
  color: var(--gold);
  font-weight: 700;
}

.ann-divider {
  color: rgba(255, 255, 255, 0.3);
  padding: 0 0.75rem;
}

.ann-close {
  position: absolute;
  right: var(--page-px);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.ann-close:hover {
  color: white;
}



/* ════════ HERO ════════ */
.hero-section {
  background: #061C5E;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(6, 18, 58, 0.94) 0%, rgba(6, 18, 58, 0.72) 32%, rgba(6, 18, 58, 0.25) 55%, rgba(6, 18, 58, 0) 70%);
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 480px;
  padding: 52px var(--page-px);
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(255, 138, 30, 0.4);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: var(--brand-azure-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 30rem;
}

.hero-sub strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-pill {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 13px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--brand-accent);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(255, 138, 30, 0.36);
}

.btn-primary:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-ghost:hover {
  color: white;
}

.hero-products {
  flex-shrink: 0;
  width: 380px;
}

/* Spotlight feature card */
.hero-feature {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  margin-bottom: 12px;
}

.hero-feature-img {
  aspect-ratio: 4/3;
}

.hero-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-feature-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
}

.hero-feature-off {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 138, 30, 0.4);
}

.hero-feature-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 6px 4px;
  border-top: 1px solid #f0f3f8;
  margin-top: 6px;
}

.hero-feature-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2540;
  line-height: 1.25;
}

.hero-feature-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-primary-dark);
}

.hero-feature-price s {
  font-size: 0.82rem;
  font-weight: 500;
  color: #9aa3b5;
  margin-left: 4px;
}

/* Supporting thumbnails */
.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-thumb {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

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

.hero-thumb-off {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}

/* ════════ SECTION HEADER ════════ */
.section-header {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-primary-dark);
  line-height: 1;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.view-all-link:hover {
  text-decoration: underline;
}

/* ════════ CATEGORIES (icon tiles) ════════ */
.cat-section.page-container {
  padding: 3.5rem var(--page-px);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px 14px;
}

.cat-card.sh-category-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cat-card-img-container {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDF2FE;
  border: 1px solid #E3E9F7;
  position: relative;
}

.cat-card-img-container.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.cat-card.sh-category-card:hover .cat-card-img-container.has-img img {
  transform: scale(1.05);
}

.cat-card-img-container:not(.has-img) svg {
  width: 42%;
  height: 42%;
  color: var(--brand-primary);
  position: relative;
  z-index: 1;
}

.cat-card.sh-category-card:hover .cat-card-img-container {
  box-shadow: 0 12px 26px rgba(11, 63, 194, 0.22);
  transform: translateY(-3px);
}

.cat-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
}

/* Highlighted deal tile */
.cat-card-deal .cat-card-img-container {
  background: linear-gradient(150deg, #FF8A1E 0%, #FF5E1E 100%);
  border-color: transparent;
}

.cat-card-deal .cat-card-img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.25), transparent 55%);
}

.cat-card-deal .cat-card-img-container svg {
  color: #fff;
}

.cat-card-deal:hover .cat-card-img-container {
  box-shadow: 0 12px 26px rgba(255, 94, 30, 0.4);
}

.cat-card-deal .cat-card-title {
  color: var(--brand-accent-dark);
  font-weight: 700;
}






/* ════════ TRUST STRIP ════════ */
.trust-strip.page-container {
  padding-top: 0;
  padding-bottom: 0;
}

.trust-strip-inner {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

}

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

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

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EDF2FE;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ════════ FOOTER ════════ */
.luxury-footer {
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.footer-brand-name span {
  color: var(--brand-azure);
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-description {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-contact p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom-wrapper {
  padding: 18px 0;
}

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

.footer-copyright {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.32);
}

.payment-badges {
  display: flex;
  gap: 6px;
}

.pay-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ════════ COLLECTIONS ════════ */
/* TYPE 1: Single-row product list */
.product-collection.page-container {
  padding: 0 var(--page-px) 3rem;
}

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

.heading-wrap .heading {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}

.shop-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.shop-all-link:hover {
  text-decoration: underline;
}

.single-row-swiper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow: hidden;
}

/* TYPE 2: Banner left + products right */
.generic-collection.sh-generic-collection-card.page-container {
  padding: 0 var(--page-px) 3rem;
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.banner-collection-container {
  width: 26%;
  min-width: 300px;
  flex: none;
  border-radius: 12px;
  overflow: hidden;
}

.banner-collection-container .banner {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.banner-collection-container .banner-image-container {
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
}

.product-collection-container {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(0, 1fr);
  gap: 16px;
}

.banner-button {
  background: white;
  color: var(--brand-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  display: inline-block;
  transition: transform 0.15s;
}

.banner-button:hover {
  transform: translateY(-1px);
}

/* TYPE 3: Full-width sale banner (gradient) */
.banner-collection.page-container {
  padding: 0 var(--page-px) 3rem;
}

.sale-banner {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 3rem;
  background: linear-gradient(120deg, #061C5E 0%, #0B3FC2 55%, #0E7FD6 100%);
}

.sale-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.sale-banner-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.sale-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sale-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.sale-title span {
  color: var(--brand-azure-light);
}

.sale-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
  max-width: 30rem;
}

.sale-cta {
  background: var(--brand-accent);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(255, 138, 30, 0.4);
  transition: background 0.2s, transform 0.15s;
}

.sale-cta:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-1px);
}

.sale-banner-burst {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 0 8px rgba(255, 138, 30, 0.25);
  transform: rotate(-8deg);
}

.sale-banner-burst small {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 2px;
}

/* ════════ VIDEO REEL ════════ */
.video-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1080px;
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.video-copy {
  flex: 1;
  min-width: 0;
  max-width: 540px;
}

.video-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.video-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.video-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 32rem;
}

.video-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.video-points li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.video-frame {
  flex-shrink: 0;
  position: relative;
  width: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(8, 18, 58, 0.28);
  background: #000;
  aspect-ratio: 478 / 850;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-mute {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(8, 18, 58, 0.55);
  backdrop-filter: blur(4px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.video-mute:hover {
  background: rgba(8, 18, 58, 0.8);
}

.video-mute .icon-unmuted {
  display: none;
}

.video-mute.is-unmuted .icon-muted {
  display: none;
}

.video-mute.is-unmuted .icon-unmuted {
  display: block;
}

/* ════════ ADD-TO-CART TOAST ════════ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 18px);
  background: var(--brand-primary-dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(8, 18, 58, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ════════ TABLET ≤1100px ════════ */
@media (max-width: 1100px) {
  :root {
    --page-px: 2rem;
  }

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


  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-products {
    width: 300px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .single-row-swiper {
    grid-template-columns: repeat(4, 1fr);
  }

  .banner-collection-container {
    min-width: 240px;
  }

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

  .video-section {
    gap: 2.5rem;
  }
}

/* ════════ MOBILE ≤768px ════════ */
@media (max-width: 768px) {
  :root {
    --page-px: 1rem;
  }

  .announcement-items {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
  }

  .ann-divider {
    display: none;
  }

  .ann-close {
    top: 50%;
    right: 0.75rem;
  }

  .desktop-header-top {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 10px 0;
  }

  .desktop-header-left {
    order: 1;
    flex: 0 0 auto;
  }

  .desktop-store-logo {
    height: 38px;
  }

  .brand-wordmark {
    font-size: 1.25rem;
  }

  .desktop-header-right {
    order: 2;
    flex: 0 0 auto;
    gap: 1rem;
    margin-left: auto;
  }

  .desktop-delivery-location {
    display: none;
  }

  .desktop-header-center {
    order: 3;
    width: 100%;
    flex: none;
  }

  .search-bar {
    height: 40px;
  }

  .search-category-select {
    display: none;
  }

  .nav-item {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-inner {
    min-height: 600px;
    align-items: flex-start;
    padding: 34px var(--page-px) 44px;
    gap: 20px;
  }

  .hero-section::after {
    background: linear-gradient(180deg, rgba(6, 18, 58, 0.92) 0%, rgba(6, 18, 58, 0.74) 34%, rgba(6, 18, 58, 0.32) 60%, rgba(6, 18, 58, 0.12) 100%);
  }

  .hero-bg {
    object-position: center top;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  .cat-section.page-container {
    padding: 2rem var(--page-px);
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 10px;
  }

  .cat-card-title {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .heading-wrap .heading {
    font-size: 1.2rem;
  }

  .sh-home-page-prod-section.page-container {
    padding: 0 var(--page-px) 2.5rem;
  }



  /* Collections */
  .product-collection.page-container {
    padding: 0 var(--page-px) 2rem;
  }

  .single-row-swiper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .generic-collection.sh-generic-collection-card.page-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 var(--page-px) 2rem;
  }

  .banner-collection-container {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .banner-collection-container .banner {
    min-height: 0;
  }

  .banner-collection-container .banner-image-container {
    height: 220px;
    min-height: 220px;
  }

  .product-collection-container {
    grid-template-columns: repeat(0, 1fr);
    gap: 10px;
  }

  .banner-collection.page-container {
    padding: 0 var(--page-px) 2rem;
  }

  /* Sale banner */
  .sale-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 1.8rem 1.5rem;
  }

  .sale-banner-content {
    max-width: 100%;
  }

  .sale-title {
    font-size: 1.7rem;
  }

  .sale-banner-burst {
    width: 104px;
    height: 104px;
    font-size: 2rem;
    align-self: center;
  }

  /* Video */
  .video-section {
    flex-direction: column;
    gap: 1.8rem;
    padding-bottom: 2.5rem;
  }

  .video-copy {
    order: 2;
  }

  .video-frame {
    order: 1;
    width: 260px;
    max-width: 80%;
  }

  .video-title {
    font-size: 1.6rem;
  }

  /* Trust strip */
  .trust-strip-inner {
    flex-wrap: wrap;

  }

  .trust-item {
    width: 50%;
    border-right: none;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
  }

  /* Footer */
  .luxury-footer {
    padding: 36px 0 0;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-bottom: 2rem;
  }

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

  .payment-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ════════ TESTIMONIALS ════════ */
.testimonials.page-container {
  padding: 3.5rem var(--page-px);
}

.testimonials-header {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.rating-stars {
  color: #FFB400;
  letter-spacing: 2px;
  font-size: 1rem;
}

.rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(20, 33, 61, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-stars {
  color: #FFB400;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, #0B3FC2, #0E7FD6);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-meta {
  display: flex;
  flex-direction: column;
}

.t-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.t-loc {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ════════ TESTIMONIALS — responsive ════════ */
@media (max-width: 768px) {
  .testimonials.page-container {
    padding: 2.2rem var(--page-px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.header-desktop-wrapper {
  background-color: white;
  color: black;
}

:root {
  --header-accent: #000000
}

.notice {
  padding: 0px;

}

.heading-title {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}


.heading-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.luxury-header {
  background-color: #fff;
  color: #000;
}

.search-box {
  border: 2px solid #0B3FC2 !important;
}

.nav-link {
  font-family: Outfit, system-ui, sans-serif;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg2);
  padding: 6px 0;
  transition: color .18s ease;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-link:hover {
  color: #0E7FD6;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-categories {
  display: none;
}