/* ==========================================================================
   NEW SITARA — CONTEMPORARY APPAREL STOREFRONT STYLESHEET
   Clean, Fresh, High-Street Minimalist Architecture (Inspired by Eveen.pk)
   ========================================================================== */

:root {
  --bg-canvas: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-subtle: #F3EFEA;
  --bg-hover: #ECE6DD;
  --bg-glass: rgba(250, 248, 245, 0.96);
  --bg-glass-card: #FFFFFF;

  --text-main: #111827;
  --text-muted: #5C6470;
  --text-dim: #8C94A0;
  
  --border-subtle: #E8E3DA;
  --border-glass: rgba(0, 0, 0, 0.06);
  --border-dark: #111827;

  --accent-noir: #111827;
  --accent-blue: #111827;
  --accent-blue-hover: #000000;
  --accent-green: #059669;
  --accent-warm: #F4EDE2;
  --accent-cream: #FAF8F5;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-modern: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 12px 32px -4px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.02);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.06);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body.store-theme {
  background-color: var(--bg-canvas);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex !important;
}

/* ==========================================================================
   MICRO ANNOUNCEMENT BAR (Clean Luxury Bar)
   ========================================================================== */
.store-announcement {
  background: #111827;
  color: #F9FAFB;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.55rem 1rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-text {
  display: inline-block;
  text-transform: uppercase;
  color: #F3F4F6;
}

.announcement-text strong {
  color: #FFFFFF;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  margin: 0 0.15rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.store-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.nav-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.nav-links-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow: visible;
  white-space: nowrap;
}

.nav-link-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link-btn:hover,
.nav-link-btn.active {
  color: var(--text-main);
  font-weight: 700;
}

/* Navigation Categories Dropdown */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-category-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 0.65rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 999;
}

.nav-dropdown-wrap:hover .nav-category-dropdown,
.nav-dropdown-wrap.open .nav-category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-head {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  padding: 0.4rem 0.75rem 0.25rem;
  text-transform: uppercase;
}

.nav-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-cat-item:hover,
.nav-cat-item.active {
  background: var(--bg-subtle);
  color: var(--accent-noir);
  font-weight: 700;
}

.nav-cat-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.35rem 0.5rem;
}

.brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.brand-center:hover {
  opacity: 0.92;
}

.nav-brand-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 0 14px rgba(212, 175, 55, 0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.brand-center:hover .nav-brand-logo-img {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

.brand-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.brand-logotype {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-main);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub-tag {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-actions-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.nav-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  width: 220px;
  transition: all 0.25s ease;
}

.nav-search-box:focus-within {
  width: 270px;
  background: #FFF;
  border-color: var(--text-main);
}

.nav-search-box svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.nav-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.8rem;
  color: var(--text-main);
}

.store-bag-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-noir);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.store-bag-btn:hover {
  background: var(--accent-blue);
}

.store-bag-btn svg {
  width: 16px;
  height: 16px;
}

.bag-pill {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent-blue);
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Search Strip */
.mobile-search-strip {
  display: none;
  padding: 0.65rem 1rem;
  background: #FFF;
  border-top: 1px solid var(--border-subtle);
  animation: searchSlide 0.25s var(--ease-modern);
}

.mobile-search-strip.open {
  display: block;
}

.mobile-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.mobile-search-wrap svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.mobile-search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--text-main);
}

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

/* ==========================================================================
   MOBILE SLIDE-IN NAV DRAWER
   ========================================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  will-change: opacity;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 84%;
  max-width: 340px;
  background: #FFF;
  z-index: 310;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
  will-change: transform;
  contain: paint;
}

.mobile-nav-drawer.open {
  transform: translate3d(0, 0, 0);
}

.mob-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mob-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mob-drawer-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-main);
}

.mob-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-main);
  padding: 0.3rem;
  cursor: pointer;
}

.mob-drawer-close svg {
  width: 20px;
  height: 20px;
}

.mob-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mob-category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 6px;
  color: var(--text-main);
  background: transparent;
  border: none;
  transition: background 0.15s ease;
  text-align: left;
  cursor: pointer;
}

.mob-category-btn:hover,
.mob-category-btn.active {
  background: var(--bg-subtle);
  color: #000000;
}

.mob-count-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
}

.mob-drawer-preferences {
  padding: 0.85rem 1.25rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.mob-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mob-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mob-pref-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.mob-pref-label svg {
  width: 12px;
  height: 12px;
}

.mob-pref-select {
  width: 100%;
  padding: 0.45rem 0.6rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 10px;
}

.mob-pref-select:focus {
  border-color: #111827;
}

.mob-drawer-footer {
  padding: 1rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mob-footer-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.35rem 0;
}

.mob-footer-link svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

/* ==========================================================================
   HIGH-IMPACT EDITORIAL FASHION HERO BANNER (2-Column Luxury Showcase)
   ========================================================================== */
.store-hero.editorial-hero {
  position: relative;
  background: linear-gradient(135deg, #FAF8F5 0%, #FFFFFF 50%, #F5EFE6 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero-season-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #111827;
  color: #FFFFFF;
  padding: 0.38rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-drop-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #FFFFFF;
  color: #111827;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 1.25rem;
}

.hero-headline .hero-highlight {
  background: linear-gradient(135deg, #111827 20%, #99773D 70%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111827;
  color: #FFFFFF;
  padding: 0.92rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.25s var(--ease-modern);
}

.btn-hero-primary:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  color: #111827;
  border: 1.5px solid #111827;
  padding: 0.92rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s var(--ease-modern);
}

.btn-hero-outline:hover {
  background: #111827;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-item svg {
  width: 22px;
  height: 22px;
  color: #D4AF37;
  flex-shrink: 0;
}

.hero-trust-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.hero-trust-item span {
  display: block;
  font-size: 0.7rem;
  color: #6B7280;
}

/* Right Column Lookbook Cards */
.hero-visual-col {
  position: relative;
  width: 100%;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(2, 195px);
  gap: 1.15rem;
}

.hero-lookbook-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #111827;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s var(--ease-modern);
}

.hero-lookbook-card.main-card {
  grid-row: span 2;
  height: 100%;
  min-height: 400px;
}

.hero-lookbook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 24px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

.hero-lookbook-card .lookbook-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-lookbook-card:hover .lookbook-img {
  transform: scale(1.08);
}

.hero-lookbook-card .lookbook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(17,24,39,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: #FFFFFF;
}

.lookbook-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F3E5AB;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.lookbook-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  color: #FFFFFF;
}

.main-card .lookbook-title {
  font-size: 1.45rem;
}

.lookbook-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.lookbook-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.hero-lookbook-card:hover .lookbook-link {
  color: #D4AF37;
}

.hero-lookbook-card:hover .lookbook-link svg {
  transform: translate(2px, -2px);
}

@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content-col {
    align-items: center;
    text-align: center;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-row {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-cards-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .hero-lookbook-card.main-card {
    grid-row: auto;
    grid-column: span 2;
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .store-hero.editorial-hero {
    padding: 2.5rem 1rem 3rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-lookbook-card.main-card {
    grid-column: auto;
    min-height: 220px;
  }

  .hero-lookbook-card.sub-card-1,
  .hero-lookbook-card.sub-card-2 {
    height: 180px;
  }
}

/* ==========================================================================
   TRUST FEATURES VALUE BAR (Eveen-style Trust Strip)
   ========================================================================== */
.trust-features-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
}

.trust-grid {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  background: #F5EFE6;
}

.trust-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

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

.trust-text-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.15rem;
}

.trust-text-box p {
  font-size: 0.74rem;
  color: #6B7280;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 540px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CATEGORY QUICK-SWIPE HORIZONTAL STRIP (Fast Thumb Filtering)
   ========================================================================== */
.category-strip-wrapper {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  position: sticky;
  top: 58px;
  z-index: 90;
}

.category-strip-container {
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.15rem 0.25rem;
}

.category-strip-container::-webkit-scrollbar {
  display: none;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #374151;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s var(--ease-modern);
}

.quick-pill:hover {
  background: #F3EFEA;
  color: #111827;
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.quick-pill.active {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   FLASH SALE URGENCY TICKER BANNER
   ========================================================================== */
.flash-sale-banner {
  background: linear-gradient(90deg, #FAF4EB 0%, #FFFDF9 50%, #F5ECE0 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1.25rem;
}

.flash-sale-content {
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}

.flash-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #DC2626;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.flash-tag svg {
  width: 12px;
  height: 12px;
}

.flash-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #1F2937;
}

.flash-code {
  font-weight: 800;
  color: #DC2626;
  background: #FEE2E2;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.flash-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-display);
}

.timer-unit {
  background: #111827;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.timer-unit strong {
  font-size: 0.85rem;
}

.timer-colon {
  font-weight: 800;
  color: #111827;
}

/* ==========================================================================
   CUSTOMER REVIEWS SOCIAL PROOF SECTION
   ========================================================================== */
.store-reviews-section {
  max-width: 1720px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.reviews-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rating-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  margin-top: 0.75rem;
  color: #374151;
}

.stars-gold {
  color: #F59E0B;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.review-stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.review-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.review-body {
  font-size: 0.86rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111827;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-buyer-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  margin-top: 0.15rem;
}

.verified-buyer-tag svg {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR (Sticky App-like Bar)
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 250;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}

.mob-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #6B7280;
  font-size: 0.65rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

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

.mob-bottom-btn.active,
.mob-bottom-btn:hover {
  color: #111827;
  font-weight: 700;
}

.mob-icon-wrap {
  position: relative;
  display: inline-flex;
}

.mob-bottom-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #111827;
  color: #FFFFFF;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Mobile 2-Column Product Grid & Card Optimizations */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: grid !important;
  }

  body.store-theme {
    padding-bottom: 70px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 4px !important;
  }

  .store-card {
    border-radius: 12px;
  }

  .card-content {
    padding: 0.75rem 0.6rem;
  }

  .card-heading {
    font-size: 0.84rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-category-label {
    font-size: 0.62rem;
    margin-bottom: 0.15rem;
  }

  .card-price-tag {
    font-size: 0.95rem;
  }

  .btn-mob-add-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #111827;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
  }

  .btn-mob-add-pill svg {
    width: 12px;
    height: 12px;
  }

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

.cat-count-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #93C5FD;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.cat-title-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.cat-link-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   DEPARTMENT SHELVES & DEDICATED COLLECTION VIEW
   ========================================================================== */
.department-shelf-section {
  max-width: 1720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.department-shelf-section:last-child {
  border-bottom: none;
}

.shelf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.shelf-title-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shelf-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-blue);
  text-transform: uppercase;
}

.shelf-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.shelf-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
}

.btn-shelf-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-main);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-modern);
}

.btn-shelf-viewall:hover {
  background: var(--accent-noir);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-shelf-viewall svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-shelf-viewall:hover svg {
  transform: translateX(3px);
}

/* Dedicated Collection Header */
.collection-header-wrap {
  max-width: 1720px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem 0 0.5rem;
}

.collection-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-breadcrumb-home {
  background: transparent;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  cursor: pointer;
  padding: 0;
}

.btn-breadcrumb-home:hover {
  text-decoration: underline;
}

.collection-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 0.25rem 0;
}

.collection-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .department-shelf-section {
    padding: 2rem 1rem 1rem;
  }

  .shelf-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .btn-shelf-viewall {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EDITORIAL CRAFTSMANSHIP SPOTLIGHT BANNER (Clean Light Aesthetic)
   ========================================================================== */
.editorial-spotlight-section {
  background: #FAF8F5;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 5rem 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.spotlight-inner {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.spotlight-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
}

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

.spotlight-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: #111827;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.spotlight-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #111827;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.01em;
}

.spotlight-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 540px;
}

.spotlight-features-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
  width: 100%;
}

.spotlight-feat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spotlight-feat-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
}

.spotlight-feat-item span {
  font-size: 0.72rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   BRAND VALUE PILLARS
   ========================================================================== */
.brand-pillars-section {
  max-width: 1720px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.15);
}

.pillar-card svg {
  width: 24px;
  height: 24px;
  color: var(--accent-noir);
  margin-bottom: 0.35rem;
}

.pillar-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.pillar-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 600px) {
  .pillars-container {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .curated-showcase-section {
    padding: 2rem 1rem 3rem;
  }

  .editorial-spotlight-section {
    padding: 3.5rem 1rem;
    margin: 2.5rem 0;
  }

  .spotlight-features-row {
    gap: 1rem;
  }

  .spotlight-feat-item strong {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   CATALOG CONTROLS & PRODUCT GRID
   ========================================================================== */
.catalog-section {
  max-width: 1720px;
  margin: 0 auto;
  padding: 1.5rem 2rem 5rem;
}

.catalog-controls-sticky {
  position: sticky;
  top: 58px;
  z-index: 90;
  background: var(--bg-canvas);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.filter-pills-row {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filter-pills-row::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  padding: 0.5rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--accent-noir);
  color: #FFF;
  border-color: var(--accent-noir);
}

.controls-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.store-select {
  background: #FFF;
  border: 1px solid var(--border-subtle);
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

.grid-toggles {
  display: flex;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.15rem;
}

.grid-btn {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.grid-btn.active,
.grid-btn:hover {
  background: var(--accent-noir);
  color: #FFF;
}

/* ==========================================================================
   PRODUCT CARDS & GRID
   ========================================================================== */
.products-grid {
  display: grid;
  gap: 1.75rem 1.25rem;
  transition: all 0.3s ease;
}

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

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

.products-grid.grid-1 {
  grid-template-columns: 1fr;
}

.store-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  content-visibility: auto;
  contain-intrinsic-size: 0 420px;
  transform: translateZ(0);
}

.store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  cursor: pointer;
}

.store-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F4F1EC;
  cursor: pointer;
}

.card-img-front {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}

.card-img-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}

.store-card:hover .card-img-front {
  opacity: 0;
  transform: scale(1.035);
}

.store-card:hover .card-img-back {
  opacity: 1;
  transform: scale(1.035);
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111827;
  color: #FFF;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* Mobile Quick Action */
.card-mob-btn {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-noir);
  color: #FFF;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.card-mob-btn svg {
  width: 16px;
  height: 16px;
}

/* Desktop Hover Quick Add Tray (Minimalist Luxury) */
.card-hover-drawer {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  z-index: 4;
  pointer-events: none;
}

.store-card:hover .card-hover-drawer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.card-quick-sizes-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.quick-size-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4B5563;
  white-space: nowrap;
}

.card-sizes-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.size-pill-btn {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111827;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
  min-width: 24px;
  text-align: center;
}

.size-pill-btn:hover {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
  transform: scale(1.06);
}

.btn-card-direct-add {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #111827;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-card-direct-add:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-content {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.card-heading {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.card-heading:hover {
  color: var(--accent-blue);
}

.card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.35rem;
}

.card-price-tag {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.card-stock-tag {
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 700;
}

/* ==========================================================================
   QUICK VIEW MODAL (BOTTOM SHEET ON MOBILE)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  transform: translateZ(0);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  background: #FFF;
  border-radius: 8px;
  z-index: 310;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-modern);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.modal-drag-bar {
  display: none;
  width: 40px;
  height: 4px;
  background: #DDD;
  border-radius: 999px;
  margin: 12px auto 6px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-grid-body {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
}

.modal-media-pane {
  background: var(--bg-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.modal-thumbs-row {
  display: flex;
  gap: 0.5rem;
}

.modal-thumb {
  width: 60px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.modal-thumb.active,
.modal-thumb:hover {
  opacity: 1;
  border-color: var(--text-main);
}

.modal-details-pane {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.modal-cat-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.modal-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.modal-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-sizes-box {
  margin-bottom: 1.5rem;
}

.size-pick-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.modal-chips-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.size-chip-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-chip-btn:hover,
.size-chip-btn.active {
  background: var(--accent-noir);
  color: #FFF;
  border-color: var(--accent-noir);
}

.modal-specs-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-modern);
}

.btn-dark {
  background: var(--accent-noir);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-dark:hover {
  background: var(--accent-blue);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.25);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
}

.btn-whatsapp:hover {
  background: #1FA855;
}

/* ==========================================================================
   SLIDE-OUT SHOPPING BAG
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  will-change: opacity;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.store-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #FFF;
  z-index: 210;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  will-change: transform;
  contain: paint;
}

.store-cart-drawer.open {
  transform: translate3d(0, 0, 0);
}

.cart-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-head-title h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.cart-badge-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-close-btn {
  color: var(--text-main);
  padding: 0.25rem;
}

.cart-shipping-meter {
  background: var(--bg-subtle);
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.meter-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
}

.meter-bar-track {
  height: 4px;
  background: #E5E7EB;
  border-radius: 999px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  display: flex;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 68px;
  height: 88px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
}

.stepper-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: var(--bg-subtle);
}

.stepper-btn {
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.stepper-val {
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
}

.remove-btn {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-decoration: underline;
  margin-left: auto;
}

.remove-btn:hover {
  color: #DC2626;
}

.cart-checkout-box {
  padding: 1.25rem 1.5rem;
  background: #FAFAFA;
  border-top: 1px solid var(--border-subtle);
}

.promo-input-group {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.promo-input-group input {
  flex: 1;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  border-radius: 4px;
  outline: none;
}

.promo-input-group button {
  background: var(--accent-noir);
  color: #FFF;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
}

.cart-math-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.math-line {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.discount-line {
  color: var(--accent-green);
  font-weight: 700;
}

.total-line {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.cart-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-trust-footer {
  font-size: 0.65rem;
  text-align: center;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

/* ==========================================================================
   MOBILE BOTTOM BAR
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
  z-index: 95;
  padding: 0.5rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
}

.mob-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  min-width: 54px;
}

.mob-tab.active,
.mob-tab:hover {
  color: var(--accent-noir);
  transform: translateY(-1px);
}

.mob-tab:active {
  transform: scale(0.94);
}

.mob-tab svg {
  width: 20px;
  height: 20px;
}

.mob-bag-badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-bag-pill {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--accent-blue);
  color: #FFF;
  font-size: 0.55rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   COMPACT MINIMAL FOOTER
   ========================================================================== */
.compact-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 2rem 2.5rem;
}

.footer-wrap {
  max-width: 1720px;
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.65rem;
}

.footer-brand-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-socials a:hover {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-links-pane h6,
.footer-newsletter-pane h6 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-pane a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-links-pane a:hover {
  color: var(--text-main);
}

.footer-newsletter-pane p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.footer-form {
  display: flex;
  gap: 0.35rem;
}

.footer-form input {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.85rem;
  color: var(--text-main);
  font-size: 0.8rem;
  border-radius: 4px;
  outline: none;
}

.footer-form button {
  background: var(--accent-noir);
  color: #FFF;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.55rem 1rem;
  border-radius: 4px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-badges {
  display: flex;
  gap: 0.65rem;
  font-family: monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.store-toast-hub {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.store-toast {
  pointer-events: auto;
  background: var(--accent-noir);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastIn 0.25s var(--ease-modern) forwards;
}

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

/* ==========================================================================
   RESPONSIVE (MOBILE FIRST)
   ========================================================================== */
@media (max-width: 1200px) {
  .products-grid.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-container {
    grid-template-columns: auto 1fr auto;
    padding: 0.75rem 1.25rem;
  }

  .mobile-only {
    display: flex !important;
  }

  .desktop-only {
    display: none !important;
  }

  .categories-scroll-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-card {
    flex: 0 0 190px;
    height: 250px;
    scroll-snap-align: start;
  }

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

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
  }

  .modal-grid-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .store-announcement {
    padding: 0.35rem 0.5rem;
    font-size: 0.62rem;
    overflow: hidden;
  }

  .announcement-inner {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
  }

  .announcement-text {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .nav-container {
    padding: 0.5rem 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
  }

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

  .brand-center {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 auto;
  }

  .nav-brand-logo-img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }

  .brand-logotype {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-sub-tag {
    font-size: 0.48rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-top: 1px;
  }

  .nav-actions-right {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .mobile-search-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
  }

  .mobile-search-btn svg {
    width: 18px;
    height: 18px;
  }

  .store-bag-btn {
    width: 34px;
    height: 34px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
  }

  .store-bag-btn svg {
    width: 16px;
    height: 16px;
  }

  .bag-pill {
    width: 15px;
    height: 15px;
    font-size: 0.58rem;
    top: -2px;
    right: -2px;
  }

  .store-hero {
    display: none !important;
  }

  .mobile-cat-strip {
    display: flex !important;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.55rem 0.85rem;
    overflow-x: auto;
    white-space: nowrap;
    gap: 0.4rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: 48px;
    z-index: 85;
  }

  .mobile-cat-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-cat-strip .mob-pill {
    flex-shrink: 0;
    padding: 0.35rem 0.8rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .mobile-cat-strip .mob-pill.active {
    background: #111827;
    color: #FFFFFF;
    border-color: #111827;
  }

  .department-shelf-section {
    margin: 1.25rem auto !important;
    padding: 0 0.85rem !important;
  }

  .shelf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0 0.2rem;
  }

  .shelf-eyebrow,
  .shelf-desc {
    display: none !important;
  }

  .shelf-heading {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--text-main);
  }

  .btn-shelf-viewall {
    padding: 0.32rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
  }

  .btn-shelf-viewall i {
    width: 12px;
    height: 12px;
  }

  .editorial-spotlight-section {
    display: none !important;
  }

  .flash-sale-banner {
    display: none !important;
  }

  .categories-section {
    display: none !important;
  }

  .catalog-section {
    padding: 0.75rem 0.75rem 5rem;
  }

  .catalog-controls-sticky {
    top: 48px;
    padding: 0.55rem 0;
  }

  .filter-pill {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }

  .products-grid.grid-4,
  .products-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .store-card {
    border-radius: 8px;
  }

  .card-content {
    padding: 0.65rem 0.55rem;
  }

  .card-heading {
    font-size: 0.78rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }

  .card-price-tag {
    font-size: 0.85rem;
  }

  .card-hover-drawer {
    display: none !important;
  }

  .card-mob-btn {
    display: flex;
  }

  .card-content {
    padding: 0.75rem;
  }

  .card-heading {
    font-size: 0.82rem;
  }

  .card-price-tag {
    font-size: 0.95rem;
  }

  /* Bottom Sheet Modal */
  .product-modal {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
  }

  .product-modal.open {
    transform: translateY(0);
  }

  .modal-drag-bar {
    display: block;
  }

  .modal-media-pane {
    padding: 1rem 1.25rem 0.5rem;
  }

  .modal-main-image {
    height: 250px;
  }

  .modal-details-pane {
    padding: 1.25rem;
  }

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

  .modal-actions-dual {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-subtle);
    margin-top: 1.25rem;
    z-index: 10;
  }

  .store-cart-drawer {
    max-width: 100%;
  }

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

  .store-toast-hub {
    bottom: 4.5rem;
    right: 1rem;
    left: 1rem;
  }
}

/* ==========================================================================
   CHECKOUT MODAL & ORDER RECEIPT STYLES
   ========================================================================== */
.nav-track-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.nav-track-link:hover {
  color: var(--text-main);
  background: #FFF;
  border-color: var(--text-main);
}

.nav-track-link svg {
  width: 14px;
  height: 14px;
}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) translateZ(0);
  width: 92%;
  max-width: 980px;
  max-height: 90vh;
  background: #FFF;
  border-radius: 14px;
  z-index: 310;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  contain: content;
  will-change: transform, opacity;
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateZ(0);
}

.checkout-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.head-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.head-left h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.head-left svg {
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.form-section {
  margin-bottom: 1.75rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text-main);
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.checkout-modal label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.form-input:focus {
  background: #FFF;
  border-color: var(--text-main);
}

/* Payment Options */
.payment-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pay-option-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pay-option-card:hover {
  background: #FFF;
  border-color: var(--border-dark);
}

.pay-option-card input[type="radio"] {
  margin-top: 0.25rem;
  accent-color: var(--accent-noir);
}

.pay-option-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.pay-option-title svg {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
}

.pay-option-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Right Pane: Checkout Mini Items & Totals */
.checkout-right-pane {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.checkout-mini-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.chk-item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chk-item-img {
  width: 44px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.chk-item-details {
  flex: 1;
}

.chk-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.chk-item-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chk-item-price {
  font-size: 0.85rem;
  font-weight: 800;
}

.checkout-totals-box {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.chk-math-line {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.grand-total-line {
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 1.1rem;
  color: var(--text-main);
}

.btn-place-order {
  padding: 0.95rem;
  font-size: 0.85rem;
}

.checkout-security-notice {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* ==========================================================================
   ORDER CONFIRMATION & RECEIPT MODAL
   ========================================================================== */
.receipt-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 520px;
  background: #FFF;
  border-radius: 12px;
  z-index: 320;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-modern);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
}

.receipt-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.receipt-card-inner {
  text-align: center;
}

.receipt-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.receipt-badge-icon svg {
  width: 32px;
  height: 32px;
}

.receipt-sup-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-green);
}

.receipt-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0.35rem 0 0.6rem;
}

.receipt-msg {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.tracking-copy-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.75rem;
}

.trk-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.trk-id-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trk-id-row code {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
}

.btn-copy-trk {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-copy-trk:hover {
  background: var(--accent-noir);
  color: #FFF;
}

.btn-copy-trk svg {
  width: 13px;
  height: 13px;
}

.receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .checkout-modal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1rem;
  }

  .checkout-modal.open {
    transform: translateY(0);
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .receipt-modal {
    padding: 1.5rem 1rem;
  }
}

/* ==========================================================================
   MULTI-CURRENCY PICKER
   ========================================================================== */
.currency-picker-wrap {
  position: relative;
  display: inline-block;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-btn:hover {
  background: #FFF;
  border-color: var(--text-main);
}

.currency-btn .chevron-icon {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.currency-picker-wrap.open .currency-btn .chevron-icon {
  transform: rotate(180deg);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 270px;
  max-height: 380px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1200;
  animation: dropdownPop 0.15s ease-out;
}

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

.currency-picker-wrap.open .currency-dropdown {
  display: flex;
}

/* ==========================================================================
   MULTI-LANGUAGE SELECTOR & RTL SUPPORT
   ========================================================================== */
.lang-picker-wrap {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: #FFF;
  border-color: var(--text-main);
}

.lang-btn svg {
  width: 13px;
  height: 13px;
  color: var(--text-muted);
}

.lang-btn .chevron-icon {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.lang-picker-wrap.open .lang-btn .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 220px;
  max-height: 360px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1200;
  animation: dropdownPop 0.15s ease-out;
}

.lang-picker-wrap.open .lang-dropdown {
  display: flex;
}

.lang-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
}

.lang-opt-btn:hover {
  background: var(--bg-subtle);
}

.lang-opt-btn.active {
  background: var(--accent-noir);
  color: #FFF;
}

.lang-opt-btn.active .lang-native-sub {
  color: rgba(255, 255, 255, 0.85);
}

.lang-code-pill {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.lang-native-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   RTL LAYOUT MODE (Arabic, Urdu, Hebrew, Persian)
   ========================================================================== */
body.rtl-mode {
  direction: rtl;
  text-align: right;
  font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
}

/* Navbar in RTL */
body.rtl-mode .nav-container {
  direction: rtl;
}

body.rtl-mode .brand-center {
  direction: ltr !important;
  text-align: center;
  margin: 0 auto;
}

body.rtl-mode .brand-center .brand-sub-tag {
  direction: ltr !important;
  text-align: center;
}

body.rtl-mode .nav-links-left {
  justify-content: flex-start;
  direction: rtl;
}

body.rtl-mode .nav-actions-right {
  justify-content: flex-end;
  direction: rtl;
}

body.rtl-mode .nav-dropdown-head {
  text-align: right;
}

body.rtl-mode .nav-cat-item {
  flex-direction: row-reverse;
  text-align: right;
}

body.rtl-mode .currency-dropdown,
body.rtl-mode .lang-dropdown {
  right: auto;
  left: 0;
  text-align: right;
}

body.rtl-mode .bag-pill,
body.rtl-mode .wishlist-pill {
  right: auto;
  left: -4px;
}

/* Hero Section in RTL */
body.rtl-mode .store-hero.editorial-hero {
  direction: rtl;
  text-align: right;
}

body.rtl-mode .hero-container {
  direction: rtl;
}

body.rtl-mode .hero-content-col {
  align-items: flex-start;
  text-align: right;
}

body.rtl-mode .hero-headline {
  line-height: 1.38;
  padding-top: 0.35rem;
  letter-spacing: 0;
}

body.rtl-mode .hero-cta-row {
  flex-direction: row;
  justify-content: flex-start;
}

body.rtl-mode .hero-trust-row {
  direction: rtl;
  text-align: right;
}

body.rtl-mode .hero-trust-item {
  flex-direction: row;
  text-align: right;
}

body.rtl-mode .hero-lookbook-card .lookbook-overlay {
  text-align: right;
  align-items: flex-start;
}

body.rtl-mode [data-lucide="arrow-right"] {
  transform: scaleX(-1);
}

body.rtl-mode [data-lucide="arrow-left"] {
  transform: scaleX(-1);
}

/* Shelves and Cards in RTL */
body.rtl-mode .shelf-header {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

body.rtl-mode .shelf-title-col {
  text-align: right;
}

body.rtl-mode .card-content {
  text-align: right;
}

body.rtl-mode .card-price-row {
  flex-direction: row;
}

body.rtl-mode .card-wishlist-btn {
  right: auto;
  left: 12px;
}

body.rtl-mode .card-tag {
  left: auto;
  right: 12px;
}

body.rtl-mode .flash-sale-content {
  direction: rtl;
}

.currency-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.currency-opt-btn:hover {
  background: var(--bg-subtle);
}

.currency-opt-btn.active {
  background: var(--accent-noir);
  color: #FFF;
}

.currency-opt-btn.active .currency-rate-sub {
  color: rgba(255, 255, 255, 0.8);
}

.currency-opt-btn.active .currency-symbol-pill {
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.currency-opt-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.currency-symbol-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  padding: 0 0.35rem;
  background: var(--bg-subtle);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
}

.currency-code-bold {
  font-weight: 700;
  font-size: 0.82rem;
}

.currency-rate-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   WISHLIST / SAVED ITEMS SYSTEM
   ========================================================================== */
.store-wishlist-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.store-wishlist-btn:hover {
  background: #FFF;
  border-color: #EF4444;
  color: #EF4444;
}

.store-wishlist-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.store-wishlist-btn:hover svg {
  transform: scale(1.15);
}

.wishlist-pill {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #EF4444;
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Wishlist Heart Trigger */
.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 15;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-wishlist-btn:hover {
  transform: scale(1.15);
  color: #EF4444;
  background: #FFF;
}

.card-wishlist-btn.active {
  color: #EF4444;
  background: #FFF;
}

.card-wishlist-btn.active svg {
  fill: #EF4444;
  stroke: #EF4444;
}

.card-wishlist-btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease;
}

/* Star Rating Snippet on Card */
.card-rating-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: #F59E0B;
  margin-top: 0.15rem;
}

.card-rating-stars {
  letter-spacing: 0.05em;
}

.card-rating-count {
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* Wishlist Drawer Items */
.wishlist-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wishlist-item-row {
  display: flex;
  gap: 0.9rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.75rem;
  position: relative;
  align-items: center;
}

.wishlist-item-img {
  width: 65px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  background: #E5E7EB;
}

.wishlist-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wishlist-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.wishlist-item-cat {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.wishlist-item-price {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-main);
}

.wishlist-item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.btn-wishlist-move {
  background: var(--accent-noir);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.btn-wishlist-move:hover {
  background: var(--accent-blue);
}

.btn-wishlist-del {
  font-size: 0.68rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}

.btn-wishlist-del:hover {
  color: #EF4444;
}

/* ==========================================================================
   ADVANCED FILTER & SORT EXPANSION PANEL
   ========================================================================== */
.filter-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-toggle-btn:hover, .filter-toggle-btn.active {
  background: var(--accent-noir);
  color: #FFF;
  border-color: var(--accent-noir);
}

.filter-count-badge {
  background: var(--accent-blue);
  color: #FFF;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-weight: 800;
}

.advanced-filter-panel {
  display: none;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem;
  margin-top: 0.85rem;
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  animation: filterOpen 0.25s var(--ease-modern);
}

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

.advanced-filter-panel.open {
  display: grid;
}

.filter-group-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-range-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-slider-track {
  width: 100%;
  accent-color: var(--accent-noir);
  cursor: pointer;
}

.price-labels-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.size-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.size-chip-btn {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--bg-subtle);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.15s ease;
}

.size-chip-btn:hover {
  background: #FFF;
  border-color: var(--text-main);
}

.size-chip-btn.active {
  background: var(--accent-noir);
  color: #FFF;
  border-color: var(--accent-noir);
}

.stock-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

.stock-toggle-label input {
  accent-color: var(--accent-noir);
  width: 16px;
  height: 16px;
}

.filter-actions-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.btn-clear-filters {
  font-size: 0.75rem;
  font-weight: 700;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.btn-clear-filters:hover {
  background: #EF4444;
  color: #FFF;
}

/* ==========================================================================
   PRODUCT MODAL TABS & REVIEWS SYSTEM
   ========================================================================== */
.modal-tabs-header {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
  padding-bottom: 0.25rem;
}

.modal-tab-nav-btn {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.4rem 0;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-tab-nav-btn.active {
  color: var(--text-main);
}

.modal-tab-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
}

.modal-tab-content {
  display: none;
}

.modal-tab-content.active {
  display: block;
}

.modal-reviews-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.reviews-score-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
}

.big-rating-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.score-stars-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.score-stars {
  color: #F59E0B;
  font-size: 0.95rem;
}

.score-count-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-open-review-form {
  background: var(--accent-noir);
  color: #FFF;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-open-review-form:hover {
  background: var(--accent-blue);
}

.write-review-form-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.star-rating-selector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.star-rate-icon {
  font-size: 1.4rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-rate-icon:hover, .star-rate-icon.active {
  color: #F59E0B;
  transform: scale(1.15);
}

.review-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.review-card-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

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

.review-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.review-author-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.verified-badge {
  color: #10B981;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.review-date-text {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.review-headline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 0.2rem;
}

.review-body-comment {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* Modal Action Grid */
.modal-actions-dual {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.btn-modal-wishlist {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-wishlist:hover, .btn-modal-wishlist.active {
  background: #FFF;
  border-color: #EF4444;
  color: #EF4444;
}

.btn-modal-wishlist.active svg {
  fill: #EF4444;
  stroke: #EF4444;
}

.btn-modal-wa {
  padding: 0 1rem;
  height: 46px;
  border-radius: 8px;
  background: #25D366;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.btn-modal-wa:hover {
  background: #1EBE5D;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-whatsapp:hover {
  background: #1EBE5D;
}

/* ==========================================================================
   PRINT INVOICE STYLING
   ========================================================================== */
@media print {
  body * {
    visibility: hidden;
  }

  .store-navbar, .store-announcement, .compact-footer, .mobile-bottom-bar,
  .store-hero, .categories-section, .catalog-section, .cart-backdrop,
  .store-cart-drawer, .checkout-modal, #modalBackdrop, #checkoutBackdrop,
  .btn-track-submit, .track-search-card, .track-navbar, .order-card-footer,
  .btn-copy-trk, .receipt-actions, .btn-whatsapp-concierge {
    display: none !important;
  }

  .receipt-modal, .order-status-card, #receiptModal, #orderStatusCard {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #CCC !important;
    padding: 2rem !important;
    background: #FFF !important;
    display: block !important;
  }

  .receipt-modal *, .order-status-card * {
    visibility: visible;
  }
}

/* ==========================================================================
   LUXURY SHIMMERING SKELETON LOADING SCREENS
   ========================================================================== */
.skeleton {
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite ease-in-out;
  border-radius: 6px;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.skeleton-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
}

.skeleton-line.tag { height: 10px; width: 35%; }
.skeleton-line.title { height: 16px; width: 85%; }
.skeleton-line.rating { height: 12px; width: 50%; }
.skeleton-line.price { height: 18px; width: 40%; }

/* PDP Skeleton */
.skeleton-pdp-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  max-width: 1320px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.skeleton-pdp-gallery {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
}

.skeleton-pdp-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Cart Skeleton */
.skeleton-cart-row {
  display: grid;
  grid-template-columns: 80px 1fr 100px 100px 40px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.skeleton-cart-thumb {
  width: 80px;
  height: 96px;
  border-radius: 6px;
}

@media (max-width: 1080px) {
  .skeleton-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .skeleton-pdp-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .skeleton-cart-row {
    grid-template-columns: 70px 1fr 60px;
  }
}

