    :root {
      --bg: #f7f5f1;
      --surface: #fcfbf8;
      --panel: #ffffff;
      --panel-soft: #faf8f4;
      --text: #121212;
      --text-soft: #6f685f;
      --text-faint: #9a9288;
      --line: #ebe5de;
      --line-strong: #ddd5cc;
      --accent: #111111;
      --sale: #b33a32;
      --shadow-soft: 0 6px 18px rgba(18,18,18,0.035);
      --shadow-fab: 0 12px 32px rgba(18,18,18,0.14);
      --radius-card: 0px;
      --radius-ui: 14px;
      --radius-pill: 999px;
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 20px;
      --space-6: 24px;
      --space-7: 32px;
      --fs-hero: 24px;
      --fs-title: 13px;
      --fs-body: 12px;
      --fs-meta: 9px;
      --fs-price: 14px;
      --fs-old-price: 12px;
      --ls-tight: -0.02em;
      --ls-normal: -0.01em;
      --ls-wide: 0.14em;
      --ease: 240ms ease;
    }
    body {
      background-color: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      letter-spacing: var(--ls-normal);
    }
    
    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    }

    /* Range Slider Styling */
    input[type=range] {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      background: transparent;
    }
    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      height: 18px; width: 18px;
      border-radius: 50%;
      background: #1f1a16;
      cursor: pointer;
      margin-top: -7px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
    input[type=range]::-webkit-slider-runnable-track {
      width: 100%; height: 4px;
      cursor: pointer;
      background: #e8e0d7;
      border-radius: 2px;
    }

/* Custom Dual Thumb Price Slider */
    .price-slider {
      position: relative;
      height: 4px;
      margin-top: 18px;
      margin-bottom: 22px;
      user-select: none;
      -webkit-user-select: none;
    }
    .price-slider-track {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--line-strong);
      border-radius: 2px;
    }
    .price-slider-fill {
      position: absolute;
      top: 0;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }
    .price-slider-thumb {
      position: absolute;
      top: 50%;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid #1f1a16;
      transform: translate(-50%, -50%);
      cursor: grab;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: box-shadow 0.15s ease, transform 0.1s ease;
      touch-action: none;
      z-index: 10;
    }
    .price-slider-thumb:active,
    .price-slider-thumb.dragging {
      cursor: grabbing;
      box-shadow: 0 0 0 4px rgba(31,26,22,0.12);
      transform: translate(-50%, -50%) scale(1.12);
    }
    
    /* Active Sidebar Buttons */
    .store-btn.active {
      background: linear-gradient(180deg, #27221e 0%, #171311 100%);
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(23,19,17,.18);
    }
    .store-btn.active .store-logo {
      background: rgba(255,255,255,.15);
      color: #fff;
    }
    .store-btn.active .count-badge {
      background: rgba(255,255,255,.15);
      color: #fff;
    }

    /* Spinner for infinite scroll */
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Live Dot Animation */
    .live-dot {
      animation: pulse-dot 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(169, 71, 61, 0.6); }
      50% { opacity: .5; transform: scale(.8); box-shadow: 0 0 0 6px rgba(169, 71, 61, 0); }
    }
    @keyframes skel-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
    .qf-pill-skel { display: inline-block; height: 22px; border-radius: 20px; background: #ebe5de; animation: skel-pulse 1.4s ease-in-out infinite; pointer-events: none; }
    .skel-block { background: #ebe5de; animation: skel-pulse 1.4s ease-in-out infinite; }
    @keyframes img-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
    .img-loading { background: linear-gradient(90deg, #fffdf9 25%, #f0ebe4 50%, #fffdf9 75%) !important; background-size: 200% 100% !important; animation: img-shimmer 1.5s ease-in-out infinite; }

    /* Wishlist Button Custom Animation */
.wishlist-btn.saved {
   outline: none;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: none;
  color: #a9473d;
  transition: color 0.25s ease, background 0.25s ease, border 0.25s ease;
}
.wishlist-btn.saved .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
  transform: scale(1.1);
  transition: transform 0.25s ease, font-variation-settings 0.25s ease;
}    

.wishlist-btn .material-symbols-outlined {
  transition: transform 0.25s ease, font-variation-settings 0.25s ease;
}

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: #d6cabf; border-radius: 10px; }

    .premium-panel { background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,248,244,0.96) 100%); }
    .soft-card { background: transparent; box-shadow: none; }
    .product-name-clamp {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .price-main { letter-spacing: var(--ls-tight); }
    .price-old { letter-spacing: var(--ls-normal); }
    .meta-small { letter-spacing: var(--ls-wide); }
    .editorial-shell { background: var(--surface); }
    .editorial-heading { font-size: var(--fs-hero); letter-spacing: var(--ls-tight); font-weight: 600; line-height: 0.98; }
    .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
    .scrollbar-hide::-webkit-scrollbar { display: none; }
    .brand-pill { display: inline-flex; align-items: center; white-space: nowrap; padding: 3px 9px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,0.85); color: var(--text-soft); font-size: 10px; font-weight: 600; letter-spacing: 0.01em; cursor: pointer; transition: all 0.25s ease; flex-shrink: 0; }
    .brand-pill:hover, .brand-pill.active { background: #111; color: #fff; border-color: #111; }
    .filter-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
    .filter-input,
    .filter-select {
      min-height: 34px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.7);
      color: var(--text);
      font-size: 12px;
      font-weight: 400;
      border-radius: 8px;
      transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
      box-shadow: none;
    }
    .filter-input::placeholder { color: var(--text-faint); font-size: 11px; }
    .filter-input:focus,
    .filter-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(17,17,17,0.06);
      background: #fff;
      outline: none;
    }
    .filter-select option { font-size: 12px; }
    .filter-section-label {
      font-size: 9px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--text-faint);
      font-weight: 700;
      margin-bottom: 7px;
      display: block;
    }
    .store-btn {
      border-radius: 16px;
      transition: background-color var(--ease), color var(--ease), transform var(--ease);
    }
    .store-btn:hover { transform: translateY(-1px); }
    .product-card {
      display: block;
      background: transparent;
    }
    .product-media { position: relative; aspect-ratio: 2 / 3; background: #f3f3f1; overflow: hidden; border-radius: 0; margin-bottom: 0px; }
    .product-brand { font-family: 'Syne', sans-serif; font-size: 8px; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-faint); font-weight: 700; margin-bottom: 3px; }
    .product-title { font-size: 11px; line-height: 1.28; color: var(--text); font-weight: 500; letter-spacing: -0.01em; min-height: 0; margin-bottom: 5px; max-width: 100%; display: -webkit-box; -webkit-line-clamp: 1; line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
    .product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
    .product-prices { display: flex; align-items: center; gap: 5px; flex-wrap: nowrap; min-width: 0; margin-top: 0; }
    .product-price-main { font-size: 12px; line-height: 1; font-weight: 700; color: var(--text); letter-spacing: var(--ls-tight); white-space: nowrap; }
    .product-price-old { font-size: 10px; line-height: 1; font-weight: 400; color: var(--text-faint); text-decoration: line-through; white-space: nowrap; }
    .sale-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 18px; padding: 0 6px; border-radius: 3px; background: var(--sale); color: #fff; font-size: 9px; line-height: 1; font-weight: 600; letter-spacing: 0.03em; }
    .ph-price-wrap { display:inline-flex;align-items:center;gap:3px;cursor:pointer;border-radius:4px;padding:2px 4px 2px 0;transition:background 0.15s; }
    .ph-price-wrap:hover { background:rgba(169,71,61,0.06); }
    .ph-price-wrap:hover .ph-icon { background:rgba(169,71,61,0.12);color:var(--sale); }
    .ph-icon { display:inline-flex;align-items:center;justify-content:center;cursor:pointer;color:var(--text-faint);vertical-align:middle;width:20px;height:20px;border-radius:50%;background:rgba(0,0,0,0.06);flex-shrink:0;transition:background 0.15s,color 0.15s; }

    .ph-icon:hover { background:rgba(169,71,61,0.12);color:var(--sale); }
    .store-badge { border-radius: 0; background: rgba(255,255,255,0.96); border: 0; color: var(--text-faint); font-size: 7.5px; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; box-shadow: none; }

.wishlist-clean {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: color 0.25s ease, background 0.25s ease, border 0.25s ease;
}
    .results-note-clean { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); line-height: 1.1; }
    .submeta-chip { display: inline-flex; align-items: center; gap: 3px; padding: 2px 7px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: rgba(255,255,255,0.82); color: var(--text-soft); font-size: 8px; font-weight: 600; letter-spacing: 0.02em; box-shadow: none; line-height: 1; cursor: pointer; }
    .submeta-x { font-size: 10px; font-weight: 700; line-height: 1; opacity: 0.5; margin-left: 1px; }
    /* Chip "Min -X%" cu fundal rosu-tenta, ca pe modino.ro */
    .submeta-chip[data-rm-type="minDiscount"] { background: rgba(169,71,61,0.08); border-color: rgba(169,71,61,0.30); }
    .submeta-chip[data-rm-type="onlyNew"] { background: rgba(45,122,79,0.08); border-color: rgba(45,122,79,0.30); color: #2d7a4f; }
    .submeta-chip[data-rm-type="onlyDropped"] { background: rgba(196,154,0,0.08); border-color: rgba(196,154,0,0.30); color: #c49a00; }
    .chip { min-height: 26px; border-radius: var(--radius-pill); font-size: 10px; font-weight: 500; box-shadow: none; font-family: 'Syne', sans-serif; }
    .qf-pill { padding: 3px 9px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,0.85); color: var(--text-soft); font-size: 9px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; font-family: 'Syne', sans-serif; }
    .qf-pill:hover { border-color: var(--accent); }
    .qf-pill.active { background: #111; color: #fff; border-color: #111; }
    #qf-new-today { border-color: rgba(45,122,79,0.4); color: rgba(45,122,79,0.85); }
    #qf-new-today.active { background: #2d7a4f; border-color: #2d7a4f; color: #fff; }
    #qf-dropped { border-color: rgba(196,154,0,0.4); color: rgba(196,154,0,0.9); }
    #qf-dropped.active { background: #c49a00; border-color: #c49a00; color: #fff; }
    .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
    .scrollbar-hide::-webkit-scrollbar { display: none; }
    .chip-active-clean {
      background: #111111 !important;
      color: #ffffff !important;
      border-color: #111111 !important;
    }
    @media (max-width: 1023px) {
      #sidebar.drawer-open { display: flex !important; }
      body.mobile-filters-open { overflow: hidden; }
    }

    .sticky-filter-shell {
      position: sticky;
      top: 72px;
      z-index: 24;
      max-width: 780px;
      margin-bottom: 16px;
    }
    .sticky-filter-card {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(232, 224, 215, 0.55);
  box-shadow: 0 4px 14px rgba(18,18,18,0.035);
  border-radius: 14px;
}
.sticky-filter-rail {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  padding: 7px 9px;
}
    .sticky-filter-label {
      font-size: 8px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 700;
      color: var(--text-faint);
      margin-bottom: 4px;
    }
    .sticky-filter-summary {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      min-width: 0;
    }
    .sticky-filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: 1px solid var(--line);
      background: rgba(250,248,244,0.92);
      color: var(--text-soft);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      line-height: 1;
      white-space: nowrap;
    }
.sticky-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(221, 213, 204, 0.75);
  background: rgba(255,255,255,0.9);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: 'Syne', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(18,18,18,0.03);
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}

    .sticky-filter-toggle:hover {
  background: rgba(255,255,255,0.96);
  border-color: rgba(221, 213, 204, 0.95);
  box-shadow: 0 5px 14px rgba(18,18,18,0.045);
  transform: translateY(-1px);
}
    .sticky-filter-toggle .material-symbols-outlined {
  font-size: 12px;
}
    .sticky-filter-links {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .qf-pill.qf-link {
      background: #fff;
    }
    /* Super Oferte button â€” fully CSS driven, zero Tailwind dynamic classes */
    .so-btn {
      border: 1px solid rgba(179, 58, 50, 0.32);
      background-color: rgba(179, 58, 50, 0.07);
      color: #b33a32;
    }
    .so-btn:hover {
      background-color: rgba(179, 58, 50, 0.14);
    }
    .so-btn[data-active="true"] {
      background-color: #b33a32;
      color: #ffffff;
      border-color: #b33a32;
    }
    .so-btn[data-active="true"]:hover {
      background-color: #9e342c;
      border-color: #9e342c;
    }
    .chip-female.chip-active-clean {
      background: #c4607a !important;
      color: #ffffff !important;
      border-color: #c4607a !important;
    }
    .chip-male.chip-active-clean {
      background: #4f86b8 !important;
      color: #ffffff !important;
      border-color: #4f86b8 !important;
    }

    .submeta-chip {
      cursor: pointer;
    }

    /* Size Checker */
    .size-check-btn {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: white;
      padding: 2px 7px;
      color: var(--text-soft);
      font-size: 8.5px;
      font-weight: 600;
      font-family: 'Syne', sans-serif;
      cursor: pointer;
      transition: all 0.15s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .size-check-btn:hover { border-color: var(--accent); color: var(--text); }

    #size-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.35);
      z-index: 200;
      align-items: flex-end;
      justify-content: center;
    }
    #size-modal-overlay.open { display: flex; }
    #size-modal-sheet {
      background: white;
      border-radius: 16px 16px 0 0;
      width: 100%;
      max-width: 500px;
      max-height: 70vh;
      padding: 20px 20px 28px;
      animation: sizeSlideUp 0.25s ease;
    }
    @media (min-width: 1024px) {
      #size-modal-overlay { align-items: center; }
      #size-modal-sheet {
        border-radius: 16px;
        max-height: 60vh;
      }
    }
    @keyframes sizeSlideUp {
      from { transform: translateY(100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .size-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 36px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      background: white;
      transition: all 0.15s ease;
    }
    .size-pill.available { border-color: var(--accent); cursor: pointer; }
    .size-pill.available:hover { background: var(--accent); color: white; }
    .size-pill.out-of-stock {
      color: var(--text-faint);
      text-decoration: line-through;
      opacity: 0.5;
      border-color: var(--line);
    }

  #seo-text-block {
      display: none;
    }

  /* Efect de blur pentru conÈ›inut cÃ¢nd filtrele sunt deschise */
.blur-content {
  filter: blur(12px);
  pointer-events: none;
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

   /* Search bar hide on scroll down, show on scroll up */
.search-bar-wrap{
  max-height: 50px;
  opacity: 1;
  overflow: hidden;
  transition:
    max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    padding-top 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.search-bar-wrap.search-hidden{
  max-height: 0;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none;
}

/* ── New single-row desktop header (landing + app) ───── */
.header-single-row {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px) 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 16px;
}
.header-logo-left {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.header-logo-wordmark {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: -0.5px; color: #111; line-height: 1;
}
.header-logo-beta {
  font-size: 8px; font-weight: 800; color: var(--sale);
  text-transform: uppercase; letter-spacing: 0.18em; margin-top: 2px;
}
.header-logo-subtitle-inline {
  font-family: 'Syne', sans-serif; font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--text-soft); margin-top: 4px;
}
.header-search-wrap {
  display: flex; justify-content: center;
}
.header-search {
  width: 100%; max-width: 460px; position: relative;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s ease;
}
.header-search:focus-within { outline: none; border-color: var(--text); }
.header-search .material-symbols-outlined { font-size: 16px; color: var(--text-faint); }
.header-search input {
  flex: 1; background: transparent; border: 0; outline: 0;
  padding: 10px 4px 10px 10px; font-size: 12px; font-weight: 500;
  color: var(--text); letter-spacing: 0.005em; font-family: inherit;
}
.header-search input::placeholder { color: var(--text-faint); font-weight: 400; letter-spacing: 0.04em; }
.header-actions-right {
  display: flex; align-items: center; gap: 6px;
  justify-content: flex-end;
}
.header-nav-audience {
  display: inline-flex; align-items: center; gap: 0; margin-right: 4px;
}
.header-nav-audience .nav-link {
  font-family: 'Syne', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-faint);
  background: none; border: 0;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.header-nav-audience .nav-link:hover { color: var(--text-soft); }
.header-nav-audience .nav-link.active {
  color: var(--text);
  font-weight: 700;
}
.header-nav-audience .nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 999px;
  background: var(--sale);
}
.icon-btn-ghost {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-soft); background: transparent; border: 0;
  border-radius: 999px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease; position: relative;
}
.icon-btn-ghost:hover { background: rgba(17,17,17,0.04); color: var(--text); }
.icon-btn-ghost .material-symbols-outlined { font-size: 22px; }
.header-divider { width: 1px; height: 18px; background: var(--line-strong); margin: 0 8px; }
.login-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: transparent; color: var(--text);
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.login-pill .material-symbols-outlined { font-size: 18px; color: var(--text-soft); }
.login-pill:hover { background: rgba(17,17,17,0.04); }

/* Header hide on scroll */
.main-header{
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 1023px) {
  .main-header {
    transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}

.main-header.header-hidden{
  transform: translateY(-100%);
}
#main-header {
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(200,170,140,0.13), 0 1px 0 rgba(0,0,0,0.04);
}
#main-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(248,246,242,0));
  pointer-events: none;
  z-index: 1;
}
#main-header.header-scrolled {
  background: rgba(255,255,255,0.55) !important;
  box-shadow: none !important;
}


#login-btn-mobile, #rv-btn, #wishlist-filter-btn {
  background: transparent;
  border: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


@media (min-width: 1024px){
  .search-bar-wrap{
    max-height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .sticky-filter-shell{
    top: 80px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1023px){
  .sticky-filter-shell{
    top: 66px;
    transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
  }

  .sticky-filter-shell.shell-collapsed{
    opacity: 0;
    pointer-events: none;
  }

  .sticky-filter-rail{
    align-items: flex-end;
    flex-direction: row;
    justify-content: flex-end;
  }

  .sticky-filter-toggle{
    width: auto;
  }
}

@media (min-width: 1024px){
  .search-bar-wrap{
    grid-template-rows: 0fr;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .sticky-filter-shell{
    top: 80px;
    margin-bottom: 24px;
  }
}

    /* â”€â”€ Filter card: invisible when closed, visible when open â”€â”€ */
    .sticky-filter-card {
      background: transparent !important;
      border-color: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }
    .sticky-filter-shell.is-open .sticky-filter-card {
      background: rgba(255,255,255,0.72) !important;
      backdrop-filter: blur(18px) !important;
      -webkit-backdrop-filter: blur(18px) !important;
      border-color: rgba(232, 224, 215, 0.6) !important;
      box-shadow: 0 6px 20px rgba(18,18,18,0.07) !important;
    }

    /* â”€â”€ Panel open animation â”€â”€ */
    #quick-filter-panel:not(.hidden) {
      animation: qfSlideDown 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes qfSlideDown {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* â”€â”€ Toggle button â”€â”€ */
    .sticky-filter-toggle {
      padding: 6px 11px;
      font-size: 8.5px;
      gap: 7px;
    }
    .sticky-filter-toggle .material-symbols-outlined {
      font-size: 12px !important;
    }
    .live-mini-wrap {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }
    .live-mini-wrap .live-mini-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #b33a32;
      animation: pulse-dot 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    .live-mini-wrap .live-mini-label {
      font-family: 'Syne', sans-serif;
      font-size: 7.5px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #b33a32;
      line-height: 1;
    }

    @media (max-width: 1023px) {
      .sticky-filter-shell {
        top: 66px;
      }
      .sticky-filter-rail {
        align-items: flex-end;
        flex-direction: row;
        justify-content: flex-end;
      }
      .sticky-filter-toggle {
        width: auto;
      }
    }

    @media (min-width: 1024px) {
      .sticky-filter-shell {
        max-width: 1080px;
        margin-left: auto;
        margin-right: auto;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
      }
      .sticky-filter-shell.shell-collapsed {
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
      }

      #main-header {
        border-bottom: none;
        box-shadow: 0 4px 18px rgba(200,170,140,0.13), 0 1px 0 rgba(0,0,0,0.04);
      }

      .store-badge {
        font-size: 8px;
        padding: 3px 6px;
      }

      #result-count {
        font-size: 13px;
        color: var(--text);
      }

      .sticky-filter-shell {
        margin-top: 4px;
      }

      #content {
        gap: 24px 20px;
      }
      
      .sticky-filter-toggle {
        padding: 8px 16px;
        font-size: 10px;
        gap: 8px;
      }
      #quick-filter-panel {
        padding: 16px 20px;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 30;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 30px rgba(18,18,18,0.1);
      }
      .sticky-filter-card {
        position: relative;
      }
      .sticky-filter-shell.is-open .sticky-filter-card {
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }
      .sticky-filter-toggle {
        padding: 10px 20px;
        font-size: 11px;
        gap: 9px;
      }
      .submeta-chip {
        font-size: 10px;
        padding: 3px 10px;
        gap: 4px;
      }
      .submeta-chip .material-symbols-outlined {
        font-size: 13px;
      }

      #quick-filter-panel .qf-pill {
        padding: 5px 12px;
        font-size: 11px;
      }
      #quick-filter-panel .text-\[9\.5px\] {
        font-size: 11px;
      }
      #quick-filter-panel .text-\[8px\] {
        font-size: 10px;
      }

      #fs-modal-category.flex,
      #fs-modal-brand.flex,
      #fs-modal-sort.flex,
      #fs-modal-store.flex,
      #fs-modal-material.flex,
      #fs-modal-size.flex {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.35);
        padding: 40px;
      }
      #fs-modal-category > div,
      #fs-modal-brand > div,
      #fs-modal-sort > div,
      #fs-modal-store > div,
      #fs-modal-material > div,
      #fs-modal-size > div {
        max-width: 480px;
        width: 100%;
        background: white;
      }
      #fs-modal-category > div:first-child,
      #fs-modal-brand > div:first-child,
      #fs-modal-sort > div:first-child,
      #fs-modal-store > div:first-child,
      #fs-modal-material > div:first-child,
      #fs-modal-size > div:first-child {
        border-radius: 16px 16px 0 0;
      }
      #fs-modal-category > div:last-child,
      #fs-modal-brand > div:last-child,
      #fs-modal-sort > div:last-child,
      #fs-modal-store > div:last-child,
      #fs-modal-material > div:last-child,
      #fs-modal-size > div:last-child {
        border-radius: 0 0 16px 16px;
      }
      #fs-modal-category > .flex-1,
      #fs-modal-brand > .flex-1,
      #fs-modal-sort > .flex-1,
      #fs-modal-store > .flex-1,
      #fs-modal-material > .flex-1,
      #fs-modal-size > .flex-1 {
        max-height: 50vh;
      }

      
      
      
    }

  /* Cerc custom multi-select â€” arata identic cu radio-ul original */
  .ms-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease;
  }
  .ms-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.12s ease;
  }
  .ms-circle[data-sel="true"] {
    border-color: #111;
    background: #111;
  }
  .ms-circle[data-sel="true"]::after {
    background: #fff;
  }

/* AnimaÈ›ie pentru apariÈ›ia linÄƒ a produselor */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-results {
  animation: fadeIn 0.5s ease forwards;
}

/* Stil pentru titlul Wishlist */
#wishlist-header-msg {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px;
  margin-top: 8px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 14px;
}

  #wishlist-filter-btn.active .material-symbols-outlined { color: #a9473d; font-variation-settings: 'FILL' 1, 'wght' 100, 'GRAD' 0, 'opsz' 24 !important; }
#wishlist-filter-btn-desktop.active .material-symbols-outlined { color: #a9473d; font-variation-settings: 'FILL' 1, 'GRAD' 0, 'opsz' 24; }

  /* Stiluri pentru bulinele de culoare */
.color-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.color-bubble:hover {
  transform: scale(1.1);
  border-color: #111;
}
.color-bubble.active {
  border: 2px solid #111;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}
.color-bubble-all {
  font-size: 10px;
  background-color: #f3f4f6;
  color: #4b5563;
}
.color-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.color-label-text {
  font-size: 10px;
  color: #6b7280;
  text-transform: capitalize;
}

/* FIX SCROLL PANOU FILTRE - STRICT DESKTOP/TABLETÄ‚ MARE */
@media (min-width: 1024px) {
  #quick-filter-panel {
    /* OpreÈ™te panoul Ã®nainte sÄƒ iasÄƒ din ecran (ecran - meniul de sus) */
    max-height: calc(100vh - 220px) !important;
    /* ActiveazÄƒ scroll doar Ã®n interiorul panoului */
    overflow-y: auto !important;
    /* ÃŽmpiedicÄƒ scroll-ul sÄƒ "scape" cÄƒtre pagina din spate (background) */
    overscroll-behavior: contain !important;
  }

  /* Design elegant pentru scrollbar-ul panoului, asortat cu site-ul tÄƒu */
  #quick-filter-panel::-webkit-scrollbar {
    width: 6px;
  }
  #quick-filter-panel::-webkit-scrollbar-track {
    background: transparent;
    margin: 14px 0; /* LasÄƒ spaÈ›iu sus/jos pentru colÈ›urile rotunjite */
  }
  #quick-filter-panel::-webkit-scrollbar-thumb {
    background: #e8e0d7; /* Culoarea liniei tale de brand */
    border-radius: 10px;
  }
}


/* â”€â”€ Recently Viewed Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#rv-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  max-width: 90vw;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(18,18,18,0.12);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .size-check-btn {
    padding: 3px 10px;
    font-size: 10px;
    border-radius: 7px;
  }
}

@media (min-width: 1024px) {
  #rv-drawer {
    width: 480px;
  }
}

#rv-drawer.open { transform: translateX(0); }
#rv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 199;
  backdrop-filter: blur(2px);
}
#rv-overlay.open { display: block; }
#rv-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
#rv-drawer-header span.rv-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--text-faint);
}
#rv-drawer-header .rv-header-actions {
  display: flex; align-items: center; gap: 8px;
}
#rv-clear {
  font-size: 9px; color: var(--text-faint);
  background: none; border: none;
  cursor: pointer; text-decoration: underline; padding: 0;
}
#rv-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff; cursor: pointer;
  color: var(--text-faint);
  transition: background 0.2s ease;
}
#rv-close:hover { background: #f5f3ef; }
#rv-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
#rv-empty-state {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 8px;
  color: var(--text-faint); text-align: center; padding: 32px 16px;
}
#rv-empty-state .material-symbols-outlined { font-size: 36px; opacity: 0.4; }
#rv-empty-state p { font-size: 11px; font-weight: 500; line-height: 1.5; max-width: 180px; }
.rv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rv-card { display: block; text-decoration: none; cursor: pointer; }
.rv-card img {
  width: 100%; aspect-ratio: 2/3;
  object-fit: cover; border-radius: 4px; background: #F7F7F5;
}
.rv-card .rv-name {
  font-size: 9px; font-weight: 500; color: var(--text);
  margin-top: 5px; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.rv-card .rv-price { font-size: 10px; font-weight: 700; color: var(--text); margin-top: 2px; }
.rv-card .rv-old { font-size: 8px; color: var(--text-faint); text-decoration: line-through; margin-left: 4px; }
.rv-card-wrap { position: relative; }
.rv-wish-btn {
  position: absolute;
  top: 0; right: 0;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.rv-wish-btn {
  position: absolute;
  top: 0; right: 0;
  z-index: 10;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.rv-wish-btn .material-symbols-outlined {
  font-size: 20px !important;
}
#rv-btn-badge, #rv-btn-badge-desktop {
  display: none; position: absolute;
  top: -4px; right: -4px;
  min-width: 16px; height: 16px;
  border-radius: 999px; background: #555; color: #fff;
  font-size: 9px; font-weight: 700;
  line-height: 16px; text-align: center; padding: 0 4px;
}

/* ── Landing Page (pages/landing.html) ───────────────── */
.lp-hero-split {
  position: relative; width: 100%; background: #0e0c0a;
  overflow: hidden; height: calc(100vh - 74px); min-height: 560px;
}
.lp-hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; height: 100%; width: 100%;
}
.lp-hero-half {
  position: relative; overflow: hidden; isolation: isolate; cursor: pointer;
}
.lp-photo {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; transform: scale(1.04);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 900ms ease;
  filter: saturate(0.92) contrast(1.02);
  background-color: #2a2520;
}
.lp-hero-half:hover .lp-photo { transform: scale(1.09); filter: saturate(1.0) contrast(1.05); }
.lp-hero-half::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0) 60%,rgba(0,0,0,.55) 100%),
    linear-gradient(90deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 35%);
  pointer-events: none; z-index: 1;
}
.lp-hero-half.right::after {
  background:
    linear-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0) 60%,rgba(0,0,0,.55) 100%),
    linear-gradient(270deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 35%);
}
.lp-hero-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(255,255,255,.18);
  transform: translateX(-0.5px); z-index: 4; pointer-events: none;
}
.lp-half-top {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 6;
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(245,241,233,.85);
}
.lp-num { font-family:'Archivo Black','Inter',sans-serif; font-size:10px; letter-spacing:.22em; line-height:1; color:rgba(245,241,233,.92); }
.lp-lbl { font-size:9px; letter-spacing:.26em; text-transform:uppercase; font-weight:700; color:rgba(245,241,233,.72); line-height:1; }
.lp-hero-overlay {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px clamp(20px,4vw,56px); color: #f5f1e9;
}
.lp-top-row { display:flex; align-items:flex-start; justify-content:space-between; width:100%; }
.lp-top-tag { font-family:'Inter',sans-serif; font-size:10px; letter-spacing:.32em; text-transform:uppercase; font-weight:600; color:rgba(245,241,233,.78); line-height:1; }
.lp-dot { display:inline-block; width:6px; height:6px; border-radius:999px; background:var(--sale); margin-right:8px; transform:translateY(-1px); animation:pulse-dot 2.2s cubic-bezier(.4,0,.6,1) infinite; }
.lp-headline-wrap { flex:1 1 auto; display:flex; align-items:center; width:100%; padding:clamp(12px,3vh,40px) 0; }

/* ══════════════════════════════════════════════════════
   FILTER SHEET — Variant C (toate ecranele)
══════════════════════════════════════════════════════ */
#quick-filter-panel {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 100 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  padding: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
#quick-filter-panel.hidden {
  display: none !important;
}
#quick-filter-panel:not(.hidden) {
  animation: vfc-slide-up 0.28s cubic-bezier(0.4,0,0.2,1);
}
@keyframes vfc-slide-up {
  from { transform: translateY(6%); opacity: 0; }
  to   { transform: translateY(0);  opacity: 1; }
}

.vfc-sheet-header {
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.vfc-sheet-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #111;
  text-transform: uppercase;
}
.vfc-sheet-reset {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.vfc-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  flex-shrink: 0;
}
.vfc-sheet-close .material-symbols-outlined { font-size: 16px; }

.vfc-sheet-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-evenly;
}

.vfc-row {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
  min-height: 56px;
}
.vfc-row--last { border-bottom: 0; }
.vfc-row { -webkit-tap-highlight-color: transparent; }

.vfc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vfc-icon .material-symbols-outlined { font-size: 15px; color: var(--text-soft); }

.vfc-row--link {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.vfc-row-arr {
  flex-shrink: 0;
  color: var(--text-faint);
  display: flex;
  align-items: center;
}
.vfc-row-arr .material-symbols-outlined { font-size: 18px; }

.vfc-row-chips {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.vfc-row-chips::-webkit-scrollbar { display: none; }

.vfc-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 4px 3px 9px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  color: var(--text-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.vfc-chip-x {
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0 3px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
}

.vfc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  width: 72px;
}

.vfc-pills-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.vfc-pills-wrap::-webkit-scrollbar { display: none; }

.vfc-sort-group {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.vfc-row--price { min-height: 52px; }
.vfc-price-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.vfc-price-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
}
.vfc-price-wrap .vfc-price-input {
  flex: 1;
  padding-left: 22px;
  padding-right: 22px;
}
.vfc-price-clear {
  position: absolute;
  right: 6px;
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: none;
  -webkit-tap-highlight-color: transparent;
}
.vfc-price-wrap:has(input:not(:placeholder-shown)) .vfc-price-clear {
  display: flex;
  align-items: center;
}
.vfc-price-input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 8px;
  font-size: 12px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  height: 28px;
  transition: border-color 0.15s;
}
.vfc-price-input:focus { border-color: var(--text-soft); }
.vfc-price-sep, .vfc-price-lei {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
  flex-shrink: 0;
}

.vfc-arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  padding: 6px 0 6px 4px;
  -webkit-tap-highlight-color: transparent;
}
.vfc-arrow .material-symbols-outlined { font-size: 18px; }

.vfc-color-dots {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vfc-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
.vfc-dot-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

.vfc-sheet-footer {
  padding: 14px 20px 32px;
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.vfc-reset-btn {
  font-family: 'Syne', sans-serif;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.vfc-apply-btn {
  flex: 1;
  padding: 15px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}
.vfc-apply-btn .material-symbols-outlined { font-size: 16px; }
#vfc-apply-btn.vfc-btn-loading {
  opacity: 0.72;
  transition: opacity 0.15s ease;
}
@keyframes vfc-btn-pop {
  0%   { opacity: 0.45; transform: scale(0.96); }
  65%  { opacity: 1;    transform: scale(1.025); }
  100% { opacity: 1;    transform: scale(1); }
}
#vfc-apply-btn.vfc-btn-reveal {
  animation: vfc-btn-pop 0.32s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}

/* Pills inside the sheet — slightly larger for touch */
#quick-filter-panel .qf-pill {
  padding: 5px 11px !important;
  font-size: 11px !important;
  flex-shrink: 0;
}

/* Sub-modals must appear ABOVE the filter sheet (z-index:100) */
#fs-modal-sort,
#fs-modal-category,
#fs-modal-brand,
#fs-modal-store,
#fs-modal-material {
  z-index: 200 !important;
}
#color-drawer {
  z-index: 200 !important;
}

/* ══════════════════════════════════════════════════════
   COLOR DRAWER — Desktop: acts like other sub-modals
══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  #color-drawer {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    transition: opacity 0.22s ease !important;
    background: rgba(0,0,0,0.35) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1;
  }
  #color-drawer.hidden {
    display: none !important;
  }
  #color-drawer.translate-x-full {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  /* Fiecare child ia doar spațiul necesar (nu se mai întinde) */
  #color-drawer > div {
    max-width: 480px !important;
    width: 100% !important;
    background: white !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    flex: 0 0 auto !important;
    margin-top: 0 !important;
  }
  #color-drawer > div:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
  #color-drawer > div:last-child {
    border-radius: 0 0 16px 16px !important;
  }
  /* flex-1 pe conținut: nu mai crește infinit, scrollează dacă e prea mult */
  #color-drawer > .flex-1 {
    flex: 0 1 auto !important;
    max-height: 50vh !important;
    overflow-y: auto !important;
  }
  /* Buton footer: "Aplică" → "Acceptă" doar pe desktop */
  #color-drawer > div:last-child button {
    font-size: 0 !important;
  }
  #color-drawer > div:last-child button::after {
    content: "Acceptă";
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

/* ══════════════════════════════════════════════════════
   FILTER PANEL — Desktop modal (overrides fullscreen base)
══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  #quick-filter-panel {
    inset: auto !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 600px !important;
    max-width: calc(100vw - 48px) !important;
    max-height: min(80vh, 740px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 60px rgba(18,18,18,0.18) !important;
  }
  #quick-filter-panel:not(.hidden) {
    animation: vfc-desktop-drop 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  }
  @keyframes vfc-desktop-drop {
    from { opacity: 0; transform: translate(-50%, calc(-50% - 10px)); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
  }
}
.lp-hero-headline {
  font-family:'Archivo Black','Inter',sans-serif; font-weight:900; line-height:.86;
  letter-spacing:-.02em; color:rgba(245,241,233,.96); text-transform:uppercase;
  font-size:clamp(56px,11vw,170px); margin:0; text-shadow:0 6px 40px rgba(0,0,0,.35); width:100%;
}
.lp-line { display:block; }
.lp-indent { padding-left:clamp(40px,9vw,180px); }
.lp-right  { text-align:right; }
.lp-bottom-row { display:flex; align-items:flex-end; justify-content:space-between; width:100%; gap:24px; }
.lp-cta-block { pointer-events:auto; display:flex; flex-direction:column; gap:12px; max-width:38%; }
.lp-cta-block.right { align-items:flex-end; text-align:right; }
.lp-cta-eyebrow { font-size:10px; letter-spacing:.28em; text-transform:uppercase; font-weight:700; color:rgba(245,241,233,.7); line-height:1; }
.lp-cta-label { font-family:'Archivo Black','Inter',sans-serif; font-size:clamp(28px,4vw,56px); line-height:.95; letter-spacing:-.01em; color:#f5f1e9; text-transform:uppercase; font-weight:900; }
.lp-cta-meta { font-size:11px; color:rgba(245,241,233,.7); font-weight:500; letter-spacing:.04em; line-height:1.3; max-width:280px; }
.lp-cta-pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 18px 11px 20px; border-radius:999px;
  background:rgba(255,255,255,.94); color:#121212;
  font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,.4);
  transition:background .25s ease,transform .25s ease,gap .25s ease;
  text-decoration:none; width:max-content;
}
.lp-cta-pill:hover { background:#fff; transform:translateY(-1px); gap:12px; }
.lp-cta-pill .material-symbols-outlined { font-size:16px; }
.lp-cta-block.right .lp-cta-pill { align-self:flex-end; }
.lp-center-mark {
  position:absolute; left:50%; bottom:28px; transform:translateX(-50%);
  z-index:6; display:flex; align-items:center; gap:8px; color:rgba(245,241,233,.85);
}
.lp-bar  { width:32px; height:2px; background:rgba(245,241,233,.85); border-radius:2px; }
.lp-cdot { width:5px; height:5px; border-radius:999px; background:rgba(245,241,233,.85); }
.lp-stats { display:flex; align-items:stretch; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface); }
.lp-stat { flex:1; padding:22px 18px; text-align:center; border-right:1px solid var(--line); }
.lp-stat:last-child { border-right:0; }
.lp-stat-num { font-family:'Archivo Black','Inter',sans-serif; font-size:clamp(24px,3vw,36px); line-height:1; letter-spacing:-.02em; color:var(--text); }
.lp-stat-lbl { font-size:9px; margin-top:8px; letter-spacing:.22em; text-transform:uppercase; font-weight:700; color:var(--text-faint); }
.lp-about { background:var(--bg); padding:clamp(64px,9vw,120px) clamp(20px,5vw,80px); border-top:1px solid var(--line); }
.lp-about-grid { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.2fr); gap:clamp(40px,6vw,96px); align-items:start; }
.lp-about-eyebrow { font-size:10px; letter-spacing:.28em; text-transform:uppercase; font-weight:700; color:var(--text-faint); margin-bottom:18px; }
.lp-about-headline { font-family:'Archivo Black','Inter',sans-serif; font-size:clamp(40px,6vw,88px); line-height:.9; letter-spacing:-.025em; color:var(--text); text-transform:uppercase; font-weight:900; }
.lp-about-headline em { font-style:normal; color:var(--sale); }
.lp-about-lead { font-size:17px; line-height:1.55; color:var(--text); font-weight:400; max-width:56ch; margin-bottom:28px; }
.lp-about-lead strong { font-weight:700; }
.lp-feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:8px; }
.lp-feature { background:#fff; border:1px solid var(--line); padding:22px 18px 20px; border-radius:14px; box-shadow:var(--shadow-soft); }
.lp-icn { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:10px; background:#f3efe8; color:var(--text); margin-bottom:12px; }
.lp-icn .material-symbols-outlined { font-size:20px; }
.lp-feature h4 { font-size:13px; font-weight:700; letter-spacing:-.005em; color:var(--text); margin-bottom:6px; }
.lp-feature p  { font-size:12px; line-height:1.45; color:var(--text-soft); font-weight:400; }
.lp-brands { padding:36px clamp(20px,5vw,80px); background:var(--bg); border-top:1px solid var(--line); }
.lp-brands-row { max-width:1280px; margin:0 auto; display:flex; flex-wrap:wrap; gap:10px 24px; align-items:center; justify-content:center; }
.lp-brands-lbl { font-size:9px; letter-spacing:.24em; text-transform:uppercase; font-weight:700; color:var(--text-faint); margin-right:12px; }
.lp-brand-chip { font-family:'Inter',sans-serif; font-weight:700; font-size:14px; letter-spacing:.04em; color:var(--text); opacity:.55; transition:opacity .2s ease; text-decoration:none; }
.lp-brand-chip:hover { opacity:1; }
.lp-footer { padding:28px clamp(20px,5vw,80px); border-top:1px solid var(--line); background:var(--bg); font-size:11px; color:var(--text-faint); display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; }
.lp-footer a { color:var(--text-soft); text-decoration:none; }
.lp-footer a:hover { color:var(--text); }

/* ── Landing page — mobile tweaks (< 1024px) ─────────────── */
@media (max-width: 1023px) {
  .lp-hero-split  { height: 82vh; min-height: 480px; margin-top: -36px; }
  .lp-half-top    { display: none; }
  .lp-top-row     { display: none; }
  .lp-stat        { padding: 14px 8px 6px; }
  .lp-stat-num    { font-size: 26px; }
  .lp-stat-lbl    { font-size: 9px; margin-top: 5px; }
  .lp-about-grid  { grid-template-columns: 1fr; gap: 24px; }
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-about        { overflow-x: hidden; padding-top: 32px; }
  .lp-center-mark  { display: none; }
}

@media (min-width: 1024px) {
  .lp-top-row { justify-content: center; margin-top: 12px; }
  .lp-top-row .lp-top-tag:last-child { display: none; }
  .lp-top-row .lp-top-tag { font-size: 13px; letter-spacing: .28em; }
  .lp-top-row .lp-dot { width: 8px; height: 8px; }
  .lp-center-mark { display: none; }
  .lp-hero-headline { margin-top: -44px; }
}

