/* =================================================================
   BY EVA — Fashion Store
   style.css  — design system avansat (fără framework). Mobile-first.
   ================================================================= */

/* ----------------------------- TOKENS -------------------------- */
:root {
  --bg: #f6f1eb;
  --bg-2: #ffffff;
  --text: #111111;
  --text-2: #6f6a61;
  --border: #ddd4c8;
  --accent: #c8a96b;
  --accent-hover: #d8c3a5;
  --black: #0f0f0f;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 76px;

  --shadow-sm: 0 2px 10px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 16px 44px rgba(17, 17, 17, 0.12);
  --shadow-lg: 0 28px 70px rgba(17, 17, 17, 0.22);

  --ease: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  --drawer-w: 420px;
}

/* ----------------------------- RESET --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
/* Asigură că atributul `hidden` are prioritate față de regulile de display
   (clasele .pdp__layout/.pdp__notfound folosesc display:grid/flex). */
[hidden] { display: none !important; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
select { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 1.25rem;
}

::selection { background: var(--accent); color: #fff; }

/* --------------------------- BUTOANE --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.7rem; }
.btn--full { width: 100%; }
.btn--primary { background: var(--black); color: #fff; }
.btn--primary:hover { background: var(--accent); color: var(--black); }
.btn--primary:active { transform: scale(0.98); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn--outline:hover { background: var(--text); color: #fff; }
.btn--outline-gold { background: transparent; color: #fff; border-color: var(--accent); }
.btn--outline-gold:hover { background: var(--accent); color: var(--black); }
.btn--gold {
  background: var(--accent); color: #16120c; border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(200, 169, 107, 0.35);
}
.btn--gold:hover {
  background: #d9c69e; border-color: #d9c69e; color: #16120c;
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(200, 169, 107, 0.45);
}
.btn--gold:active { transform: translateY(0) scale(0.98); }
.btn__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 0; }
.btn__icon svg { display: block; }
.btn--has-icon .btn__label { line-height: 1.2; }

/* pulse la add-to-cart */
@keyframes pulse { 0% { transform: scale(1); } 40% { transform: scale(0.95); } 100% { transform: scale(1); } }
.pulse { animation: pulse 0.4s var(--ease); }

/* --------------------- ANNOUNCEMENT BAR ------------------------ */
.announcement-bar { background: var(--black); color: #f3eee6; font-size: 0.78rem; }
.announcement-bar__inner {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 0.6rem; min-height: 40px;
}
.announcement-bar__selectors {
  display: flex; align-items: center; gap: 0.9rem;
}
.selector { display: inline-flex; align-items: center; gap: 0.35rem; }
.selector__sep { color: #6b665d; }
.selector__btn {
  color: #908a80; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  transition: color var(--ease);
}
.selector__btn.is-active, .selector__btn:hover { color: var(--accent); }
.selector__divider { width: 1px; height: 14px; background: #3a3833; }

/* ----------------------------- HEADER -------------------------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg); border-bottom: 1px solid transparent;
  transition: box-shadow var(--ease), background var(--ease), border-color var(--ease);
}
.header.scrolled {
  background: rgba(246, 241, 235, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text); }
.logo__img { height: 42px; width: auto; display: block; transition: opacity var(--ease); }
.logo:hover .logo__img { opacity: 0.78; }
/* Variantă albă (logo negru transparent) pentru fundaluri închise (footer) */
.logo__img--light { filter: brightness(0) invert(1); height: 46px; }
/* Fallback text logo (dacă imaginea lipsește) */
.logo__text { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: 0.22em; }

.nav__list { display: flex; align-items: center; gap: 1.8rem; }
.nav__link {
  position: relative; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text); padding: 0.25rem 0; transition: color var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--accent); transition: width var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { width: 100%; }
.nav__close { display: none; }
.nav__head { display: none; }

/* Nav categorii + subcategorii (din admin) */
.nav__item { position: relative; list-style: none; }
.nav__item--has-sub { display: flex; align-items: center; gap: 0.15rem; }
.nav__subtoggle {
  display: none; width: 28px; height: 28px; border: 0; background: transparent;
  color: var(--text); cursor: pointer; align-items: center; justify-content: center; padding: 0;
}
.nav__sub {
  list-style: none; margin: 0; padding: 0.55rem 0; min-width: 190px;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border, #e8e2da); border-radius: 12px;
  box-shadow: 0 14px 40px rgba(44, 40, 37, 0.12); opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease 0.22s, visibility 0.16s ease 0.22s, transform 0.16s ease 0.22s;
  z-index: 40;
}
/* Pod invizibil — mouse-ul nu pierde hover între link și submeniu */
.nav__sub::before {
  content: ""; position: absolute; left: -8px; right: -8px; top: -16px; height: 16px;
}
.nav__item--has-sub:hover > .nav__sub,
.nav__item--has-sub:focus-within > .nav__sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav__sublink {
  display: block; padding: 0.55rem 1rem; font-size: 0.78rem; letter-spacing: 0.04em;
  text-transform: none; color: var(--text); white-space: nowrap;
}
.nav__sublink:hover { background: #f7f3ed; color: var(--accent); text-decoration: none; }
.nav__sublink--parent { font-weight: 600; }
.nav__subgroup { list-style: none; margin: 0; padding: 0; }
.nav__sublist { list-style: none; margin: 0.2rem 0 0.5rem 0.75rem; padding: 0; }
.nav__sublist .nav__sublink { font-size: 0.85rem; color: var(--text-2); }

/* Mega menu — desktop (stil coloane luxury) */
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}
.mega-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.mega-menu__panel {
  background: rgba(228, 232, 238, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 48px rgba(31, 27, 22, 0.1);
  padding: 2.1rem 0 2.4rem;
}
.mega-menu__grid {
  display: flex; flex-wrap: wrap; gap: 2rem 2.75rem; align-items: flex-start;
}
.mega-menu__col { flex: 0 0 auto; min-width: 110px; max-width: 185px; }
.mega-menu__col--wide { min-width: 200px; max-width: 300px; }
.mega-menu__col--lead {
  min-width: 88px; max-width: 120px; padding-right: 0.5rem;
  margin-right: 0.25rem;
  border-right: 1px solid rgba(31, 27, 22, 0.1);
}
.mega-menu__lead {
  display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); line-height: 1.35;
  margin-bottom: 0.85rem;
}
.mega-menu__lead:hover { color: var(--accent); text-decoration: none; }
.mega-menu__lead-sub {
  display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text);
}
.mega-menu__lead-sub:hover { color: var(--accent); text-decoration: none; }
.mega-menu__heading {
  margin: 0 0 0.35rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.3;
}
.mega-menu__heading a { color: var(--text); }
.mega-menu__heading a:hover { color: var(--accent); text-decoration: none; }
.mega-menu__viewall {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 0.65rem;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.mega-menu__viewall:hover { color: var(--accent); text-decoration: none; }
.mega-menu__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.mega-menu__link {
  font-size: 0.84rem; font-weight: 400; color: var(--text); line-height: 1.35;
  text-transform: none; letter-spacing: 0.01em;
}
.mega-menu__link:hover { color: var(--accent); text-decoration: none; }
.mega-menu__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.25rem;
}
.nav__item--mega.is-mega-active > .nav__link { color: var(--accent); }
.nav__item--mega.is-mega-active > .nav__link::after { width: 100%; }
.header.has-mega {
  background: rgba(246, 241, 235, 0.96);
  border-bottom-color: transparent;
  box-shadow: none;
}

.header__actions { display: flex; align-items: center; gap: 0.3rem; }
.icon-btn {
  position: relative; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); border-radius: 50%;
  transition: background var(--ease), color var(--ease);
}
.icon-btn:hover { background: rgba(200, 169, 107, 0.14); color: var(--accent); }
.icon-btn__badge {
  position: absolute; top: 0; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; color: #fff; background: var(--accent);
  border-radius: 999px; line-height: 1;
}
.icon-btn__badge[hidden] { display: none; }

.header__burger { display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.header__burger span { width: 22px; height: 2px; background: var(--text); transition: transform var(--ease), opacity var(--ease); }
.header__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------- OVERLAY --------------------------- */
.overlay {
  position: fixed; inset: 0; background: rgba(15, 15, 15, 0.45);
  opacity: 0; visibility: hidden; z-index: 110;
  transition: opacity var(--ease), visibility var(--ease);
}
.overlay.is-visible { opacity: 1; visibility: visible; }
body.is-nav-open .overlay.is-visible { z-index: 250; }
body.is-drawer-open .overlay.is-visible { z-index: 240; }
.icon-btn.is-logged { position: relative; }
.icon-btn.is-logged::after {
  content: ""; position: absolute; right: 2px; bottom: 2px; width: 7px; height: 7px;
  border-radius: 50%; background: #16a34a; border: 1.5px solid var(--bg, #fff);
}

/* ----------------------------- HERO SLIDER --------------------- */
.hero { position: relative; background: var(--black, #111); }
.hero--slider { padding: 0; }

.hero__brand-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  white-space: nowrap;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(400px, 62vh, 520px);
  overflow: hidden;
}

.hero-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease, ease), visibility 0.85s;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 22%;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.hero-slide.is-active .hero-slide__img {
  transform: scale(1);
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 8, 7, 0.88) 0%, rgba(10, 8, 7, 0.62) 38%, rgba(10, 8, 7, 0.18) 62%, rgba(10, 8, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 8, 7, 0.45) 0%, transparent 38%);
  pointer-events: none;
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-block: 1.25rem 3.25rem;
  pointer-events: none;
}

.hero-slide__inner {
  width: 100%;
  max-width: 540px;
  pointer-events: auto;
}

.badge {
  display: inline-block; padding: 0.35rem 0.85rem; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 999px; margin-bottom: 0.75rem;
}
.badge--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.hero--slider .hero__title {
  font-size: clamp(1.65rem, 5.2vw, 2.75rem);
  line-height: 1.08;
  margin: 0 0 0.6rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hero--slider .hero__subtitle {
  font-size: clamp(0.84rem, 2.2vw, 0.98rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.1rem;
  max-width: 36em;
  line-height: 1.55;
}
.hero--slider .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.hero--slider .hero__actions .btn {
  padding: 0.72rem 1.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.hero__link-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.72rem 0.25rem; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88); text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color var(--ease), border-color var(--ease);
}
.hero__link-secondary:hover { color: var(--accent); border-color: var(--accent); }
.hero__trust {
  margin: 0.85rem 0 0; max-width: 34em;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62); line-height: 1.5;
}

.hero--slider .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0.75rem 0.9rem;
  list-style: none;
  width: fit-content;
  max-width: 100%;
  background: rgba(8, 6, 5, 0.42);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius, 10px);
}
.hero--slider .hero__stats li { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.hero--slider .hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  line-height: 1;
  color: #fff;
}
.hero--slider .hero__stats span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
  pointer-events: auto;
}
.hero-slider__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-slider__nav--prev { left: 0.65rem; }
.hero-slider__nav--next { right: 0.65rem; }

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  pointer-events: auto;
}
.hero-slider__dot {
  width: 28px;
  height: 3px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.hero-slider__dot.is-active {
  background: #fff;
  transform: scaleX(1.12);
}

.hero__scroll {
  display: none;
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  z-index: 6;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
}
.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(10px); }
}

/* Hero slider — tablet */
@media (min-width: 768px) {
  .hero-slider {
    height: clamp(380px, 50vh, 460px);
  }
  .hero-slide__img { object-position: 72% 18%; }
  .hero-slide__content { padding-block: 1.5rem 2.75rem; }
  .hero-slide__shade {
    background:
      linear-gradient(90deg, rgba(10, 8, 7, 0.86) 0%, rgba(10, 8, 7, 0.5) 36%, rgba(10, 8, 7, 0.12) 58%, transparent 100%),
      linear-gradient(0deg, rgba(10, 8, 7, 0.35) 0%, transparent 35%);
  }
  .hero--slider .hero__title { max-width: none; }
  .hero-slider__nav { width: 42px; height: 42px; }
  .hero-slider__nav--prev { left: 1rem; }
  .hero-slider__nav--next { right: 1rem; }
  .hero-slider__dots { bottom: 1rem; }
  .hero__scroll { display: block; }
}

/* Hero slider — desktop */
@media (min-width: 1024px) {
  .hero-slider {
    height: clamp(360px, 44vh, 440px);
  }
  .hero__brand-mark {
    font-size: clamp(2.75rem, 4.8vw, 4.5rem);
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
  .hero-slide__inner { max-width: 580px; }
  .hero--slider .hero__title { font-size: clamp(1.45rem, 2.2vw, 1.85rem); }
  .hero--slider .hero__subtitle { font-size: 1rem; max-width: 36em; }
  .hero-slider__nav--prev { left: 1.25rem; }
  .hero-slider__nav--next { right: 1.25rem; }
}

/* ---------------------- SALE PROMO BANNER ---------------------- */
.sale-promo {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-align: center;
}
.sale-promo__bg {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.55;
}
.sale-promo__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem clamp(2rem, 4vw, 3rem);
}
.sale-promo__head {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  margin-bottom: 1.35rem;
}
.sale-promo__head:hover { opacity: 0.92; }
.sale-promo__title {
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
.sale-promo__subtitle {
  margin: 0.65rem 0 0;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  font-weight: 500;
  opacity: 0.95;
}
.sale-promo__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 920px;
  margin: 0 auto;
}
.sale-promo__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background .18s, border-color .18s, color .18s;
  background: transparent;
}
.sale-promo__chip:hover,
.sale-promo__chip.is-active {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.sale-promo__chip--all {
  font-weight: 600;
}
.sale-promo__terms {
  margin: 1.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.72;
}

.sale-strip {
  width: 100%;
  background: #0a0a0a;
}
.sale-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 0;
}
.sale-strip__item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 0;
  background: #111;
}
.sale-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}
.sale-strip__item:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
}
@media (max-width: 767px) {
  .sale-strip__item:hover img {
    transform: none;
    filter: none;
  }
}

/* ---------------------- PAGE HERO (catalog & shop pages) -------- */
.page-hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.75rem) 0 clamp(1.85rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(200, 169, 107, 0.12), transparent 70%),
    linear-gradient(180deg, #fdfaf6 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.35), transparent);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 40rem;
}
.page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 7.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--text);
}
.page-hero__subtitle {
  margin: 1.05rem 0 0;
  max-width: 38ch;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-2);
  font-weight: 400;
}
.page-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.42rem 0.9rem 0.42rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(221, 212, 200, 0.85);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.page-hero__meta::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.page-hero__meta:empty { display: none; }

.page-hero--center { text-align: center; }
.page-hero--center .page-hero__inner {
  max-width: 44rem;
  margin-inline: auto;
}
.page-hero--center .page-hero__subtitle { margin-inline: auto; }

.page-hero--dark {
  color: #fff;
  background:
    radial-gradient(ellipse 70% 55% at 50% -15%, rgba(200, 169, 107, 0.18), transparent 65%),
    linear-gradient(180deg, #1a1816 0%, #111 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.page-hero--dark .page-hero__title { color: #fff; }
.page-hero--dark .page-hero__subtitle { color: rgba(255, 255, 255, 0.72); }
.page-hero--dark .page-hero__meta {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.page-hero--dark::after {
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.45), transparent);
}

.page-hero--cat .page-hero__inner { max-width: none; }
.page-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
}
.page-hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}
.page-hero--cat .page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}
.page-hero--cat .page-hero__meta {
  margin-top: 0;
  flex-shrink: 0;
}

.page-hero--cms {
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}
.page-hero--cms .page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-subhead {
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}
.page-subhead__back {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  cursor: pointer;
  transition: color var(--ease);
}
.page-subhead__back:hover { color: var(--text); }
.page-subhead__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-subhead__meta {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.sale-page__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}
.sale-page__shop .shop-toolbar {
  margin-bottom: 1.25rem;
}

.new-in-page__shop .shop-toolbar {
  margin-bottom: 1.25rem;
}

.designers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.designers-card {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-2, #fff);
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 1rem 1.05rem;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.designers-card:hover {
  border-color: var(--text);
  background: #fff;
  transform: translateY(-2px);
}
.designers-card__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}
.designers-card__count {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.designers-page__shop .shop-toolbar {
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .designers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .designers-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}

/* ---------------------- USP / TRUST STRIP ---------------------- */
.anchor-alias { display: block; height: 0; }
#products, #topProducts, #shopCats, #homeCategoryRows, #testimonials, #newsletter, #homeSocial {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.usp-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  padding-block: 1rem;
}
.usp-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.usp-strip__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.28);
  border-radius: 50%;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.usp-strip__item:hover .usp-strip__icon {
  background: var(--accent); color: #16120c; transform: translateY(-2px);
}
.usp-strip__text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.usp-strip__text strong {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text); line-height: 1.3;
}
.usp-strip__text span {
  font-size: 0.72rem; color: var(--text-2); line-height: 1.35;
}

/* --------------------------- MARQUEE --------------------------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border);
  background: var(--black); padding: 0.75rem 0;
}
.marquee__track { display: inline-flex; gap: 2.75rem; white-space: nowrap; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------- SHOP BY CATEGORY (cercuri) ----------------- */
.shop-cats {
  padding: 2.4rem 0 2rem;
  background: var(--bg);
}
.shop-cats__head { text-align: center; margin-bottom: 1.5rem; }
.shop-cats__head .section__eyebrow { margin-bottom: 0.4rem; }
.shop-cats__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.01em;
}
.shop-cats__scroller { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.shop-cats__scroller::-webkit-scrollbar { display: none; }
.shop-cats__track {
  display: flex;
  gap: 1.05rem;
  width: max-content;
  min-width: 100%;
  justify-content: flex-start;
  padding: 0.3rem max(1.25rem, calc((100vw - var(--container)) / 2 + 1.25rem)) 0.6rem;
}
.cat-bubble {
  flex: 0 0 auto;
  width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  text-align: center;
}
.cat-bubble__ring {
  position: relative;
  width: 96px; height: 96px;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.cat-bubble__img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}
.cat-bubble:hover .cat-bubble__ring {
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.14);
  transform: translateY(-4px);
}
.cat-bubble:hover .cat-bubble__img { transform: scale(1.07); }
.cat-bubble__name {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; line-height: 1.25;
}
.cat-bubble__count {
  margin-top: -0.35rem;
  font-size: 0.68rem; color: var(--text-2); letter-spacing: 0.02em;
}

/* ---------------------- TOP PICKS CAROUSEL --------------------- */
.top-picks {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: var(--bg);
}
.top-picks__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.top-picks__intro {
  max-width: 30ch;
  padding-right: 0.5rem;
}
.top-picks__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
}
.top-picks__text {
  margin: 0 0 1.35rem;
  color: var(--text-2);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 28ch;
}
.top-picks__cta {
  min-width: 0;
  width: fit-content;
  justify-self: center;
  margin-top: -0.35rem;
  padding: 0.58rem 1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  border-width: 1px;
  background: transparent;
  color: var(--text);
  border-color: var(--text);
  box-shadow: none;
  transform: none;
}
.top-picks__cta:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  transform: none;
}
.top-picks__cta:active {
  transform: scale(0.98);
}
.top-picks__slider {
  min-width: 0;
  width: 100%;
}
.top-picks__wrap {
  position: relative;
}
.top-picks__track {
  --top-picks-gap: 0.45rem;
  --top-picks-visible: 2;
  display: flex;
  gap: var(--top-picks-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  min-width: 0;
}
.top-picks__track::-webkit-scrollbar { display: none; }
.top-pick {
  flex: 0 0 calc((100% - (var(--top-picks-visible) - 1) * var(--top-picks-gap)) / var(--top-picks-visible));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.top-pick__media {
  display: flex;
  align-items: center;
  justify-content: center;
  /* aspect-ratio: 3 / 4; */
  /* background: #efefef; */
  overflow: hidden;
  padding: clamp(0.65rem, 1.5vw, 1rem);
}
.top-pick__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.55s var(--ease), opacity 0.35s var(--ease);
}
.top-pick:hover .top-pick__img { transform: scale(1.03); }
.top-pick__brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  padding: 0.45rem 0.25rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
}
.top-picks__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 2px 10px rgba(15, 15, 15, 0.08);
  transition: border-color var(--ease), background var(--ease), color var(--ease), opacity var(--ease), transform var(--ease);
}
.top-picks__nav:hover:not(:disabled) {
  border-color: var(--text);
  background: #fff;
}
.top-picks__nav:disabled,
.top-picks__nav.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.top-picks__nav--prev { left: 0.35rem; }
.top-picks__nav--next { right: 0.35rem; }

/* -------------------- CATEGORY ROWS (homepage) ----------------- */
.cat-row {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}
.cat-row:nth-child(odd) {
  background: var(--bg-2, #fff);
  border-bottom: 1px solid var(--border);
}
.cat-row:nth-child(even) {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.cat-row__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: center;
}
.cat-row__products {
  order: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-row__visual {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.cat-row:not(.cat-row--reverse) .cat-row__visual { justify-content: flex-end; }
.cat-row--reverse .cat-row__visual { justify-content: flex-start; }
.cat-row--reverse .cat-row__products { order: 2; }
.cat-row--reverse .cat-row__visual { order: 1; }
.cat-row__slider {
  position: relative;
}
.cat-row__track {
  --cat-row-gap: 0.45rem;
  --cat-row-visible: 2;
  display: flex;
  gap: var(--cat-row-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
  padding: 0.15rem 0;
}
.cat-row__track::-webkit-scrollbar { display: none; }
.cat-row__track .top-pick {
  flex: 0 0 calc((100% - (var(--cat-row-visible) - 1) * var(--cat-row-gap)) / var(--cat-row-visible));
  scroll-snap-align: start;
  min-width: 0;
}
.cat-row__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 2px 10px rgba(15, 15, 15, 0.08);
  transition: border-color var(--ease), background var(--ease), opacity var(--ease);
}
.cat-row__nav:hover:not(:disabled) {
  border-color: var(--text);
  background: #fff;
}
.cat-row__nav:disabled,
.cat-row__nav.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.cat-row__nav--prev { left: -0.15rem; }
.cat-row__nav--next { right: -0.15rem; }
.cat-row__visual .cat-row__media {
  position: relative;
  width: min(100%, 360px);
  max-width: 360px;
  max-height: 450px;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
  background: #111;
}
.cat-row__visual .cat-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
  transition: transform 0.85s var(--ease), opacity 0.35s var(--ease);
}
.cat-row__visual:hover .cat-row__media img {
  transform: scale(1.05);
  opacity: 1;
}
.cat-row__visual .cat-row__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem 1.25rem 1.35rem;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.78) 100%);
  transition: color var(--ease);
}
.cat-row__visual:hover .cat-row__title { color: var(--accent); }
.cat-row__more-wrap {
  margin: 1rem 0 0;
  text-align: left;
}
.cat-row__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--text);
  background: transparent;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.cat-row__more:hover {
  color: #fff;
  background: var(--text);
  border-color: var(--text);
}

/* Card compact — stil referință */
.product-card--compact {
  background: var(--bg-2);
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.product-card--compact:hover {
  transform: none;
  box-shadow: none;
}
.product-card--compact .product-card__media {
  aspect-ratio: 1 / 1;
  background: #ece7df;
}
.product-card--compact .product-card__quick { display: none; }
.product-card--compact .product-card__body {
  padding: 0.85rem 0.65rem 1rem;
  text-align: center;
  gap: 0.25rem;
  position: relative;
}
.product-card--compact .product-card__name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}
.product-card--compact .product-card__price {
  font-size: 0.82rem;
  margin: 0;
}
.product-card--compact .product-card__view { display: none; }
.product-card--compact .product-card__bag {
  position: absolute;
  right: 0.5rem;
  bottom: 0.65rem;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: color var(--ease), transform var(--ease);
}
.product-card--compact .product-card__bag:hover {
  color: var(--accent);
  transform: scale(1.08);
}
.product-card--compact .product-card__like {
  width: 32px;
  height: 32px;
  top: 0.65rem;
  right: 0.65rem;
}

/* ------------------ SOCIAL / INSTAGRAM GALLERY ------------------ */
.insta {
  padding: 2.75rem 0 2.5rem;
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}
.insta__head { text-align: center; margin-bottom: 1.6rem; }
.insta__head .section__eyebrow { margin-bottom: 0.4rem; }
.insta__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.01em;
}
.insta__subtitle {
  margin: 0;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-2);
}
.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.insta__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #ece4d6, #d8c3a5);
}
.insta__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.insta__item:hover img { transform: scale(1.06); }
.insta__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(15, 13, 10, 0.42);
  opacity: 0;
  transition: opacity var(--ease);
}
.insta__item:hover .insta__overlay { opacity: 1; }
.insta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.insta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--text);
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.insta__btn:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

/* ------------------------- SECTION helpers --------------------- */
.section { padding: var(--space-xl) 0; }
.section--alt { background: var(--bg-2); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto var(--space-lg); }
.section__eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.section__subtitle { color: var(--text-2); }
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; max-width: 640px; }
.section--collections {
  padding: calc(var(--space-xl) + 1rem) 0 calc(var(--space-xl) + 0.5rem);
  background: var(--bg);
}
.section--collections .container { max-width: min(1320px, 100%); }
.section--collections .section__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* -------------------------- CATEGORII -------------------------- */
.category-grid,
.category-groups { display: flex; flex-direction: column; gap: 2rem; }

/* Colecții homepage — editorial luxe (fără grid dens de subcategorii) */
.category-luxe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.category-luxe__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.category-luxe__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(380px, 56vh, 680px);
  background: linear-gradient(145deg, #e8dfd2, #c9baa3);
}
.category-luxe__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-luxe__card:hover .category-luxe__media img { transform: scale(1.05); }
.category-luxe__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 6, 5, 0.82) 0%, rgba(8, 6, 5, 0.28) 42%, rgba(8, 6, 5, 0.06) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.category-luxe__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.category-luxe__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.65rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.category-luxe__cta {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.65);
  transition: color var(--ease), border-color var(--ease);
}
.category-luxe__media:hover .category-luxe__cta {
  color: #fff;
  border-color: #fff;
}
.category-luxe__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  padding: 0 0.15rem;
}
.category-luxe__chip {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--ease);
}
.category-luxe__chip:hover { color: var(--text); }
.category-group--solo { display: block; }
.category-showcase { display: flex; flex-direction: column; gap: 1.25rem; }
.category-showcase__row {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem; align-items: stretch;
}
.category-showcase__lead {
  grid-column: 1; grid-row: 1 / -1;
  display: flex; width: clamp(145px, 22vw, 240px); min-height: 0;
}
.category-showcase__lead .category-card--showcase-parent { width: 100%; height: 100%; }
.category-showcase__panel {
  grid-column: 2; grid-row: 1 / -1;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem; align-content: stretch; min-height: 0; overflow: hidden;
}
/* Max 2 rânduri: 2×2 mobil, 3×2 tabletă, 4×2 desktop */
.category-showcase__panel > .category-card--showcase-sub:nth-child(n+5) { display: none; }
.category-card {
  position: relative; display: block; text-decoration: none; color: inherit;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3 / 4; background: linear-gradient(135deg, #e7ddcd, #cbbfa8); cursor: pointer;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.category-card:hover img { transform: scale(1.07); }
.category-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end; gap: 0.6rem; padding: 1.5rem;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.62) 0%, rgba(15, 15, 15, 0) 68%);
}
.category-card__title { color: #fff; font-size: 1.7rem; margin: 0; }
.category-card__cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; padding-bottom: 2px; border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: color var(--ease), border-color var(--ease); text-decoration: none;
}
.category-card:hover .category-card__cta,
.category-card__cta:hover { color: var(--accent); border-color: var(--accent); }
.category-card--showcase-parent {
  aspect-ratio: auto; max-height: none; min-height: 0;
  transition: box-shadow var(--ease), transform var(--ease);
}
.category-card--showcase-parent .category-card__overlay { padding: 1rem 1.1rem; gap: 0.4rem; }
.category-card--showcase-parent .category-card__title {
  font-size: clamp(1rem, 1.65vw, 1.45rem);
}
.category-card--showcase-parent .category-card__cta { font-size: 0.65rem; }
.category-card--showcase-sub { aspect-ratio: 1 / 1; border-radius: 12px; }
.category-card--showcase-sub .category-card__overlay {
  padding: 0.55rem 0.65rem;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.72) 0%, rgba(15, 15, 15, 0) 72%);
}
.category-card--showcase-sub .category-card__title { font-size: 0.78rem; line-height: 1.2; }
.category-card--solo { aspect-ratio: 16 / 10; }

/* ------------------------ SHOP TOOLBAR ------------------------- */
.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: var(--space-lg);
}
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filters__btn {
  padding: 0.5rem 1.1rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-2); border: 1px solid var(--border); border-radius: 999px;
  transition: all var(--ease);
}
.filters__btn:hover { border-color: var(--accent); color: var(--text); }
.filters__btn.is-active { background: var(--black); color: #fff; border-color: var(--black); }
.sort { display: flex; align-items: center; gap: 0.5rem; }
.sort__label { font-size: 0.8rem; color: var(--text-2); }
.sort__select {
  padding: 0.5rem 2rem 0.5rem 0.9rem; font-size: 0.8rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236f6a61' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center;
}
.sort__select:focus { outline: none; border-color: var(--accent); }

/* --------------------------- PRODUSE --------------------------- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.product-empty { text-align: center; color: var(--text-2); padding: var(--space-lg) 0; }
.shop-more { margin-top: 1.75rem; text-align: center; }
.shop-more__label { margin: 0 0 0.85rem; color: var(--text-2); font-size: 0.9rem; }
.shop-more__links { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.shop-more__btn { min-width: 9rem; justify-content: center; }
.product-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(135deg, #ece4d6, #d8c3a5);
}
.product-card__link { position: relative; display: block; width: 100%; height: 100%; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.07); }
/* A doua imagine din galerie, afișată la hover (cross-fade) */
.product-card__img-alt {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.6s var(--ease);
}
.product-card:hover .product-card__img-alt { opacity: 1; }
@media (hover: none) {
  .product-card__img-alt { display: none; }
}
.product-card__name-link { transition: color var(--ease); }
.product-card__name-link:hover { color: var(--accent); }
.product-card__badge {
  position: absolute; top: 0.9rem; left: 0.9rem; padding: 0.3rem 0.7rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--accent); border-radius: var(--radius);
}
.product-card__badge--sale { background: var(--black); color: #fff; }
.product-card__like {
  position: absolute; top: 0.9rem; right: 0.9rem; width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); background: rgba(255, 255, 255, 0.9); border-radius: 50%;
  transition: color var(--ease), background var(--ease), transform var(--ease);
}
.product-card__like:hover { transform: scale(1.1); }
.product-card__like.is-active { color: #c0392b; }
.product-card__like.is-active svg { fill: #c0392b; }
.product-card__quick {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text); background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius); opacity: 0; transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease), color var(--ease);
}
.product-card__quick .btn__icon svg { width: 15px; height: 15px; }
.product-card__quick:hover { background: var(--black); color: #fff; }
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.1rem 1.1rem 1.3rem; }
.product-card__name { font-size: 1.25rem; font-weight: 500; }
.product-card__price { font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; margin-bottom: 0.4rem; }
.price__now--sale { color: #ac3a32; }
.price__old { color: var(--text-2); font-weight: 400; text-decoration: line-through; font-size: 0.86rem; }

/* --------------------------- EDITORIAL ------------------------- */
.editorial { padding: var(--space-xl) 0; background: var(--bg); }
.editorial__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-md); align-items: center; }
.editorial__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(135deg, #e7ddcd, #cbbfa8); }
.editorial__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.editorial__media:hover img { transform: scale(1.05); }
.editorial__title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0.4rem 0 1rem; }
.editorial__text { color: var(--text-2); margin-bottom: var(--space-md); max-width: 460px; }
.editorial--feature { padding: 2rem 0; background: var(--bg-2); }
.editorial--feature .editorial__inner { gap: 2rem; }
.editorial--feature .editorial__media { aspect-ratio: 3 / 4; border-radius: 0; }
.editorial--feature .editorial__content { padding-inline: 0.25rem; }

/* ------------------------- LUXURY BANNER ----------------------- */
.luxury-banner {
  position: relative; overflow: hidden;
  background: var(--black); color: #fff; padding: var(--space-xl) 0;
}
.luxury-banner--visual { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.luxury-banner__bg {
  position: absolute; inset: 0; z-index: 0;
}
.luxury-banner__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  transform: scale(1.02); transition: transform 8s ease;
}
.luxury-banner--visual:hover .luxury-banner__bg img { transform: scale(1.06); }
.luxury-banner__shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.88) 0%, rgba(8, 6, 5, 0.55) 45%, rgba(8, 6, 5, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 6, 5, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.luxury-banner__inner {
  position: relative; z-index: 2;
  text-align: left; max-width: 560px; margin: 0;
}
.luxury-banner__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.luxury-banner__title { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 0.85rem; color: #fff; }
.luxury-banner__text {
  margin: 0 0 1.35rem; max-width: 42ch;
  font-size: 0.95rem; line-height: 1.65; color: rgba(255, 255, 255, 0.78);
}

/* ---------------------- HOMEPAGE SHOP LUXE --------------------- */
.home-shop .shop-toolbar--home {
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.home-shop__sort { display: none; }
.home-shop .filters__btn {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 1rem; background: transparent;
}
.home-shop .filters__btn.is-active {
  background: transparent; color: var(--text);
  border-color: var(--text); font-weight: 600;
}
.home-shop__grid { gap: 2rem 1.5rem; }
.home-shop .shop-more { margin-top: 2.25rem; }
.home-shop .shop-more__label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.home-shop .product-card--luxury {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.home-shop .product-card--luxury:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.home-shop .product-card--luxury .product-card__media {
  border-radius: 0;
  aspect-ratio: 4 / 5;
}
.home-shop .product-card--luxury .product-card__body {
  padding: 1.1rem 0 0;
  text-align: center;
  gap: 0.35rem;
}
.home-shop .product-card--luxury .product-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.25;
}
.home-shop .product-card--luxury .product-card__price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 0.15rem;
}
.product-card__view {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--text);
  transition: color var(--ease), border-color var(--ease);
}
.product-card__view:hover { color: var(--accent); border-color: var(--accent); }

/* --------------------------- BENEFICII ------------------------- */
.benefits__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; }
.benefit { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.benefit__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px;
  color: var(--accent); border: 1px solid var(--border); border-radius: 50%; margin-bottom: 0.4rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.benefit:hover .benefit__icon { background: var(--accent); color: #fff; transform: translateY(-4px); }
.benefit__title { font-size: 1.3rem; }
.benefit__text { color: var(--text-2); font-size: 0.92rem; max-width: 220px; }

/* -------------------------- TESTIMONIALE ----------------------- */
.testimonials {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 169, 98, 0.09), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(201, 169, 98, 0.06), transparent 30%),
    var(--bg-2);
}
.testimonials__intro {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  align-items: end; margin-bottom: var(--space-lg);
}
.testimonials__head { max-width: 640px; }
.testimonials__head .section__title { margin-bottom: 0.65rem; text-align: left; }
.testimonials__head .section__eyebrow { margin-bottom: 0.75rem; }
.testimonials__lead {
  margin: 0; color: var(--text-2); font-size: 1rem; line-height: 1.65; max-width: 52ch;
}
.testimonials__rating {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.testimonials__score {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: var(--text); letter-spacing: -0.02em;
}
.testimonials__rating-meta { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.testimonials__rating-stars { display: flex; gap: 0.2rem; color: var(--accent); }
.testimonials__star { display: block; }
.testimonials__rating-meta > span {
  font-size: 0.78rem; color: var(--text-2); letter-spacing: 0.02em; line-height: 1.4;
}
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.testimonial {
  position: relative; overflow: hidden;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem 1.4rem; display: flex; flex-direction: column; gap: 0.95rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.testimonial::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.testimonial:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201, 169, 98, 0.35);
}
.testimonial:hover::after { opacity: 1; }
.testimonial__top {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.testimonial__quote { color: rgba(201, 169, 98, 0.22); line-height: 0; flex-shrink: 0; }
.testimonial__stars { display: flex; gap: 0.18rem; color: var(--accent); }
.testimonial__star { display: block; }
.testimonial__text {
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.5;
  color: var(--text); margin: 0; flex: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 0.85rem;
  margin-top: auto; padding-top: 0.35rem;
}
.testimonial__avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text); background: linear-gradient(145deg, #f7f3ed, #ebe3d6);
  border: 1px solid var(--border); border-radius: 50%;
}
.testimonial__meta { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.testimonial__name {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text);
}
.testimonial__verified {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent);
}
/* Mobil: testimonialele devin slider orizontal cu snap */
@media (max-width: 767px) {
  .testimonials__grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem 0.15rem 0.85rem;
    margin-inline: -0.15rem;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonial {
    flex: 0 0 min(86%, 340px);
    scroll-snap-align: center;
  }
}

/* -------------------------- NEWSLETTER ------------------------- */
.newsletter {
  padding: var(--space-xl) 0 calc(var(--space-xl) + 0.5rem);
  background: var(--bg);
}
.newsletter__panel {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, #121110 0%, #1a1815 48%, #14120f 100%);
  border: 1px solid #2c2a26;
  box-shadow: var(--shadow-lg);
}
.newsletter__glow {
  position: absolute; inset: -20% auto auto -10%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.22), transparent 68%);
  pointer-events: none;
}
.newsletter__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.newsletter__copy { color: #f3eee6; }
.newsletter__badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem; margin-bottom: 0.9rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.28); border-radius: 999px;
}
.newsletter__title {
  font-size: clamp(1.9rem, 4vw, 2.65rem); margin: 0 0 0.7rem; color: #fff;
}
.newsletter__subtitle {
  margin: 0 0 1.15rem; color: #b8b0a4; font-size: 0.98rem; line-height: 1.6; max-width: 46ch;
}
.newsletter__perks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.newsletter__perks li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.86rem; color: #d7d1c7;
}
.newsletter__perks li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.newsletter__action {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.35rem; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.newsletter__form { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.85rem; }
.newsletter__field {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.2rem 0.2rem 0.2rem 0.95rem;
  background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius); transition: border-color var(--ease), box-shadow var(--ease);
}
.newsletter__field:focus-within {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.18);
}
.newsletter__field-icon { color: #8d877d; line-height: 0; flex-shrink: 0; }
.newsletter__input {
  flex: 1; min-width: 0; padding: 0.8rem 0.4rem 0.8rem 0;
  font-size: 0.95rem; color: var(--text); background: transparent; border: 0;
}
.newsletter__input:focus { outline: none; }
.newsletter__input.is-error { color: #c0392b; }
.newsletter__submit { width: 100%; }
.newsletter__submit:hover { background: var(--accent); color: var(--black); }
.newsletter__gdpr {
  margin: 0; font-size: 0.74rem; color: #8d877d; line-height: 1.55; text-align: center;
}
.newsletter__gdpr a { color: #cfc9bf; text-decoration: underline; text-underline-offset: 2px; }
.newsletter__gdpr a:hover { color: var(--accent); }

/* ----------------------------- FOOTER -------------------------- */
.footer { background: var(--black); color: #cfc9bf; }
.footer__trust {
  border-bottom: 1px solid #2c2a26;
  background: linear-gradient(180deg, #141311 0%, var(--black) 100%);
}
.footer__trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  padding: 1.35rem 1.25rem;
}
.footer__trust-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.65rem 0.75rem; border-radius: var(--radius);
  transition: background var(--ease);
}
.footer__trust-item:hover { background: rgba(255, 255, 255, 0.03); }
.footer__trust-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent); background: rgba(201, 169, 98, 0.1); border-radius: 50%;
}
.footer__trust-text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.footer__trust-text strong { font-size: 0.88rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.footer__trust-text span { font-size: 0.8rem; color: #8d877d; line-height: 1.4; }
.footer__main { padding: var(--space-xl) 0 var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-inline: 1.25rem; }
.logo--footer .logo__img { height: 38px; }
.logo--footer .logo__text { color: #fff; }
.footer__tagline { margin: 0.85rem 0 1rem; color: #948e84; font-size: 0.92rem; line-height: 1.55; max-width: 28ch; }
.footer__contact {
  list-style: none; margin: 0 0 1.1rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.footer__contact li { font-size: 0.86rem; color: #948e84; line-height: 1.45; }
.footer__contact a { color: #cfc9bf; transition: color var(--ease); }
.footer__contact a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 0.7rem; }
.footer__social-link {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  color: #cfc9bf; border: 1px solid #2c2a26; border-radius: 50%;
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}
.footer__social-link:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__title {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.1rem;
}
.footer__list { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__list a { font-size: 0.9rem; color: #948e84; transition: color var(--ease); }
.footer__list a:hover { color: var(--accent); }
.footer__newsletter-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  width: 100%; padding: 0.82rem 1rem;
  font: inherit; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #16120c; background: var(--accent); border: 1px solid var(--accent); border-radius: 999px;
  cursor: pointer; transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
  box-shadow: 0 8px 22px rgba(200, 169, 107, 0.18);
}
.footer__newsletter-btn:hover { background: #d4b87a; border-color: #d4b87a; transform: translateY(-1px); }
.footer__newsletter-btn__icon { display: inline-flex; line-height: 0; }
.footer__col--newsletter { display: flex; flex-direction: column; }
.footer__bottom { border-top: 1px solid #2c2a26; padding: 1.15rem 0; background: #11100e; }
.footer__bottom-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; text-align: center; padding-inline: 1.25rem;
}
.footer__copy { margin: 0; font-size: 0.8rem; color: #8d877d; }
.footer__legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.35rem 0.9rem;
}
.footer__legal a {
  font-size: 0.78rem; color: #7c766c; transition: color var(--ease);
  white-space: nowrap;
}
.footer__legal a:hover { color: var(--accent); }
.footer--compact .footer__trust,
.footer--compact .footer__main { display: none; }

/* --------------------------- BACK TO TOP ----------------------- */
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: var(--black); border-radius: 50%; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease), background var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }

/* --------------------- BARĂ MOBILĂ FIXĂ ------------------------ */
/* Ascunsă pe desktop; afișată ca tab bar pe mobil (vezi media query). */
.mobile-bar { display: none; }

/* ---------------------------- DRAWERS -------------------------- */
.drawer {
  position: fixed; top: 0; right: 0; z-index: 250;
  width: 100%; max-width: var(--drawer-w); height: 100%;
  background: var(--bg-2); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border);
}
.drawer__title { font-size: 1.4rem; display: flex; align-items: baseline; gap: 0.4rem; }
.drawer__count { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-2); }
.drawer__close { font-size: 1.8rem; line-height: 1; color: var(--text); transition: color var(--ease); }
.drawer__close:hover { color: var(--accent); }
.drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; min-height: 0; }
.drawer__body:empty { display: none; }
.drawer__empty {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; text-align: center; color: var(--text-2); min-height: 0;
}
.drawer__empty[hidden] { display: none; }
.drawer__foot { padding: 1.3rem 1.5rem; border-top: 1px solid var(--border); }
.drawer__foot[hidden] { display: none; }
.drawer__total { display: flex; align-items: center; justify-content: space-between; font-size: 1.05rem; margin-bottom: 0.4rem; }
.drawer__total strong { font-family: var(--font-display); font-size: 1.4rem; }
.drawer__note { font-size: 0.78rem; color: var(--text-2); margin-bottom: 1rem; }

/* Linie produs (coș / wishlist) */
.line { display: grid; grid-template-columns: 70px 1fr auto; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.line:last-child { border-bottom: none; }
.line__img { width: 70px; height: 70px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); background: var(--bg); flex-shrink: 0; }
.line__info { display: flex; flex-direction: column; gap: 0.3rem; }
.line__name { font-size: 1.05rem; font-weight: 500; }
.line__size { font-size: 0.76rem; color: var(--text-2); }
.line__price { font-size: 0.9rem; font-weight: 600; }
.line__qty { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: auto; }
.line__qty button {
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem;
  transition: border-color var(--ease), background var(--ease);
}
.line__qty button:hover { border-color: var(--accent); background: var(--bg); }
.line__qty span { min-width: 18px; text-align: center; font-size: 0.9rem; }
.line__remove { align-self: flex-start; font-size: 1.3rem; line-height: 1; color: var(--text-2); transition: color var(--ease); }
.line__remove:hover { color: #c0392b; }

/* --------------------------- SEARCH ---------------------------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 250; background: var(--bg);
  padding-top: 1.5rem; opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  overflow-y: auto;
}
.search-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-overlay__bar {
  display: flex; align-items: center; gap: 0.8rem; color: var(--text-2);
  border-bottom: 1px solid var(--border); padding-bottom: 1rem;
}
.search-overlay__input {
  flex: 1; font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--text); background: transparent; border: none;
}
.search-overlay__input:focus { outline: none; }
.search-overlay__close { font-size: 2rem; line-height: 1; color: var(--text); transition: color var(--ease); }
.search-overlay__close:hover { color: var(--accent); }
.search-overlay__panel { padding-bottom: 3rem; }
.search-overlay__hint { padding: 2rem 0; color: var(--text-2); }

/* Secțiuni (populare, categorii, recomandate, toate) */
.search-section { padding: 1.6rem 0; border-bottom: 1px solid var(--border); }
.search-section:last-child { border-bottom: none; }
.search-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; margin-bottom: 1rem; }
.search-section__title {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 1rem;
}
.search-section__head .search-section__title { margin-bottom: 0; }
.search-section__count { font-size: 0.8rem; color: var(--text-2); }

/* Chips */
.search-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.search-chip {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.95rem;
  font-size: 0.85rem; color: var(--text); background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 999px; transition: all var(--ease);
}
.search-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.search-chip__icon { color: var(--accent); font-size: 0.8rem; }
.search-chip--cat { font-weight: 500; }
.search-chip__count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px;
  padding: 0 5px; font-size: 0.7rem; font-weight: 600; color: var(--text-2);
  background: var(--bg); border-radius: 999px;
}
.search-chip:hover .search-chip__count { color: var(--accent); }

/* Grid rezultate / recomandate / toate */
.search-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
.search-result {
  display: flex; align-items: center; gap: 1rem; padding: 0.7rem; text-align: left; width: 100%;
  border: 1px solid transparent; border-radius: var(--radius-lg);
  color: inherit; text-decoration: none; cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.search-result:hover { background: var(--bg-2); border-color: var(--border); transform: translateX(2px); }
.search-result img { width: 56px; height: 56px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; background: var(--bg-2); }
.search-result__info { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; min-width: 0; }
.search-result__cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.search-result__info strong { font-weight: 500; font-size: 1rem; }
.search-result__price { font-size: 0.85rem; color: var(--text-2); font-weight: 600; }
.search-result__arrow { color: var(--text-2); font-size: 1.4rem; transition: transform var(--ease), color var(--ease); }
.search-result:hover .search-result__arrow { transform: translateX(3px); color: var(--accent); }
.search-result mark { background: rgba(200, 169, 107, 0.32); color: inherit; border-radius: 2px; padding: 0 1px; }
.search-overlay__noresults { padding: 1rem 0 0.5rem; color: var(--text-2); font-size: 0.95rem; }
.search-overlay__noresults strong { color: var(--text); }

/* ---------------------------- MODAL ---------------------------- */
.modal { position: fixed; inset: 0; z-index: 140; display: flex; align-items: center; justify-content: center; padding: 1.25rem;
  opacity: 0; visibility: hidden; transition: opacity var(--ease), visibility var(--ease); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15, 15, 15, 0.55); }
.modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 860px; max-height: 90vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr; background: var(--bg-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); transform: translateY(16px); transition: transform var(--ease);
}
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__close {
  position: absolute; top: 0.8rem; right: 0.9rem; z-index: 2; width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem;
  color: var(--text); background: rgba(255, 255, 255, 0.85); border-radius: 50%; transition: background var(--ease);
}
.modal__close:hover { background: var(--accent); color: #fff; }
.modal__media { aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, #ece4d6, #d8c3a5); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__content { padding: 1.8rem; overflow-y: auto; }
.modal__cat { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.modal__name { font-size: 1.9rem; margin: 0.3rem 0; }
.modal__price { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.9rem; }
.modal__desc { color: var(--text-2); margin-bottom: 1.2rem; }
.modal__sizes { display: block; margin-bottom: 1.4rem; }
.modal__sizes:empty { margin: 0; }
.modal__sizes-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); margin-bottom: 0.45rem; }
.variant-swatches{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.variant-swatch{width:34px;height:34px;border-radius:50%;border:2px solid var(--line);background:var(--swatch,#ddd);cursor:pointer;padding:0;transition:border-color .15s,transform .15s}
.variant-swatch.is-active{border-color:var(--ink);transform:scale(1.06)}
.pdp-variant{margin-bottom:14px}
.pdp-variant__label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:var(--text-2)}
.size-select__input {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.78rem 2.6rem 0.78rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg, #fff);
  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='%236b635a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  appearance: none;
  cursor: pointer;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.size-select__input:hover { border-color: var(--accent); }
.size-select__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 169, 143, 0.2);
}
.size-select__input option[disabled] { color: var(--text-2); }
.size-select__input optgroup { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); }
.size-btn {
  min-width: 44px; padding: 0.5rem 0.7rem; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--ease);
}
.size-btn:hover { border-color: var(--accent); }
.size-btn.is-active { background: var(--black); color: #fff; border-color: var(--black); }
.size-system-tabs { display: flex; gap: 8px; margin-bottom: 10px; }
.size-system-tab {
  min-width: 52px; padding: 0.42rem 0.85rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border);
  border-radius: 999px; background: #fff; color: var(--text-2); cursor: pointer;
  transition: all var(--ease);
}
.size-system-tab:hover { border-color: var(--accent); color: var(--text); }
.size-system-tab.is-active { background: var(--black); border-color: var(--black); color: #fff; }
.size-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.modal__actions { display: flex; gap: 0.6rem; }
.modal__actions .btn--outline { flex: 0 0 auto; padding: 0.85rem 1rem; }
.modal__actions .btn--outline.is-active { background: var(--text); color: #fff; }
.modal__actions .btn--outline.is-active svg { fill: #fff; }

/* Newsletter modal */
.modal--newsletter { z-index: 145; }
.modal--newsletter .modal__dialog {
  max-width: 520px; display: block; border-radius: 18px; overflow: hidden;
  background: linear-gradient(155deg, #1a1814 0%, #12100e 55%, #0f0e0c 100%);
  border: 1px solid rgba(200, 169, 107, 0.18);
}
.newsletter-modal { position: relative; }
.newsletter-modal__glow {
  position: absolute; inset: -30% auto auto 50%; transform: translateX(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,107,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-modal__body { position: relative; z-index: 1; padding: 2rem 1.75rem 1.85rem; color: #f3eee6; }
.newsletter-modal__badge {
  display: inline-block; margin-bottom: 0.75rem; padding: 0.28rem 0.65rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(200,169,107,0.35); border-radius: 999px;
}
.newsletter-modal__title {
  margin: 0 0 0.55rem; font-family: var(--font-display); font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 500; line-height: 1.1; color: #fff;
}
.newsletter-modal__subtitle { margin: 0 0 1rem; font-size: 0.88rem; line-height: 1.55; color: #b8b0a4; }
.newsletter-modal__perks {
  list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-direction: column; gap: 0.45rem;
}
.newsletter-modal__perks li {
  position: relative; padding-left: 1.1rem; font-size: 0.8rem; color: #cfc9bf;
}
.newsletter-modal__perks li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.newsletter-modal__form { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.85rem; }
.newsletter-modal__field {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.72rem 0.9rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.newsletter-modal__field:focus-within {
  border-color: rgba(200,169,107,0.45); box-shadow: 0 0 0 3px rgba(200,169,107,0.12);
}
.newsletter-modal__field-icon { color: #8d877d; line-height: 0; flex-shrink: 0; }
.newsletter-modal__input {
  flex: 1; min-width: 0; border: 0; background: transparent; color: #fff;
  font: inherit; font-size: 0.92rem;
}
.newsletter-modal__input::placeholder { color: #7c766c; }
.newsletter-modal__input:focus { outline: none; }
.newsletter-modal__input.is-error { color: #ffb4ae; }
.newsletter-modal__submit { width: 100%; justify-content: center; }
.newsletter-modal__gdpr { margin: 0; font-size: 0.72rem; line-height: 1.5; color: #7c766c; }
.newsletter-modal__gdpr a { color: #cfc9bf; text-decoration: underline; text-underline-offset: 2px; }
.newsletter-modal__gdpr a:hover { color: var(--accent); }
.modal--newsletter .modal__close { background: rgba(0,0,0,0.35); color: #fff; border: 1px solid rgba(255,255,255,0.12); }

/* Welcome banner (newsletter + discount) */
.modal--welcome { z-index: 146; }
.modal--welcome .modal__dialog { max-width: 540px; }
.welcome-banner { position: relative; }
.welcome-banner__glow {
  position: absolute; inset: -35% auto auto 50%; transform: translateX(-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,107,0.24) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-banner__body { position: relative; z-index: 1; padding: 2rem 1.75rem 1.85rem; color: #f3eee6; }
.welcome-banner__badge {
  display: inline-block; margin-bottom: 0.75rem; padding: 0.28rem 0.65rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(200,169,107,0.35); border-radius: 999px;
}
.welcome-banner__title {
  margin: 0 0 0.55rem; font-family: var(--font-display); font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 500; line-height: 1.1; color: #fff;
}
.welcome-banner__subtitle { margin: 0 0 0.85rem; font-size: 0.88rem; line-height: 1.55; color: #b8b0a4; }
.welcome-banner__discount {
  margin: 0 0 0.85rem; font-size: 0.92rem; font-weight: 600; line-height: 1.45; color: #e8dcc8;
}
.welcome-banner__code {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 0.75rem;
  margin-bottom: 1.15rem;
}
.welcome-banner__code-label { font-size: 0.82rem; color: #b8b0a4; }
.welcome-banner__code-btn {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.45rem 0.75rem;
  font: inherit; font-size: 0.88rem; color: #fff; cursor: pointer;
  background: rgba(200,169,107,0.12); border: 1px dashed rgba(200,169,107,0.45); border-radius: 10px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.welcome-banner__code-btn strong { letter-spacing: 0.12em; font-weight: 700; }
.welcome-banner__code-btn:hover {
  background: rgba(200,169,107,0.2); border-color: rgba(200,169,107,0.65); transform: translateY(-1px);
}
.welcome-banner__code-btn svg { color: var(--accent); flex-shrink: 0; }
.welcome-banner__form { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.75rem; }
.welcome-banner__field {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.72rem 0.9rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.welcome-banner__field:focus-within {
  border-color: rgba(200,169,107,0.45); box-shadow: 0 0 0 3px rgba(200,169,107,0.12);
}
.welcome-banner__field-icon { color: #8d877d; line-height: 0; flex-shrink: 0; }
.welcome-banner__input {
  flex: 1; min-width: 0; border: 0; background: transparent; color: #fff;
  font: inherit; font-size: 0.92rem;
}
.welcome-banner__input::placeholder { color: #7c766c; }
.welcome-banner__input:focus { outline: none; }
.welcome-banner__input.is-error { color: #ffb4ae; }
.welcome-banner__submit { width: 100%; justify-content: center; }
.welcome-banner__cta {
  width: 100%; justify-content: center; margin-bottom: 0.85rem;
  color: #f3eee6; border-color: rgba(255,255,255,0.22); background: transparent;
}
.welcome-banner__cta:hover { color: #fff; border-color: rgba(200,169,107,0.55); background: rgba(255,255,255,0.04); }
.welcome-banner__gdpr { margin: 0; font-size: 0.72rem; line-height: 1.5; color: #7c766c; }
.welcome-banner__gdpr a { color: #cfc9bf; text-decoration: underline; text-underline-offset: 2px; }
.welcome-banner__gdpr a:hover { color: var(--accent); }

/* ---------------------------- TOAST ---------------------------- */
.toasts { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; pointer-events: none; }
.toast {
  background: var(--black); color: #fff; padding: 0.8rem 1.4rem; border-radius: var(--radius);
  font-size: 0.85rem; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(16px);
  transition: opacity var(--ease), transform var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------ SCROLL REVEAL ------------------------ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero-slide { transition: none; }
  .hero-slide__img { transform: none; transition: none; }
}

/* ===================== RESPONSIVE — TABLET ===================== */
@media (min-width: 768px) {
  .category-luxe {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .category-luxe__card--lead .category-luxe__media {
    min-height: clamp(520px, 74vh, 820px);
  }
  .category-luxe__card:not(.category-luxe__card--lead) .category-luxe__media {
    min-height: clamp(440px, 62vh, 680px);
  }
  .category-showcase__row { gap: 0.55rem; }
  .category-showcase__lead { width: clamp(175px, 21vw, 265px); }
  .category-showcase__panel { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
  .category-showcase__panel > .category-card--showcase-sub:nth-child(n+5) { display: block; }
  .category-showcase__panel > .category-card--showcase-sub:nth-child(n+7) { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .home-shop__grid { gap: 2.25rem 1.75rem; }
  .benefits__grid { grid-template-columns: repeat(4, 1fr); }
  .usp-strip__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem 1.5rem; padding-block: 1.15rem; }
  .shop-cats__track { justify-content: center; }
  .cat-bubble { width: 124px; }
  .cat-bubble__ring { width: 112px; height: 112px; }
  .testimonials__intro { grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__inner { grid-template-columns: 1.05fr 0.95fr; gap: 2.2rem; align-items: center; }
  .editorial__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .editorial--feature .editorial__inner { gap: 3rem; }
  .editorial--feature .editorial__text { max-width: 38ch; font-size: 1.02rem; line-height: 1.7; }
  .luxury-banner__inner { max-width: 520px; }
  .modal__dialog { grid-template-columns: 1fr 1fr; }
  .modal__media { min-height: 0; }
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.25rem; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.15fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__legal { justify-content: flex-end; }
}

/* ===================== RESPONSIVE — DESKTOP ==================== */
@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__trust-grid { grid-template-columns: repeat(4, 1fr); }
  .category-showcase__row { gap: 0.6rem; }
  .category-showcase__lead { width: clamp(190px, 23vw, 310px); }
  .category-showcase__panel { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.5rem; }
  .category-showcase__panel > .category-card--showcase-sub:nth-child(n+7) { display: block; }
  .category-showcase__panel > .category-card--showcase-sub:nth-child(n+9) { display: none; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .home-shop__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; }
  .cat-row__layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: clamp(1.25rem, 2vw, 1.85rem);
  }
  .cat-row__track { --cat-row-visible: 4; --cat-row-gap: 0.4rem; }
  .cat-row__nav { width: 36px; height: 36px; top: 50%; }
  .cat-row__nav--prev { left: -0.35rem; }
  .cat-row__nav--next { right: -0.35rem; }
  .cat-row__visual .cat-row__media {
    width: min(100%, 400px);
    max-width: 400px;
    max-height: 500px;
  }
  .top-picks { padding: 2rem 0 1.6rem; }
  .top-picks__layout {
    grid-template-columns: minmax(210px, 30%) 1fr;
    grid-template-rows: auto auto;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
  .top-picks__intro {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
  }
  .top-picks__cta {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin-top: 0;
  }
  .top-picks__slider {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .top-picks__track { --top-picks-gap: 0.5rem; --top-picks-visible: 4; }
  .top-picks__nav { width: 38px; height: 38px; }
  .top-picks__nav--prev { left: -0.15rem; }
  .top-picks__nav--next { right: -0.15rem; }
  .shop-cats { padding: 2.4rem 0 1.9rem; }
  .cat-bubble { width: 132px; }
  .cat-bubble__ring { width: 118px; height: 118px; }
  .editorial--feature { padding: 2.25rem 0; }
  .editorial--feature .editorial__inner { gap: 2rem; max-width: 1100px; margin-inline: auto; }
  .editorial--feature .editorial__media { aspect-ratio: 4 / 5; max-height: 380px; }
  .editorial__title { font-size: clamp(1.55rem, 2vw, 1.9rem); }
  .luxury-banner--visual { padding: 2.5rem 0; }
  .luxury-banner__title { font-size: clamp(1.45rem, 2vw, 1.85rem); }
  .insta { padding: 2.5rem 0 2.25rem; }
  .insta__grid { grid-template-columns: repeat(6, 1fr); }
  .testimonials.section { padding: 2.5rem 0; }
  .newsletter { padding: 2.5rem 0 3rem; }
  .search-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================== MEGA MENU — DESKTOP ===================== */
@media (min-width: 1024px) {
  .nav__item--mega .nav__sub,
  .nav__item--mega .nav__subtoggle { display: none !important; }
  .nav__item--mega:hover > .nav__sub { display: none !important; }
}

/* ================== RESPONSIVE — MOBIL/TABLET MENU ============ */
@media (max-width: 1023px) {
  .mega-menu { display: none !important; }
  .header__burger { display: inline-flex; }
  .header__inner { gap: 0.5rem; }

  .nav {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(88vw, 360px);
    height: 100dvh;
    max-height: 100dvh;
    display: flex; flex-direction: column;
    background: var(--bg);
    padding: 0;
    z-index: 260;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 40px rgba(17, 17, 17, 0.14);
    border-right: 1px solid var(--border);
  }
  .nav.is-open { transform: translateX(0); }

  .nav__head {
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
    padding: 0.85rem 1rem 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
  }
  .nav__head-title {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--text-2);
  }
  .nav__close {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; flex-shrink: 0;
    border: 1px solid var(--border); border-radius: 50%;
    background: var(--bg-2); font-size: 1.35rem; line-height: 1;
    color: var(--text); transition: background var(--ease), border-color var(--ease), color var(--ease);
  }
  .nav__close:hover { background: var(--bg); border-color: var(--accent); color: var(--accent); }

  .nav__list {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    flex-direction: column; align-items: stretch; gap: 0;
    width: 100%; padding: 0.35rem 0 1.5rem; margin: 0; list-style: none;
  }
  .nav__list > li { border-bottom: 1px solid var(--border); }
  .nav__list > li:last-child { border-bottom: 0; }

  .nav__link {
    display: block; width: 100%;
    padding: 0.72rem 1.1rem;
    font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text);
  }
  .nav__link::after { display: none; }
  .nav__link:hover { color: var(--accent); background: rgba(0, 0, 0, 0.02); }

  .nav__item--has-sub {
    display: flex; flex-direction: row; flex-wrap: wrap;
    align-items: stretch; width: 100%; gap: 0;
  }
  .nav__item--has-sub > .nav__link {
    flex: 1; min-width: 0; width: auto;
    padding-right: 0.25rem;
    align-self: center;
  }
  .nav__item--mega .nav__subtoggle { display: inline-flex !important; }
  .nav__subtoggle {
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; align-self: center;
    width: 28px; height: 28px; margin-right: 0.85rem;
    border: 0; border-radius: 0;
    background: transparent !important; color: var(--text-2);
    transition: transform 0.2s ease, color 0.15s ease;
  }
  .nav__subtoggle:hover { color: var(--text); }
  .nav__item--has-sub.is-sub-open > .nav__subtoggle {
    transform: rotate(180deg); color: var(--accent);
  }

  /* Anulează dropdown desktop (transform/opacity) pe drawer mobil */
  .nav__item--has-sub > .nav__sub,
  .nav__item--has-sub:hover > .nav__sub,
  .nav__item--has-sub:focus-within > .nav__sub,
  .nav__item--has-sub.is-sub-open > .nav__sub {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    min-width: 0 !important;
    box-shadow: none !important;
    transition: none !important;
  }
  .nav__sub::before { display: none !important; }

  .nav__sub {
    list-style: none;
    margin: 0;
    width: 100%;
    flex: 1 1 100%;
    order: 3;
    border: 0;
    border-radius: 0;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    padding: 0.35rem 1.1rem 0.55rem;
  }
  .nav__sub:not([hidden]) {
    display: block !important;
  }

  .nav__sub > li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav__sublink {
    display: block !important;
    width: 100%;
    padding: 0.48rem 0;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: none;
    white-space: normal;
    color: var(--text) !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: currentColor;
  }
  .nav__sublink:hover { background: transparent; color: var(--accent) !important; }
  .nav__sublink--parent {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text) !important;
    padding-top: 0.15rem;
  }
  .nav__sublink--child {
    padding-left: 0.65rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-2) !important;
  }
}

/* ============== RESPONSIVE — MOBIL (tab bar app-like) ========= */
@media (max-width: 767px) {
  /* ---- Bară fixă jos, stil aplicație ---- */
  .mobile-bar {
    display: grid; grid-template-columns: repeat(5, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -6px 24px rgba(17, 17, 17, 0.07);
  }
  .mobile-bar__item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: 0.55rem 0 0.5rem; color: var(--text-2); transition: color var(--ease);
  }
  .mobile-bar__item:active { transform: scale(0.94); }
  .mobile-bar__item.is-active { color: var(--text); }
  .mobile-bar__icon { position: relative; display: inline-flex; transition: transform var(--ease), color var(--ease); }
  .mobile-bar__item.is-active .mobile-bar__icon { color: var(--accent); transform: translateY(-1px); }
  .mobile-bar__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
  .mobile-bar__badge {
    position: absolute; top: -6px; right: -9px; min-width: 16px; height: 16px; padding: 0 4px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.56rem; font-weight: 700; color: #fff; background: var(--accent);
    border: 1.5px solid #fff; border-radius: 999px; line-height: 1;
  }
  .mobile-bar__badge[hidden] { display: none; }

  /* Spațiu sub conținut ca bara să nu acopere nimic */
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0)); }
  body.is-nav-open .mobile-bar {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  body.is-nav-open .header.scrolled { backdrop-filter: none; }
  .to-top { bottom: calc(74px + env(safe-area-inset-bottom, 0)); right: 1rem; width: 42px; height: 42px; }

  /* ---- Bara de sus: selectoare limbă / monedă ---- */
  .announcement-bar { font-size: 0.68rem; }
  .announcement-bar__inner { justify-content: flex-end; gap: 0.6rem; padding-block: 0.3rem; }
  .announcement-bar__selectors { gap: 0.55rem; }
  .selector { gap: 0.25rem; }
  .selector__btn { font-size: 0.7rem; }

  /* Header curat (acțiunile sunt în bara de jos), logo centrat */
  .header__actions { display: none; }
  .header { z-index: 96; }
  .header__inner { position: relative; justify-content: flex-start; }
  .header .logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .header .logo__img { height: 34px; }

  /* ---- Layout mobile-first mai aerisit ---- */
  .section { padding: 2rem 0; }
  .editorial, .luxury-banner, .newsletter { padding: 1.75rem 0; }

  /* ---- Homepage compact ---- */
  .hero-slider {
    height: clamp(390px, 58vh, 480px);
  }
  .hero__brand-mark {
    top: 24%;
    font-size: clamp(2rem, 10vw, 2.85rem);
    letter-spacing: 0.14em;
    text-indent: 0.14em;
  }
  .hero-slide__img { object-position: 65% 20%; }
  .hero-slide__shade {
    background:
      linear-gradient(0deg, rgba(10, 8, 7, 0.92) 0%, rgba(10, 8, 7, 0.52) 42%, rgba(10, 8, 7, 0.12) 78%);
  }
  .hero-slide__content {
    align-items: flex-end;
    padding-block: 0.65rem 2.6rem;
  }
  .hero-slide__inner { max-width: none; }
  .hero--slider .hero__title {
    max-width: none;
    font-size: clamp(1.5rem, 6.4vw, 2rem);
    margin-bottom: 0.45rem;
  }
  .hero--slider .hero__subtitle {
    max-width: none;
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero--slider .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    gap: 0.55rem;
  }
  .hero--slider .hero__actions .btn {
    width: auto;
    padding: 0.72rem 1.15rem;
    font-size: 0.66rem;
  }
  .hero__link-secondary { display: none; }
  .hero__trust { font-size: 0.6rem; margin-top: 0.7rem; }
  .badge.badge--light {
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
    padding: 0.3rem 0.65rem;
  }
  /* Navigarea pe touch: swipe + bullets — săgețile dispar */
  .hero-slider__nav { display: none; }
  .hero-slider__dots { bottom: 0.85rem; gap: 0.4rem; }
  .hero-slider__dot { width: 24px; height: 3px; }

  .usp-strip__grid { padding-block: 0.9rem; gap: 0.7rem 0.85rem; }
  .usp-strip__icon { width: 38px; height: 38px; }
  .usp-strip__icon svg { width: 19px; height: 19px; }
  .usp-strip__text strong { font-size: 0.74rem; }
  .usp-strip__text span { font-size: 0.66rem; }

  .marquee { padding: 0.5rem 0; }
  .marquee__track { gap: 2rem; }
  .marquee__item { font-size: 0.58rem; letter-spacing: 0.18em; }

  .shop-cats { padding: 1.7rem 0 1.35rem; }
  .shop-cats__head { margin-bottom: 1.05rem; }
  .shop-cats__track { gap: 0.85rem; }
  .cat-bubble { width: 92px; }
  .cat-bubble__ring { width: 82px; height: 82px; padding: 4px; }
  .cat-bubble__name { font-size: 0.66rem; }
  .cat-bubble__count { font-size: 0.62rem; }

  .top-picks { padding: 1.5rem 0 1.1rem; }
  .top-picks__layout { gap: 1.35rem; }
  .top-picks__intro { max-width: none; padding-right: 0; }
  .top-picks__title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .top-picks__text { max-width: none; margin-bottom: 0; font-size: 0.78rem; }
  .top-picks__cta {
    justify-self: center;
    margin-top: 0.15rem;
    width: min(100%, 18rem);
    text-align: center;
  }
  .top-picks__track {
    --top-picks-gap: 0.35rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    scroll-padding-inline: 1.25rem;
  }
  .top-picks__nav { width: 32px; height: 32px; }
  .top-picks__nav--prev { left: 1rem; }
  .top-picks__nav--next { right: 1rem; }

  .cat-row { padding: 1.35rem 0; }
  .cat-row__products { display: none; }
  .cat-row__layout { gap: 0; }
  .cat-row__visual,
  .cat-row--reverse .cat-row__visual {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  .cat-row__visual .cat-row__media {
    width: 100%;
    max-width: none;
    max-height: 320px;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  /* Homepage category visuals — vertical, lipite, full-bleed, imagini complete */
  #homeCategoryRows {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  #homeCategoryRows .cat-row {
    flex: none;
    width: 100%;
    padding: 0;
    border-bottom: 0;
  }
  #homeCategoryRows .cat-row:nth-child(odd),
  #homeCategoryRows .cat-row:nth-child(even) {
    background: transparent;
    border-bottom: 0;
  }
  #homeCategoryRows .container.cat-row__layout {
    padding-inline: 0;
    max-width: none;
    gap: 0;
    display: block;
    width: 100%;
  }
  #homeCategoryRows .cat-row__visual {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  #homeCategoryRows .cat-row__visual .cat-row__media {
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 4 / 5;
    min-height: clamp(320px, 78vw, 520px);
    height: auto;
    border-radius: 0;
    background: var(--bg-2, #f5f0ea);
  }
  #homeCategoryRows .cat-row__visual .cat-row__media img {
    object-fit: cover;
    object-position: center center;
    opacity: 1;
  }
  #homeCategoryRows .cat-row__visual:hover .cat-row__media img {
    transform: none;
  }
  #homeCategoryRows .cat-row__visual .cat-row__title {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    padding: 2rem 1rem 1.25rem;
    letter-spacing: 0.08em;
  }

  /* Promo strip (3 imagini) — lipite, mai înalte pe mobil */
  .sale-strip__grid { gap: 0; }
  .sale-strip__item { aspect-ratio: 2 / 3; }

  .product-card--compact .product-card__body { padding: 0.5rem 0.4rem 0.65rem; }
  .product-card--compact .product-card__name {
    font-size: 0.66rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card--compact .product-card__price { font-size: 0.7rem; }
  .product-card--compact .product-card__like {
    width: 26px; height: 26px;
    top: 0.35rem; right: 0.35rem;
  }
  .product-card--compact .product-card__like svg { width: 13px; height: 13px; }
  .product-card--compact .product-card__bag {
    width: 26px; height: 26px;
    bottom: 0.4rem; right: 0.3rem;
  }
  .product-card--compact .product-card__bag svg { width: 15px; height: 15px; }

  .editorial--feature { padding: 1.65rem 0; }
  .editorial--feature .editorial__inner { gap: 1rem; }
  .editorial--feature .editorial__media {
    aspect-ratio: 5 / 4;
    max-height: 220px;
  }
  .editorial__title {
    font-size: clamp(1.3rem, 4.8vw, 1.55rem);
    margin: 0.25rem 0 0.55rem;
  }
  .editorial__text {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    max-width: none;
  }
  .editorial--feature .btn { padding: 0.55rem 0.95rem; font-size: 0.62rem; }
  .editorial--feature .section__eyebrow { font-size: 0.64rem; margin-bottom: 0.4rem; }

  .insta { padding: 1.75rem 0 1.6rem; }
  .insta__head { margin-bottom: 1rem; }
  .insta__subtitle { font-size: 0.64rem; }
  .insta__grid { gap: 3px; }
  .insta__actions { margin-top: 1.1rem; }
  .insta__btn {
    min-width: 0;
    padding: 0.55rem 1.05rem;
    font-size: 0.62rem;
  }

  .luxury-banner--visual { padding: 1.65rem 0; }
  .luxury-banner__eyebrow { font-size: 0.62rem; margin-bottom: 0.45rem; }
  .luxury-banner__title {
    font-size: clamp(1.3rem, 4.8vw, 1.55rem);
    margin-bottom: 0.5rem;
  }
  .luxury-banner__text {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  .luxury-banner .btn { padding: 0.55rem 0.95rem; font-size: 0.62rem; }

  .testimonials.section { padding: 1.85rem 0; }

  /* Grid de shop pe 2 coloane (mai „magazin") */
  .category-groups { gap: 1.5rem; }
  .category-showcase__row {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 0.45rem;
  }
  .category-showcase__lead { width: clamp(128px, 36vw, 195px); }
  .category-showcase__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.45rem; }
  .category-card--showcase-sub .category-card__title { font-size: 0.72rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
  .product-card { border-radius: var(--radius); }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card__body { padding: 0.5rem 0.5rem 0.6rem; gap: 0.2rem; }
  .product-card__name {
    font-family: var(--font-body); font-size: 0.76rem; font-weight: 600;
    line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .product-card__price { font-size: 0.76rem; margin-bottom: 0.2rem; }
  .product-card__price .price__old { font-size: 0.66rem; }
  .product-card__body .btn {
    padding: 0.45rem 0.4rem; font-size: 0.56rem; letter-spacing: 0.04em; gap: 0.28rem; min-height: 0;
  }
  .product-card__body .btn .btn__icon svg { width: 12px; height: 12px; }
  .product-card__like { width: 28px; height: 28px; top: 0.4rem; right: 0.4rem; }
  .product-card__like svg { width: 14px; height: 14px; }
  .product-card__badge { top: 0.4rem; left: 0.4rem; font-size: 0.54rem; padding: 0.18rem 0.4rem; }
  /* Quick view: doar iconiță, colț dreapta-jos (nu bară lată) */
  .product-card__quick {
    opacity: 1; transform: none;
    left: auto; right: 0.4rem; bottom: 0.4rem;
    width: 28px; height: 28px; padding: 0;
    border-radius: 50%;
  }
  .product-card__quick > span:not(.btn__icon) { display: none; }
  .product-card__quick .btn__icon { display: inline-flex; align-items: center; justify-content: center; }
  .product-card__quick .btn__icon svg { width: 13px; height: 13px; }

  /* ---- Quick view: panou jos, compact ---- */
  .modal {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    z-index: 220;
  }
  .modal__dialog {
    max-width: 100%;
    width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    transform: translateY(100%);
  }
  .modal.is-open .modal__dialog { transform: translateY(0); }
  .modal__media {
    flex: 0 0 auto;
    aspect-ratio: auto;
    max-height: 34vh;
    min-height: 140px;
  }
  .modal__media img { object-fit: contain; background: var(--bg); }
  .modal__content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.85rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  }
  .modal__cat { font-size: 0.64rem; }
  .modal__name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.15rem 0 0.35rem;
  }
  .modal__price { font-size: 0.88rem; margin-bottom: 0.45rem; }
  .modal__price .price__old { font-size: 0.76rem; }
  .modal__desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .modal__sizes { margin-bottom: 0.75rem; }
  .modal__sizes-label { font-size: 0.68rem; margin-bottom: 0.35rem; }
  .modal__sizes .size-select__input { padding: 0.55rem 2rem 0.55rem 0.75rem; font-size: 0.82rem; }
  .modal__actions { gap: 0.45rem; }
  .modal__actions .btn { padding: 0.55rem 0.65rem; font-size: 0.66rem; letter-spacing: 0.04em; }
  .modal__actions .btn .btn__icon svg { width: 14px; height: 14px; }
  .modal__actions .btn--outline { padding: 0.55rem 0.65rem; width: 42px; }
  .modal__close { top: 0.45rem; right: 0.45rem; width: 30px; height: 30px; font-size: 1.25rem; }

  /* ---- Beneficii: 2 pe rând, carduri compacte „pro" ---- */
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .benefit {
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.3rem 1rem; gap: 0.3rem; height: 100%;
  }
  .benefit__icon { width: 46px; height: 46px; margin-bottom: 0.2rem; }
  .benefit__icon svg { width: 22px; height: 22px; }
  .benefit__title { font-size: 1.1rem; }
  .benefit__text { font-size: 0.78rem; line-height: 1.45; max-width: none; }

  /* ---- Recenzii: 2 pe rând, carduri compacte ---- */
  .testimonials__intro { gap: 0.85rem; margin-bottom: 1.15rem; }
  .testimonials__head .section__title { font-size: 1.4rem; }
  .testimonials__head .section__eyebrow { font-size: 0.64rem; }
  .testimonials__lead { font-size: 0.82rem; line-height: 1.45; }
  .testimonials__rating { padding: 0.75rem 0.85rem; }
  .testimonials__score { font-size: 1.65rem; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; align-items: stretch; }
  .testimonial { padding: 0.85rem 0.75rem; gap: 0.55rem; border-radius: var(--radius); height: 100%; }
  .testimonial:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .testimonial__quote svg { width: 18px; height: 18px; }
  .testimonial__text { font-size: 0.78rem; line-height: 1.4; }
  .testimonial__avatar { width: 30px; height: 30px; font-size: 0.68rem; }
  .testimonial__name { font-size: 0.74rem; }
  .testimonial__verified { font-size: 0.6rem; }
  .newsletter__inner { padding: 1.1rem; gap: 1rem; }
  .newsletter__action { padding: 0.85rem; }
  .newsletter__title { font-size: 1.4rem; }
  .newsletter__subtitle { font-size: 0.82rem; margin-bottom: 0.75rem; line-height: 1.45; }
  .newsletter__perks li { font-size: 0.74rem; }
  .newsletter__badge { font-size: 0.6rem; }
}

/* ==================== RESPONSIVE — MOBIL MIC ================== */
@media (max-width: 559px) {
  .container { padding-inline: 1rem; }
  .top-picks__track {
    margin-inline: -1rem;
    padding-inline: 1rem;
    scroll-padding-inline: 1rem;
  }
  .shop-cats__track { padding-inline: 1rem; }
  .announcement-bar { font-size: 0.62rem; }
  .selector__btn { font-size: 0.66rem; }
  .header .logo__img { height: 30px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__gdpr { text-align: left; }
  .shop-toolbar { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .filters { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: -1.25rem; padding-inline: 1.25rem; }
  .filters::-webkit-scrollbar { display: none; }
  .filters__btn { white-space: nowrap; }
  .drawer { max-width: 100%; }
  .search-grid { grid-template-columns: 1fr; }
  .product-grid { gap: 0.45rem; }
  .product-card__name { font-size: 0.72rem; }
  .product-card__price { font-size: 0.72rem; }
  .product-card__body .btn { font-size: 0.52rem; padding: 0.4rem 0.35rem; }
}

/* =================================================================
   PAGINA DE PRODUS (PDP)
   ================================================================= */
.pdp { padding: 1.5rem 0 4rem; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-2); padding: 0.5rem 0 1.75rem; letter-spacing: 0.02em; }
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb__current { color: var(--text); }

@media (max-width: 767px) {
  .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    touch-action: pan-x;
  }
  .breadcrumb::-webkit-scrollbar { display: none; }
  .breadcrumb a,
  .breadcrumb .breadcrumb__sep,
  .breadcrumb .breadcrumb__current {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* Layout principal */
.pdp__layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.pdp__notfound { text-align: center; padding: 4rem 0; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; color: var(--text-2); }

/* ---- Galerie ---- */
.gallery { display: flex; flex-direction: column-reverse; gap: 0.7rem; }
.gallery__thumbs { display: flex; flex-direction: row; gap: 0.6rem; overflow-x: auto; scrollbar-width: none; }
.gallery__thumbs::-webkit-scrollbar { display: none; }
.gallery__thumb {
  flex: 0 0 64px; width: 64px; aspect-ratio: 1 / 1; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius); opacity: 0.6;
  transition: opacity var(--ease), border-color var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { opacity: 1; border-color: var(--accent); }
.gallery__thumb:hover { opacity: 1; }
.gallery__stage { position: relative; }
.gallery__track { display: none; }
.gallery__dots { display: none; }
.gallery__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: 0.3rem 0.7rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--accent); border-radius: var(--radius);
}
.gallery__badge--sale { background: var(--black); color: #fff; }
.gallery__main {
  display: block; width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--radius-lg); cursor: zoom-in;
  background: linear-gradient(135deg, #ece4d6, #d8c3a5); padding: 0;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__main:hover img { transform: scale(1.05); }

/* ---- Info ---- */
.pdp__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-body);
}

.pdp__head {
  margin-bottom: 1.35rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.pdp__cat {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.pdp__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--text);
}

.pdp__desc {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-2);
  opacity: 0.88;
}

.pdp__desc[hidden] { display: none !important; }

.pdp__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin: 0.85rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.pdp__price--sale .price__old {
  order: 1;
  font-size: 1.05rem;
  font-weight: 400;
  color: #8a8a8a;
  text-decoration: line-through;
  opacity: 1;
}

.pdp__price--sale .price__now {
  order: 2;
}

.pdp__price .price__now { font-size: inherit; font-weight: inherit; }
.pdp__price .price__now--sale {
  color: #ac3a32;
  font-weight: 600;
}

.pdp__price .price__discount {
  order: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 0.85rem;
  color: #ac3a32;
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
}

.pdp__price .price__sep {
  color: var(--text);
  font-weight: 400;
  opacity: 0.85;
}

.pdp__price .price__old {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: line-through;
  opacity: 0.85;
}

.pdp__rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.pdp__stars { display: inline-flex; align-items: center; gap: 0.1rem; color: var(--accent); }
.pdp__star { flex-shrink: 0; }
.pdp__reviews { font-size: 0.72rem; color: var(--text-2); }

/* Variante + acțiuni */
.pdp__shop {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.pdp__sizes { display: block; }
.pdp__sizes:empty { display: none; }

.pdp__info .pdp-variant { margin-bottom: 0.85rem; }
.pdp__info .pdp-variant:last-child { margin-bottom: 0; }
.pdp__info .pdp-variant__label,
.pdp__info .pdp__sizes-label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

.pdp__info .variant-swatches { gap: 0.55rem; margin-top: 0; }
.pdp__info .variant-swatch {
  width: 30px;
  height: 30px;
  border-width: 1px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.pdp__info .size-select__input {
  min-height: 44px;
  padding: 0.65rem 2.25rem 0.65rem 0.85rem;
  font-size: 0.88rem;
  border-radius: var(--radius);
  background: var(--bg-2, #fff);
}

.pdp__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pdp__buy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: stretch;
}

.pdp__info .pdp__add {
  min-height: 46px;
  padding-inline: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pdp__info .pdp__wish {
  width: 46px;
  min-height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg-2, #fff);
}

.pdp__info .pdp__wish.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.pdp__info .pdp__buynow {
  min-height: 44px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  background: transparent;
}

.pdp__affiliate {
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(221, 212, 200, 0.65);
}

.pdp__affiliate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.pdp__affiliate-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M10 13a5 5 0 0 1 7.07 0l1.41 1.41a5 5 0 0 1-7.07 7.07L10 19'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.07 0L5.52 9.59a5 5 0 0 0 7.07-7.07L14 5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M10 13a5 5 0 0 1 7.07 0l1.41 1.41a5 5 0 0 1-7.07 7.07L10 19'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.07 0L5.52 9.59a5 5 0 0 0 7.07-7.07L14 5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pdp__affiliate-btn:hover { color: var(--text); }

.pdp__affiliate-hint {
  margin: 0.35rem 0 0;
  font-size: 0.65rem;
  line-height: 1.4;
  text-align: center;
  color: var(--text-2);
  opacity: 0.85;
}

/* Asigurări */
.pdp__assurance {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1rem 0 0.75rem;
  padding: 0;
  border: 0;
}

.pdp__assurance li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-2);
}

.pdp__assurance svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.9;
}

.pdp__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--text-2);
}

.pdp__meta strong { font-weight: 600; color: var(--text); font-size: 0.68rem; }
.pdp__stock { display: inline-flex; align-items: center; gap: 0.35rem; }
.pdp__dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf50; }

/* Acordeon */
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text);
}
.accordion__head::-webkit-details-marker { display: none; }
.accordion__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; background: var(--text); transition: transform var(--ease), opacity var(--ease);
}
.accordion__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.accordion__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.accordion__item[open] .accordion__icon::after { opacity: 0; }
.accordion__item[open] .accordion__head { color: var(--accent); }
.accordion__body { padding: 0 0 1.2rem; color: var(--text-2); line-height: 1.7; font-size: 0.92rem; }

/* ---- Taburi PDP (descriere lungă / recenzii) ---- */
.pdp__tabs-wrap {
  margin-top: 3rem;
  padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}
.tabs__nav {
  display: flex; gap: 0.4rem; flex-wrap: nowrap;
  border-bottom: 1px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__tab {
  position: relative; flex: 0 0 auto;
  background: none; border: none; cursor: pointer;
  padding: 0.9rem 0.9rem 1rem; white-space: nowrap;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-2);
  transition: color var(--ease);
}
.tabs__tab::after {
  content: ""; position: absolute; left: 0.5rem; right: 0.5rem; bottom: -1px; height: 2px;
  background: var(--text); transform: scaleX(0); transform-origin: center;
  transition: transform var(--ease);
}
.tabs__tab.is-active { color: var(--text); }
.tabs__tab.is-active::after { transform: scaleX(1); }
.tabs__count { color: var(--text-2); font-weight: 500; }
.tabs__panels { padding: 1.8rem 0; color: var(--text-2); line-height: 1.8; font-size: 0.95rem; width: 100%; }
.tabs__panel { animation: tabIn 0.4s ease; width: 100%; }
@keyframes tabIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.tabs__lead { color: var(--text); font-size: 1.02rem; margin-bottom: 0.8rem; }
.tabs__rich { color: var(--text); font-size: 1.02rem; line-height: 1.65; width: 100%; max-width: none; }
.tabs__rich p { margin: 0 0 0.85rem; }
.tabs__rich ul, .tabs__rich ol { margin: 0 0 0.85rem; padding-left: 1.4rem; }
.tabs__rich li { margin-bottom: 0.35rem; }
.tabs__list { list-style: none; margin: 1.1rem 0 0; display: grid; gap: 0.55rem; }
.tabs__list li { position: relative; padding-left: 1.4rem; }
.tabs__list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.tabs__specs { list-style: none; margin: 1.2rem 0 0; border-top: 1px solid var(--border); }
.tabs__specs li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.tabs__specs li span { color: var(--text-2); }
.tabs__specs li strong { color: var(--text); font-weight: 600; }

/* ---- Recenzii ---- */
.reviews {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 1.25rem; width: 100%;
}
.reviews__summary {
  display: inline-flex; align-items: center; gap: 1rem;
  width: fit-content; max-width: 100%;
  align-self: flex-start;
  margin-bottom: 0.25rem; padding: 1rem 1.15rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg);
}
.reviews__score { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; }
.reviews__score strong { font-family: var(--font-display); font-size: 2rem; color: var(--text); line-height: 1; }
.reviews__stars { display: inline-flex; align-items: center; gap: 0.1rem; color: var(--accent); }
.reviews__star, .review__star { flex-shrink: 0; }
.reviews__based { font-size: 0.82rem; color: var(--text-2); width: 100%; }
.reviews__list { list-style: none; display: grid; gap: 1rem; margin: 0; width: 100%; }
.reviews__list:empty { display: none; }
.reviews__aside {
  display: grid; gap: 0.85rem;
  width: min(100%, 26rem);
  margin-inline: auto;
  flex-shrink: 0;
}
.reviews__empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.65rem; padding: 1.15rem 1.1rem; margin: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--text-2); font-size: 0.88rem; line-height: 1.55;
}
.reviews__empty p { margin: 0; max-width: 22rem; }
.reviews__empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  color: var(--accent); background: var(--bg-2); border: 1px solid var(--border);
}
.review {
  padding: 1.25rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.review:hover { border-color: rgba(0, 0, 0, 0.12); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); }
.review__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.review__author { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.review__avatar {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text); background: var(--bg-2); border: 1px solid var(--border);
}
.review__meta { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.review__name { font-weight: 600; color: var(--text); font-size: 0.9rem; }
.review__verified { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.review__stars { display: inline-flex; align-items: center; gap: 0.08rem; color: var(--accent); flex-shrink: 0; }
.review__text { color: var(--text); line-height: 1.7; font-size: 0.94rem; margin: 0; }
.review-form__login {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.85rem; padding: 1.1rem 1.15rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg); color: var(--text-2); font-size: 0.88rem;
}
.review-form__login p { margin: 0; line-height: 1.5; }

/* ---- Formular recenzie ---- */
.review-form {
  margin: 0; padding: 1.2rem 1.15rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--bg);
  display: grid; gap: 0.95rem;
}
.review-form__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); font-weight: 600; margin: 0; }
.review-form__row { display: grid; gap: 1.1rem; }
.review-form__field { display: grid; gap: 0.45rem; }
.review-form__field > span {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-2);
}
.review-form input,
.review-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.7rem 0.85rem; transition: border-color var(--ease);
}
.review-form input:focus,
.review-form textarea:focus { outline: none; border-color: var(--accent); }
.review-form textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.review-form .btn { justify-self: start; }
.rating-input { display: inline-flex; gap: 0.25rem; }
.rating-input__star {
  background: none; border: none; cursor: pointer; padding: 0 2px;
  font-size: 1.5rem; line-height: 1; color: var(--border);
  transition: color 0.15s ease, transform 0.15s ease;
}
.rating-input__star:hover { transform: scale(1.12); }
.rating-input__star.is-on { color: var(--accent); }

@media (min-width: 768px) {
  .tabs__tab { font-size: 0.82rem; padding: 1rem 1.3rem 1.1rem; }
  .reviews__list { grid-template-columns: repeat(2, 1fr); }
  .reviews__aside { width: min(100%, 28rem); }
  .review-form__row { grid-template-columns: 1fr; align-items: start; }
  .pdp__layout { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 2.75rem; }
  .pdp__info { position: sticky; top: calc(var(--header-h, 72px) + 1.25rem); align-self: start; max-width: 22rem; }
  .pdp__head { margin-bottom: 1.15rem; }
  .pdp__assurance { margin-top: 0.85rem; }
  .gallery__main { border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06); }
}

/* Recomandate & vizualizate recent */
.related .section__head,
.recently-viewed .section__head { text-align: left; margin-left: 0; }

/* ---- PDP responsive ---- */
@media (max-width: 767px) {
  .pdp { padding: 0 0 2.5rem; }
  .pdp > .container { padding-inline: 1rem; }
  .pdp .breadcrumb {
    padding: 0.4rem 0 0.55rem;
    font-size: 0.68rem;
    gap: 0.35rem;
  }
  .pdp__layout.container { padding-inline: 0; gap: 0.85rem; }
  .pdp__info { padding-inline: 1rem; }

  .pdp__layout .gallery {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .gallery { gap: 0; }
  .gallery__stage { width: 100%; }
  .gallery__thumbs { display: none !important; }
  .gallery__main { display: none !important; }

  .gallery__track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 0;
    max-height: none;
  }
  .gallery__track::-webkit-scrollbar { display: none; }

  .gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    aspect-ratio: 4 / 5;
    max-height: none;
    background: var(--bg-2);
  }
  .gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    user-select: none;
    background: var(--bg-2);
  }

  .gallery__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.65rem;
    z-index: 3;
    pointer-events: none;
  }
  .gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s, background 0.2s;
  }
  .gallery__dot.is-active {
    background: #fff;
    transform: scale(1.2);
  }

  .gallery__badge { top: 0.65rem; left: 1rem; font-size: 0.58rem; }

  .pdp__cat { font-size: 0.58rem; margin-bottom: 0.3rem; }
  .pdp__head { margin-bottom: 0.85rem; }
  .pdp__name { font-size: 1rem; line-height: 1.3; }
  .pdp__desc {
    font-size: 0.68rem;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pdp__price { margin-top: 0.65rem; font-size: 1.05rem; }
  .pdp__price--sale .price__old { font-size: 0.92rem; }
  .pdp__price .price__discount { font-size: 0.92rem; gap: 0.65rem; }
  .pdp__price .price__old { font-size: 0.72rem; }
  .pdp__shop { gap: 0.85rem; padding-bottom: 0.85rem; }
  .pdp__buy { gap: 0.4rem; }
  .pdp__info .pdp__add { min-height: 42px; font-size: 0.64rem; }
  .pdp__info .pdp__wish { width: 42px; min-height: 42px; }
  .pdp__info .pdp__buynow { min-height: 40px; font-size: 0.64rem; }
  .pdp__affiliate { padding-top: 0.65rem; }
  .pdp__assurance { margin-top: 0.75rem; margin-bottom: 0.55rem; }
  .pdp__assurance li { font-size: 0.68rem; }
  .pdp__meta { font-size: 0.64rem; padding-top: 0.65rem; }

  .pdp__tabs-wrap {
    margin-top: 1.25rem;
    padding-inline: 1rem;
  }
  .tabs__tab { font-size: 0.68rem; padding: 0.7rem 0.65rem 0.8rem; }
  .tabs__panels { padding: 1rem 0 0.5rem; font-size: 0.86rem; line-height: 1.6; }
  .tabs__rich { font-size: 0.86rem; line-height: 1.55; }
  .tabs__rich p { margin-bottom: 0.65rem; }

  .related.section,
  .recently-viewed.section { padding: 1.1rem 0 0.65rem; }
  .related .section__head,
  .recently-viewed .section__head { margin-bottom: 0.65rem; }
  .related .section__eyebrow,
  .recently-viewed .section__eyebrow {
    font-size: 0.56rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.16em;
  }
  .related .section__title,
  .recently-viewed .section__title {
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.15;
  }
  .related .product-grid,
  .recently-viewed .product-grid {
    --related-gap: 0.45rem;
    --related-visible: 2.35;
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: var(--related-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -1rem;
    padding-inline: 1rem;
    scroll-padding-inline: 1rem;
    touch-action: pan-x;
  }
  .related .product-grid::-webkit-scrollbar,
  .recently-viewed .product-grid::-webkit-scrollbar { display: none; }
  .related .product-grid .product-card,
  .recently-viewed .product-grid .product-card {
    flex: 0 0 calc((100% - (var(--related-visible) - 1) * var(--related-gap)) / var(--related-visible));
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .related .product-card--compact .product-card__media,
  .recently-viewed .product-card--compact .product-card__media {
    aspect-ratio: 4 / 5;
  }
  .related .product-card--compact .product-card__body,
  .recently-viewed .product-card--compact .product-card__body {
    padding: 0.4rem 0.35rem 0.5rem;
    gap: 0.15rem;
  }
  .related .product-card--compact .product-card__name,
  .recently-viewed .product-card--compact .product-card__name {
    font-size: 0.62rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }
  .related .product-card--compact .product-card__price,
  .recently-viewed .product-card--compact .product-card__price {
    font-size: 0.66rem;
  }
  .related .product-card--compact .product-card__price .price__old,
  .recently-viewed .product-card--compact .product-card__price .price__old {
    font-size: 0.58rem;
  }
  .related .product-card--compact .product-card__like,
  .recently-viewed .product-card--compact .product-card__like {
    width: 24px;
    height: 24px;
    top: 0.3rem;
    right: 0.3rem;
  }
  .related .product-card--compact .product-card__like svg,
  .recently-viewed .product-card--compact .product-card__like svg {
    width: 12px;
    height: 12px;
  }
  .related .product-card--compact .product-card__bag,
  .recently-viewed .product-card--compact .product-card__bag {
    width: 24px;
    height: 24px;
    bottom: 0.35rem;
    right: 0.25rem;
  }
  .related .product-card--compact .product-card__bag svg,
  .recently-viewed .product-card--compact .product-card__bag svg {
    width: 14px;
    height: 14px;
  }
  .related .product-card--compact .product-card__badge,
  .recently-viewed .product-card--compact .product-card__badge {
    top: 0.3rem;
    left: 0.3rem;
    font-size: 0.5rem;
    padding: 0.14rem 0.32rem;
  }
}

@media (max-width: 559px) {
  .gallery__slide { aspect-ratio: 1 / 1; max-height: none; }
  .gallery__track { max-height: none; }
}

@media (min-width: 768px) {
  .gallery__track,
  .gallery__dots { display: none !important; }
  .gallery { flex-direction: row; gap: 0.9rem; }
  .gallery__thumbs { flex-direction: column; overflow: visible; flex: 0 0 74px; }
  .gallery__thumb { flex: 0 0 auto; width: 74px; }
  .gallery__stage { flex: 1; }
}

/* ---------------------- PAGINA CATEGORIE ----------------------- */
.cat-page { padding-top: 0; }
.cat-page__shop.section { padding: 1.15rem 0 2.5rem; }
.cat-shop {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.cat-shop__main { min-width: 0; }
.cat-filters {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e2dc);
  border-radius: var(--radius, 12px);
  padding: 1.25rem 1rem;
}
.cat-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border, #e8e2dc);
}
.cat-filters__title {
  margin: 0;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.cat-filters__clear {
  font-size: 0.75rem;
  color: var(--text-2, #8a8178);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.cat-filters__clear:hover { color: var(--text, #2c2825); }
.cat-filters__group { margin-bottom: 1.25rem; }
.cat-filters__group:last-child { margin-bottom: 0; }
.cat-filters__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2, #8a8178);
  margin-bottom: 0.55rem;
}
.cat-filters__list { display: flex; flex-direction: column; gap: 0.35rem; }
.cat-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text, #2c2825);
  cursor: pointer;
}
.cat-filter input {
  width: 15px;
  height: 15px;
  accent-color: var(--accent, #2c2825);
  flex-shrink: 0;
}
.cat-filter.is-disabled { opacity: 0.45; pointer-events: none; }
.cat-filter__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  flex-shrink: 0;
}
.cat-filter__count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-2, #8a8178);
}
@media (max-width: 900px) {
  .cat-shop { grid-template-columns: 1fr; }
}
.cat-page__notfound { padding: 4rem 0 6rem; text-align: center; }
.cat-page__notfound h1 { font-family: var(--font-display, "Cormorant Garamond", serif); margin-bottom: 0.75rem; }
.cat-page__notfound p { color: var(--text-2); margin-bottom: 1.5rem; }
#catFilters .filters__btn { text-decoration: none; display: inline-flex; align-items: center; }

/* ---- Categorie: toolbar mobil + panouri filtre ---- */
.cat-mobile-bar { display: none; }
.shop-toolbar--cat { gap: 0.75rem; }

.filter-sheet {
  position: fixed; inset: 0; z-index: 260;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--ease), visibility var(--ease);
}
.filter-sheet.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.filter-sheet__backdrop { position: absolute; inset: 0; background: rgba(15, 15, 15, 0.5); }
.filter-sheet__panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-height: 88vh; background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.32s var(--ease);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
}
.filter-sheet.is-open .filter-sheet__panel { transform: translateY(0); }
.filter-sheet__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.filter-sheet__title {
  margin: 0; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
}
.filter-sheet__close {
  background: none; border: none; font-size: 1.75rem; line-height: 1;
  color: var(--text-2); cursor: pointer; padding: 0.15rem 0.35rem;
}
.filter-sheet__body {
  flex: 1; overflow-y: auto; padding: 1rem 1.25rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}
.filter-sheet__body--links { padding-top: 0.5rem; }
.filter-sheet__foot {
  display: flex; gap: 0.65rem; padding: 0.9rem 1.25rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border); background: var(--bg); flex-shrink: 0;
}
.filter-sheet__foot .btn { flex: 1; justify-content: center; }
.filter-sheet .cat-filters__head--desktop { display: none; }

.cat-mobile-bar__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  flex: 1; min-height: 42px; padding: 0.55rem 0.85rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: border-color var(--ease), background var(--ease);
}
.cat-mobile-bar__btn:hover { border-color: var(--accent); }
.cat-mobile-bar__badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  background: var(--black); color: #fff; font-size: 0.68rem; font-weight: 700;
}

.cat-subcat-list { display: flex; flex-direction: column; gap: 0.35rem; }
.cat-subcat-list__link {
  display: flex; align-items: center; min-height: 44px; padding: 0.65rem 0.85rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 0.92rem; text-decoration: none;
  transition: border-color var(--ease), background var(--ease);
}
.cat-subcat-list__link:hover { border-color: var(--accent); text-decoration: none; }
.cat-subcat-list__link.is-active {
  background: var(--black); color: #fff; border-color: var(--black); font-weight: 600;
}

body.is-filter-sheet-open { overflow: hidden; }

@media (max-width: 767px) {
  .page-hero { padding: 2rem 0 1.5rem; }
  .page-hero__title { font-size: clamp(2.2rem, 9vw, 2.85rem); }
  .page-hero__subtitle { font-size: 0.88rem; margin-top: 0.85rem; }
  .page-hero__meta { margin-top: 1.1rem; }
  .page-hero--cat {
    padding: 0.65rem 0 0.55rem;
  }
  .page-hero--cat .page-hero__breadcrumb {
    margin-bottom: 0.3rem;
    font-size: 0.62rem;
    padding: 0;
  }
  .page-hero--cat .page-hero__title {
    font-size: clamp(1.2rem, 4.2vw, 1.45rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
  .page-hero--cat .page-hero__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem 0.65rem;
  }
  .page-hero--cat .page-hero__meta {
    margin-top: 0;
    padding: 0.25rem 0.5rem 0.25rem 0.45rem;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }
  .page-hero--cat .page-hero__meta::before {
    width: 3px;
    height: 3px;
  }
  .page-hero__row { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .cat-page__shop.section { padding: 0.9rem 0 2rem; }
  .cat-mobile-bar {
    display: flex; gap: 0.55rem; width: 100%;
  }
  .shop-toolbar--cat {
    flex-direction: column; align-items: stretch;
  }
  .shop-toolbar--cat .cat-filters-row { display: none; }
  .shop-toolbar--cat .sort {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  }
  .shop-toolbar--cat .sort__select { flex: 1; max-width: 14rem; }
  .cat-shop .cat-filters { display: none !important; }
}

@media (min-width: 768px) {
  .cat-mobile-bar { display: none !important; }
  .filter-sheet { display: none !important; }
}

/* Pagini custom (CMS) */
.cms-page { padding: 0 0 4rem; min-height: 50vh; }
.cms-page__inner { max-width: 780px; margin: 0 auto; padding-top: 0.5rem; }
.cms-page__body.prose { font-size: 1rem; line-height: 1.75; color: var(--text, #2c2825); }
.cms-page__body.prose h2, .cms-page__body.prose h3, .cms-page__body.prose h4 {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  margin: 1.75rem 0 0.75rem;
  line-height: 1.25;
}
.cms-page__body.prose p { margin: 0 0 1rem; }
.cms-page__body.prose ul, .cms-page__body.prose ol { margin: 0 0 1rem; padding-left: 1.4rem; }
.cms-page__body.prose a { color: var(--accent); text-decoration: underline; }
.cms-page__notfound { padding: 4rem 0 6rem; text-align: center; }
.cms-page__notfound h1 { font-family: var(--font-display, "Cormorant Garamond", serif); margin-bottom: 0.75rem; }
.cms-page__notfound p { color: var(--text-2); margin-bottom: 1.5rem; }
