/* ============================================
   SAHA MARKETPLACE — GLOBAL STYLES
   Premium Egyptian Multi-Brand Marketplace
   ============================================ */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --c-primary: #0A1628;
  --c-accent: #1B6FFF;
  --c-accent-2: #00D4FF;
  --c-accent-glow: rgba(27, 111, 255, 0.15);
  --c-bg: #FAFAF8;
  --c-bg-2: #F2F2EE;
  --c-surface: #FFFFFF;
  --c-text: #111111;
  --c-text-mid: #444444;
  --c-text-light: #888888;
  --c-border: #E8E8E4;
  --c-success: #22C55E;
  --c-error: #EF4444;

  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-accent: 0 8px 32px rgba(27, 111, 255, 0.25);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 68px;
  --container: 1320px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-primary);
}

h1 { font-size: clamp(36px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(20px, 3vw, 32px); }
h4 { font-size: clamp(16px, 2.5vw, 22px); }

p { color: var(--c-text-mid); }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(48px, 8vw, 100px) 0;
}

.section--sm {
  padding: clamp(32px, 5vw, 60px) 0;
}

/* ---- GRID ---- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: #0A5FEE;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(27,111,255,0.35);
}

.btn--dark {
  background: var(--c-primary);
  color: #fff;
}
.btn--dark:hover {
  background: #162340;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border);
}
.btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  padding: 10px 16px;
}
.btn--ghost:hover { background: var(--c-bg-2); }

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn--lg {
  padding: 17px 40px;
  font-size: 15px;
}

.btn--full { width: 100%; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--accent { background: var(--c-accent-glow); color: var(--c-accent); }
.badge--dark { background: var(--c-primary); color: #fff; }
.badge--sale { background: #FEE2E2; color: #DC2626; }
.badge--new { background: #DCFCE7; color: #16A34A; }

/* ---- SECTION HEADER ---- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(24px, 4vw, 48px);
  gap: 16px;
}

.section-header__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.section-header__title {
  font-size: clamp(24px, 4vw, 44px);
  font-family: var(--font-heading);
  color: var(--c-primary);
}

/* ---- PRODUCT CARD ---- */
.product-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--c-border);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-bg-2);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  pointer-events: none;
}

.product-card__media-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  pointer-events: all;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-card__media-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card__action-btn:hover {
  background: var(--c-accent);
  color: white;
}

.product-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.product-card__info {
  padding: 14px 16px 16px;
}

.product-card__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 4px;
  display: block;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-primary);
}

.product-card__price--compare {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text-light);
  text-decoration: line-through;
}

.product-card__quick-add {
  width: 100%;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
}
.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BRAND CARD ---- */
.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--c-border);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.brand-card__media {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-card:hover .brand-card__media { transform: scale(1.06); }

.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.brand-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.brand-card__count {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
}

/* ---- FILTERS ---- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 32px;
}

.filter-chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--c-border);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-mid);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-glow);
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-height-desktop, var(--header-h));
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: var(--header-inner-gap, 16px);
}

.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--header-logo-max-width, 180px);
  overflow: visible;
  transform: translate(var(--header-logo-offset-x, 0), var(--header-logo-offset-y, 0));
  z-index: 2;
}

.site-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.site-header__logo img {
  height: var(--header-logo-height-desktop, 36px);
  width: auto;
  max-width: var(--header-logo-max-width, 180px);
  object-fit: contain;
  transform: scale(var(--header-logo-scale, 1));
  transform-origin: center;
}

.site-header--logo-left .site-header__inner {
  grid-template-columns: auto 1fr auto;
}
.site-header--logo-left .site-header__logo {
  order: 1;
  justify-content: flex-start;
}
.site-header--logo-left .site-header__nav {
  order: 2;
  justify-content: flex-start;
}
.site-header--logo-left .site-header__actions {
  order: 3;
}

.site-header--logo-center .site-header__nav { order: 1; }
.site-header--logo-center .site-header__logo { order: 2; }
.site-header--logo-center .site-header__actions { order: 3; }

.site-header--logo-right .site-header__inner {
  grid-template-columns: 1fr auto auto;
}
.site-header--logo-right .site-header__nav {
  order: 1;
}
.site-header--logo-right .site-header__actions {
  order: 2;
  justify-content: flex-end;
}
.site-header--logo-right .site-header__logo {
  order: 3;
  justify-content: flex-end;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--header-nav-gap, 4px);
}

.site-header__nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  transition: var(--transition);
  position: relative;
}
.site-header__nav-link:hover,
.site-header__nav-link.active {
  background: var(--c-bg-2);
  color: var(--c-accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--header-action-gap, 8px);
}

.site-header__icon-btn {
  width: var(--header-icon-button-size, 40px);
  height: var(--header-icon-button-size, 40px);
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  transition: var(--transition);
  position: relative;
}
.site-header__icon-btn:hover { background: var(--c-bg-2); }
.site-header__icon-btn svg {
  width: var(--header-icon-size, 20px);
  height: var(--header-icon-size, 20px);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--c-accent);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- MEGA MENU ---- */
.mega-menu {
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 0;
  right: 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 99;
}
.mega-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-menu__inner {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}
.mega-menu__brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--c-primary);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.announcement-bar a { color: var(--c-accent-2); }

/* ---- HERO ---- */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--c-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27,111,255,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0,212,255,0.15) 0%, transparent 50%),
    var(--c-primary);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}

.hero__content { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(27,111,255,0.15);
  border: 1px solid rgba(27,111,255,0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent-2);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: none;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__product-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero__product-tile:first-child {
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .hero {
    min-height: unset;
    align-items: center;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 0 48px;
  }
  .hero__visual {
    display: none;
  }
  .hero__stats { display: none; }
  .hero__title { font-size: clamp(32px, 8vw, 52px); }
  .hero__subtitle { font-size: 15px; margin-bottom: 28px; }
}

/* ---- MARQUEE ---- */
.marquee-strip {
  overflow: hidden;
  padding: 18px 0;
  background: var(--c-accent);
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px;
}

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

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--c-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}

.trust-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
}

.trust-item__desc {
  font-size: 12px;
  color: var(--c-text-light);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--c-border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--c-border); border-right: none; }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--c-primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

.site-footer__logo img { height: 32px; filter: brightness(0) invert(1); }

.site-footer__col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.site-footer__link:hover { color: white; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.site-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-btn:hover { background: var(--c-accent); border-color: var(--c-accent); color: white; }

@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }

  /* ---- MOBILE HEADER: hamburger | logo | icons ---- */
  .site-header {
    height: var(--header-height-mobile, 60px);
    min-height: unset;
  }
  .site-header .container {
    height: 100%;
    padding: 0 12px;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    gap: 0;
    position: relative;
  }

  /* Desktop nav hidden on mobile */
  .site-header__nav--desktop {
    display: none !important;
  }

  /* Hamburger shown on mobile (left) */
  .site-header__hamburger {
    display: flex !important;
    order: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  /* Logo center */
  .site-header__logo {
    order: 2;
    min-width: 0;
    justify-content: center;
  }
  .site-header__logo img {
    height: var(--header-logo-height-mobile, 36px);
    max-width: min(var(--header-logo-max-width, 180px), 44vw);
  }

  /* Icons right */
  .site-header__actions {
    order: 3;
    justify-content: flex-end;
    gap: 2px;
    flex-shrink: 0;
  }

  /* Hide search on mobile to save space — re-enabled */
  .site-header__search-btn {
    display: flex;
  }

  .site-header__icon-btn {
    width: 36px;
    height: 36px;
  }
}

/* ---- MOBILE NAV DRAWER ---- */
.site-header__hamburger { display: none; }

@media (min-width: 641px) {
  .site-header__hamburger { display: none !important; }
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-drawer.open {
  pointer-events: all;
  opacity: 1;
}
.mobile-nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}
.mobile-nav-drawer__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--c-primary, #0a0f2c);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-drawer.open .mobile-nav-drawer__panel {
  transform: translateX(0);
}

/* Drawer header */
.mobile-nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav-drawer__logo {
  filter: brightness(0) invert(1);
  height: 32px;
}
.mobile-nav-drawer__logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: white;
}
.mobile-nav-drawer__close {
  color: rgba(255,255,255,0.7);
}
.mobile-nav-drawer__close:hover { color: white; }

/* Main nav links */
.mobile-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-drawer__link:hover,
.mobile-nav-drawer__link.active {
  background: rgba(255,255,255,0.06);
  color: var(--c-accent-2, #00d4ff);
}
.mobile-nav-drawer__link svg { opacity: 0.4; flex-shrink: 0; }

/* Section label */
.mobile-nav-drawer__section {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav-drawer__section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

/* Category pills */
.mobile-nav-drawer__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mobile-nav-drawer__cat-pill {
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-drawer__cat-pill:hover {
  background: var(--c-accent, #1e60f2);
  border-color: var(--c-accent, #1e60f2);
  color: white;
}

/* Footer links */
.mobile-nav-drawer__footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mobile-nav-drawer__footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-nav-drawer__footer-link:hover { color: white; }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-primary);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__nav {
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.mobile-menu__link:hover { color: var(--c-accent-2); }

/* ---- DRAWER (CART) ---- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--c-surface);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

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

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--c-border); }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item__img {
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--c-bg-2);
}

.cart-item__brand { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent); }
.cart-item__name { font-size: 14px; font-weight: 600; color: var(--c-primary); margin-top: 3px; }
.cart-item__meta { font-size: 12px; color: var(--c-text-light); margin-top: 4px; }
.cart-item__price { font-size: 15px; font-weight: 700; color: var(--c-primary); margin-top: 8px; }

/* ---- COLLECTION PAGE ---- */
.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 40px;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.sidebar__section {
  padding: 20px;
  border-bottom: 1px solid var(--c-border);
}
.sidebar__section:last-child { border-bottom: none; }

.sidebar__title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sidebar__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar__option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text-mid);
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 0;
}
.sidebar__option:hover { color: var(--c-accent); }

.sidebar__checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--c-border);
  cursor: pointer;
  accent-color: var(--c-accent);
}

@media (max-width: 1024px) {
  .collection-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ---- PRODUCT PAGE ---- */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 40px 0;
}

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

.product-gallery__main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-bg-2);
  margin-bottom: 12px;
}

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

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
}

.product-gallery__thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}
.product-gallery__thumb.active { border-color: var(--c-accent); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-info__brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  object-fit: cover;
}

.product-info__brand-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.product-info__title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-info__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.product-info__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-primary);
}

.product-info__price-compare {
  font-size: 18px;
  font-weight: 400;
  color: var(--c-text-light);
  text-decoration: line-through;
}

.product-variants { margin-bottom: 24px; }

.variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.variant-label span { color: var(--c-text-light); font-weight: 400; }

.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--c-border);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--c-text);
  transition: var(--transition);
}
.variant-btn.active {
  border-color: var(--c-primary);
  background: var(--c-primary);
  color: white;
}
.variant-btn:hover:not(.active) { border-color: var(--c-accent); }
.variant-btn.sold-out { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.color-swatch.active { border-color: var(--c-primary); }
.color-swatch.active::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white;
}

.product-info__atc-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.qty-btn {
  width: 44px;
  height: 50px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--c-primary);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--c-bg-2); }
.qty-val { min-width: 36px; text-align: center; font-weight: 600; }

@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

/* ---- BRAND PAGE ---- */
.brand-hero {
  background: var(--c-primary);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27,111,255,0.25) 0%, transparent 70%);
}

.brand-hero__logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  border: 2px solid rgba(255,255,255,0.15);
  object-fit: cover;
}

.brand-hero__name {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: white;
}

.brand-hero__tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.brand-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

/* ---- SEARCH PAGE ---- */
.search-header {
  padding: 60px 0 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}

.search-input-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 32px;
}

.search-input {
  width: 100%;
  padding: 16px 56px 16px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--c-border);
  font-size: 16px;
  background: var(--c-bg);
  transition: var(--transition);
  outline: none;
}
.search-input:focus {
  border-color: var(--c-accent);
  background: white;
  box-shadow: 0 0 0 4px var(--c-accent-glow);
}

/* ---- UTILITY ---- */
.text-accent { color: var(--c-accent); }
.text-muted { color: var(--c-text-light); }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.show-mobile { display: none; }
/* Mobile menu is handled via drawer — old overlay disabled */
.mobile-menu { display: none !important; }
.show-mobile { display: none; }
@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- EMPTY STATE ---- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--c-text-light);
}
.empty-state__icon { font-size: 48px; margin-bottom: 16px; }
.empty-state__title { font-family: var(--font-heading); font-size: 22px; color: var(--c-primary); margin-bottom: 8px; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--c-text);
}
.pagination__btn.active { background: var(--c-accent); border-color: var(--c-accent); color: white; }
.pagination__btn:hover:not(.active) { border-color: var(--c-accent); color: var(--c-accent); }

/* ---- NOTIFICATIONS ---- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--c-primary);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 300;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon { color: var(--c-success); }


/* =============================================
   ADDITIONS — Buy Now button + Button group
   (appended, originals untouched)
   ============================================= */

/* ================= PRODUCT BUTTONS (KEEP) ================= */

/* Stack Add to Bag + Buy Now vertically, full width */
.product-info__btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1 / -1;
}

/* btn--dark uses primary color */
.btn--dark {
  background: var(--c-primary);
  color: #fff;
}

.btn--dark:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--dark:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Mobile: product info padding */
@media (max-width: 768px) {
  .product-info {
    padding: 24px 0 0;
  }
}


/* ================= SAHA PREMIUM BRANDS ================= */

.brands-section {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.brands-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: -0.5px;
}

/* horizontal scroll */
.brands-scroll {
  display: flex;
  gap: 35px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.brands-scroll::-webkit-scrollbar {
  display: none;
}

/* brand item */
.brand-item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
  text-decoration: none;
}

/* logo */
.brand-item img {
  width: 100%;
  height: 85px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.35s ease;
}

/* brand name */
.brand-name {
  margin-top: 10px;
  font-size: 12px;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* hover effect */
.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* mobile optimization */
@media (max-width: 768px) {
  .brand-item {
    width: 90px;
  }

  .brand-item img {
    height: 65px;
  }
}
/* =============================================
   SAHA — Product Page: Brand + Variant + Buttons
   Matches reference screenshot exactly
   ============================================= */

/* Brand name above title */
.product__vendor,
.product-meta__vendor,
[class*="vendor"] {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a3fc4;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.product__vendor:hover {
  text-decoration: underline;
}

/* Product title */
.product__title,
.product-meta__title,
h1.title {
  font-size: 2rem;
  font-weight: 900;
  color: #0d1f5c;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* Price */
.product__price,
.price__regular,
.price-item--regular {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3fc4;
  letter-spacing: 0.01em;
}

/* ── Variant / Size Selector ── */
.variant-input-wrap label,
.swatch__item,
fieldset.variant-fieldset label,
.product-form__input label.label--variant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #0d1f5c;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  margin: 4px;
}

/* Selected state — solid navy */
.variant-input-wrap input:checked + label,
.swatch__item--active,
.product-form__input input[type="radio"]:checked + label {
  background: #1a3fc4 !important;
  color: #ffffff !important;
  border-radius: 12px;
}

/* Hover on unselected */
.variant-input-wrap label:hover,
.product-form__input label:hover {
  background: #e8ecf8;
}

/* "Choose options: S" label line */
.variant-label-text,
.product-form__input > legend,
.form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}

.variant-label-text span,
.form__label .selected-value {
  color: #1a3fc4;
  font-weight: 700;
}

/* ── Buttons ── */

/* Add to Cart — dark navy pill */
.product-form__submit[name="add"],
button[name="add"],
.btn--add-to-cart,
.product-form__cart-submit {
  width: 100%;
  background: #0d1f5c !important;
  color: #ffffff !important;
  border: none;
  border-radius: 100px;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-bottom: 12px;
  transition: opacity 0.2s ease;
}

.product-form__submit[name="add"]:hover,
button[name="add"]:hover {
  opacity: 0.88;
}

/* Buy Now / Dynamic checkout — medium blue pill */
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded,
.dynamic-checkout__button {
  width: 100% !important;
  background: #1a6fd4 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 18px 24px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  box-shadow: none !important;
}

.shopify-payment-button__button:hover {
  background: #155db8 !important;
}

/* Remove any default Shopify button outlines */
.shopify-payment-button__button:focus,
button[name="add"]:focus {
  outline: 2px solid #1a3fc4;
  outline-offset: 2px;
}

/* PRODUCT ACCORDION */

.product-accordion {
  margin-top: 20px;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  display: block;
}
/* PREMIUM ACCORDION */

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}

/* ICON STYLE */
.accordion-icon {
  transition: transform 0.3s ease;
  opacity: 0.8;
}

/* ROTATION */
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

//* PREMIUM ACCORDION (FINAL CLEAN VERSION) */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;

  padding-right: 12px;
  padding-left: 4px;

  line-height: 1.7;
  color: #444;

  word-break: break-word;
  overflow-wrap: anywhere;
}

/* subtle divider */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* spacing inside text */
.accordion-content p {
  margin-bottom: 10px;
}

/* highlight bold text */
.accordion-content strong {
  color: #111;
}
/* WRAPPER */
.product-slider-wrapper {
  position: relative;
}

/* SLIDER */
.product-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* SLIDES */
.slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.slide img {
  width: 100%;
  border-radius: 16px;
}

/* DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  background: #000;
  width: 16px;
  border-radius: 10px;
}

.product-slider img,
.product-gallery img,
.slide img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}