

/* ============================================================
   l'œil illuminé — prototip design
   Paletă: fildeș / cerneală / auriu boutique
   ============================================================ */

:root {
  --ivory:      #F2EBD9;
  --ivory-2:    #EAE1CB;
  --ivory-3:    #E0D6BC;
  --ink:        #2B2820;
  --ink-soft:   #565040;
  --ink-faint:  #8B836E;
  --gold:       #879B57;
  --gold-deep:  #647F3E;
  --terracotta: #B15E3A;
  --line:       rgba(43, 40, 32, 0.14);
  --line-soft:  rgba(43, 40, 32, 0.08);
  --white:      #FCFAF3;
  --shadow:     0 18px 50px -20px rgba(43, 40, 32, 0.35);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Tipografie utilitară ---- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.serif { font-family: var(--serif); }

/* ============================================================
   BARĂ ANUNȚ
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 232, 0.96);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: padding 0.35s ease;
}
.header.is-scrolled .header__inner { padding-top: 13px; padding-bottom: 13px; }
.nav {
  display: flex;
  gap: 32px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav a { color: var(--ink-soft); transition: color 0.25s; position: relative; white-space: nowrap; }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.brand svg { display: block; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
}
.brand__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.brand__tag::before, .brand__tag::after {
  content: "";
  width: 15px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.brand__lockup { display: inline-flex; align-items: center; gap: 9px; }
.brand__iris { height: 44px; width: auto; display: block; transition: height 0.35s ease; }
.header.is-scrolled .brand__iris { height: 34px; }
@media (max-width: 720px) { .brand__iris { height: 32px; } }

.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px;
}
.cart-count {
  position: absolute;
  top: -6px; right: -10px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.is-visible { transform: scale(1); }

.menu-toggle {
  display: none;
  position: relative;
  width: 26px; height: 18px;
  background: none; border: none; padding: 0;
  cursor: pointer;
  z-index: 60;
}
.menu-toggle span {
  position: absolute; left: 0;
  width: 100%; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }
.menu-toggle.is-open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  overflow: hidden;
  background:
    radial-gradient(118% 82% at 50% -8%, rgba(135, 155, 87, 0.20), transparent 58%),
    linear-gradient(180deg, var(--ivory-2), var(--ivory));
}
.hero__inner { position: relative; max-width: 690px; }
.hero .eyebrow { display: inline-block; margin-bottom: 22px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 470px;
  margin: 0 auto 36px;
}

/* ---- Butoane ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }
.btn--block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   SECȚIUNE GENERALĂ
   ============================================================ */
.section { padding: 92px 28px; max-width: 1240px; margin: 0 auto; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1;
}
.section__head p { color: var(--ink-soft); margin-top: 12px; }

/* ============================================================
   GRILĂ PRODUSE
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 36px 24px;
}
.card { position: relative; }
.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line-soft);
}
.card__ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card__ph { transform: scale(1.05); }
.card__ph svg { width: 42%; opacity: 0.5; }
.card__watermark {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(32,28,24,0.32);
  letter-spacing: 0.04em;
}
.card__add {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  padding: 12px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.card:hover .card__add { opacity: 1; transform: translateY(0); }
.card__add:hover { background: var(--gold); }
.card__cat {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 5px;
}
.card__name {
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
.card__price { font-size: 0.92rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* tonuri placeholder */
.t1 { background: linear-gradient(150deg,#E9DEC9,#D9C7A6); }
.t2 { background: linear-gradient(150deg,#EFE7DA,#DED2BE); }
.t3 { background: linear-gradient(150deg,#E3D6C2,#C9B291); }
.t4 { background: linear-gradient(150deg,#EDE4D6,#D6C3A8); }
.t5 { background: linear-gradient(150deg,#E7E0D4,#CFC1A9); }
.t6 { background: linear-gradient(150deg,#DED0B9,#C2A87F); }
.t7 { background: linear-gradient(150deg,#EFE9DD,#D8CBB4); }
.t8 { background: linear-gradient(150deg,#E5D9C4,#CDB894); }

/* ============================================================
   BANDĂ „DESPRE / EDITORIAL”
   ============================================================ */
.editorial {
  background: transparent;   /* deschis, ca restul paginii — fără bloc întunecat */
  color: var(--ink);
}
.editorial::before { display: none !important; }   /* fără glow-ul de pe fundal închis */
.editorial__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 28px;
  text-align: center;
}
.editorial .eyebrow { color: var(--gold); }
.editorial h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.18;
  margin: 20px auto 24px;
  max-width: 760px;
}
.editorial h2 em { font-style: italic; color: var(--gold); }
.editorial p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}
.pillars {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 54px;
  flex-wrap: wrap;
}
.pillar { text-align: center; }
.pillar span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.pillar small {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   „CUM FUNCȚIONEAZĂ”
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step { text-align: center; padding: 12px; }
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ivory-3);
  border-top: 1px solid var(--line);
  padding: 66px 28px 30px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .brand__name { font-size: 1.5rem; }
.footer__brand p { color: var(--ink-soft); margin-top: 14px; max-width: 320px; font-size: 0.92rem; }
.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; color: var(--ink-soft); font-size: 0.92rem; }
.footer li a:hover { color: var(--gold-deep); }
.footer__bottom {
  max-width: 1240px;
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ============================================================
   COȘ (drawer) + OVERLAY
   ============================================================ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(32,28,24,0.5);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  z-index: 50;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 92vw;
  background: var(--ivory);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.1,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
}
.drawer__close { font-size: 1.4rem; color: var(--ink-soft); line-height: 1; padding: 4px 8px; }
.drawer__close:hover { color: var(--ink); }
.drawer__body { flex: 1; overflow-y: auto; padding: 10px 26px; }
.drawer__empty {
  text-align: center;
  color: var(--ink-faint);
  padding: 70px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}

.line-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.line-item__thumb {
  width: 64px; height: 80px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.li-thumb { width: 100%; height: 100%; object-fit: cover; }
.line-item__name { font-family: var(--serif); font-size: 1.05rem; line-height: 1.2; }
.line-item__cat { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  margin-top: 8px;
}
.qty button { width: 26px; height: 26px; font-size: 1rem; color: var(--ink-soft); }
.qty button:hover { color: var(--ink); }
.qty span { min-width: 26px; text-align: center; font-size: 0.85rem; }
.line-item__right { text-align: right; }
.line-item__price { font-size: 0.9rem; white-space: nowrap; }
.line-item__remove {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 10px;
  text-decoration: underline;
}
.line-item__remove:hover { color: var(--gold-deep); }

.drawer__foot { padding: 22px 26px 26px; border-top: 1px solid var(--line); }
.drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.drawer__total span { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.drawer__total strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.drawer__note { font-size: 0.74rem; color: var(--ink-faint); margin: 4px 0 16px; }

/* ============================================================
   MODAL FINALIZARE
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(32,28,24,0.55); backdrop-filter: blur(3px); }
.modal__card {
  position: relative;
  background: var(--ivory);
  width: 520px; max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 42px 42px 38px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
  transition: transform 0.35s ease;
}
.modal.is-open .modal__card { transform: translateY(0); }
.modal__close {
  position: absolute; top: 18px; right: 20px;
  font-size: 1.4rem; color: var(--ink-soft); line-height: 1;
}
.modal__head { text-align: center; margin-bottom: 26px; }
.modal__head .eyebrow { display: inline-block; margin-bottom: 10px; }
.modal__head h3 { font-family: var(--serif); font-weight: 500; font-size: 2rem; }
.modal__head p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 6px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 72px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error { border-color: #b4442e !important; }

.notify-choice { display: flex; gap: 10px; margin-bottom: 22px; }
.notify-choice button {
  flex: 1;
  padding: 11px;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--white);
  transition: all 0.2s;
}
.notify-choice button.is-active { border-color: var(--ink); background: var(--ink); color: var(--ivory); }

.order-summary {
  background: var(--ivory-2);
  border: 1px solid var(--line-soft);
  padding: 20px 22px;
  margin-top: 18px;
  text-align: left;
}
.order-summary h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.order-summary .row-line { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 5px 0; color: var(--ink-soft); }
.order-summary .total-line { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 600; color: var(--ink); }
.order-preview {
  margin-top: 18px;
  padding: 16px 18px;
  background: #06251c;
  color: #d9f2e4;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.55;
  white-space: pre-wrap;
  font-family: var(--sans);
}
.demo-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.5;
}
.checkout-privacy {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.5;
}
.order-error {
  margin: 12px 0 0;
  font-size: 0.86rem;
  color: var(--terracotta);
  text-align: center;
}
/* câmp-capcană anti-spam (invizibil pt oameni, ascuns off-screen) */
.hp-field { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.grid-error, .grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-faint);
  padding: 44px 20px;
}
.to-top {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 35;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: var(--gold-deep);
  color: var(--white);
  font-size: 1.35rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  box-shadow: 0 6px 20px rgba(43, 40, 32, 0.22);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:active { background: var(--ink); border-color: var(--ink); }
@media (hover: hover) {
  .to-top:hover { background: var(--ink); border-color: var(--ink); }
}

.load-more-wrap { text-align: center; margin-top: 40px; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink-faint); }
.btn--outline:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.check-mark {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }        /* brand pe toată lățimea, curat pe landscape */
  .footer__brand .wordmark { font-size: 2.2rem; }
}
@media (max-width: 720px) {
  .header__inner { display: flex; align-items: center; gap: 12px; padding: 15px 22px; }
  .menu-toggle { display: block; }
  .brand { flex: 1; align-items: center; }
  .brand__name { font-size: 1.32rem; }

  /* Meniu pe tot ecranul */
  .nav {
    position: fixed; inset: 0;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px;
    padding: 90px 30px 50px;
    background: var(--ivory);
    opacity: 0; visibility: hidden;
    transform: none;
    transition: opacity 0.35s ease, visibility 0.35s;
    z-index: 55;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a {
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--ink);
  }
  .nav a::after { display: none; }

  /* Header rămâne deasupra meniului (ca X-ul să fie apăsabil) */
  .header.nav-open { z-index: 60; background: transparent; border-color: transparent; box-shadow: none; }

  .card__add { opacity: 1; transform: none; } /* pe mobil butonul e mereu vizibil */
}
@media (max-width: 460px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 24px 13px; }
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .field.row { grid-template-columns: 1fr; }
  .modal__card { padding: 34px 24px; }
}

/* ============================================================
   ACTUALIZĂRI — logo scris de mână, iconiță coș, second-hand, scroll
   ============================================================ */

/* Wordmark scris de mână (cade elegant pe cursiv dacă nu e internet) */
.wordmark {
  font-family: "Parisienne", "Segoe Script", "Bradley Hand", cursive;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
  padding-top: 4px;
}
.footer__brand .wordmark { font-size: 2.6rem; display: inline-block; }

/* Iconiță coș */
.cart-ico { width: 23px; height: 23px; color: var(--ink); transition: color 0.25s; }
.icon-btn:hover .cart-ico { color: var(--gold-deep); }
.cart-count { top: -7px; right: -9px; }

/* Badge „Piesă unică” (fiecare articol second-hand e unicat) */
.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(2px);
  color: var(--ink);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--line-soft);
}

/* Imagini reale în carduri */
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2, .8, .2, 1);
}
.card:hover .card__img { transform: scale(1.06); }

/* Ancorare corectă la scurtături (compensează header-ul sticky) */
.section, .editorial, .hero { scroll-margin-top: 84px; }

@media (max-width: 860px) {
  .hero { min-height: 72vh; padding: 84px 22px; }
}
@media (max-width: 720px) {
  .wordmark { font-size: 1.7rem; }
  .footer__brand .wordmark { font-size: 2.2rem; }
}

/* ============================================================
   HOOK & VIZUALIZARE PRODUS
   ============================================================ */

.hero__hint {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Bandă de încredere sub hero */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.trust__item {
  text-align: center;
  padding: 30px 20px;
  border-left: 1px solid var(--line-soft);
}
.trust__item:first-child { border-left: none; }
.trust__item strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.trust__item span { font-size: 0.76rem; letter-spacing: 0.04em; color: var(--ink-faint); }

/* Cardul de produs — clic pentru detalii */
.card__media { cursor: pointer; transition: box-shadow 0.4s ease; }
.card:hover .card__media { box-shadow: 0 22px 46px -26px rgba(32, 28, 24, 0.45); }

/* „Piesă unică” în coș */
.line-item__unique {
  margin-top: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Secțiune Instagram / social proof */
.ig-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.ig-cell { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--line-soft); }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ig-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(32, 28, 24, 0);
  transition: background 0.35s ease;
}
.ig-cell:hover img { transform: scale(1.09); }
.ig-cell:hover::after { background: rgba(32, 28, 24, 0.12); }
.social__cta { text-align: center; margin-top: 34px; }

/* ---- Modal vizualizare produs ---- */
.pmodal {
  position: fixed; inset: 0;
  z-index: 70;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.pmodal.is-open { opacity: 1; visibility: visible; }
.pmodal__backdrop { position: absolute; inset: 0; background: rgba(32, 28, 24, 0.55); backdrop-filter: blur(3px); }
.pmodal__card {
  position: relative;
  background: var(--ivory);
  width: 920px; max-width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  transform: translateY(16px);
  transition: transform 0.35s ease;
}
.pmodal.is-open .pmodal__card { transform: translateY(0); }
.pmodal__close {
  position: absolute; top: 14px; right: 16px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(246, 241, 232, 0.85);
  font-size: 1.5rem; line-height: 1; color: var(--ink);
}
.pmodal__close:hover { background: var(--white); }
.pmodal__grid { display: grid; grid-template-columns: 1fr 1fr; }

.pgallery__main { aspect-ratio: 3 / 4; overflow: hidden; background: var(--ivory-2); }
.pgallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pgallery__thumbs { display: flex; gap: 10px; padding: 12px 14px; flex-wrap: wrap; }
.pthumb { width: 58px; height: 72px; overflow: hidden; border: 1px solid var(--line); opacity: 0.65; transition: opacity 0.2s, border-color 0.2s; }
.pthumb.is-active, .pthumb:hover { opacity: 1; border-color: var(--gold); }
.pthumb img { width: 100%; height: 100%; object-fit: cover; }

.pdetails {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 46px;
}
.pdetails__cat { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.pdetails__name { font-family: var(--serif); font-weight: 500; font-size: 2.2rem; line-height: 1.1; margin-bottom: 12px; }
.pdetails__price { font-size: 1.3rem; color: var(--ink); margin-bottom: 22px; }
.pdetails__stock { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 22px; }
.pdetails__desc { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; margin-bottom: 28px; }
.pdetails__note { font-size: 0.76rem; color: var(--ink-faint); margin-top: 14px; text-align: center; }

@media (max-width: 760px) {
  .pmodal__grid { grid-template-columns: 1fr; }
  /* poză mai scurtă: se vede haina, nu umărașul/podeaua, și rămâne loc pentru info */
  .pgallery__main { aspect-ratio: auto; height: 46vh; }
  .pgallery__thumbs { display: none; }   /* pe telefon navighezi prin swipe/săgeți */
  .pdetails { display: flex; flex-direction: column; padding: 24px 24px 32px; }
  .pdetails__name { font-size: 1.8rem; }
  /* butonul „Adaugă în coș” vine imediat sub info; descrierea trece dedesubt */
  .pdetails .btn--gold { order: 1; margin-top: 20px; }
  .pdetails__desc { order: 2; margin: 22px 0 0; }
  .pdetails__note { order: 3; margin-top: 14px; }
}
@media (max-width: 620px) {
  .trust { grid-template-columns: 1fr; }
  .trust__item { border-left: none; border-top: 1px solid var(--line-soft); }
  .trust__item:first-child { border-top: none; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   ANIMAȚII & RAFINAMENTE
   ============================================================ */

/* Apariție lină la scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Hero — intrare pe secvențe la încărcare + „lumină” care respiră */
.hero__inner { z-index: 1; }
.hero::after {
  content: "";
  position: absolute;
  top: -24%; left: 50%;
  width: min(940px, 120vw); height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(135, 155, 87, 0.18), transparent 70%);
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero .eyebrow { animation: fadeUp 0.8s 0.05s both; }
.hero h1       { animation: fadeUp 0.9s 0.20s both; }
.hero p        { animation: fadeUp 0.9s 0.38s both; }
.hero .btn     { animation: fadeUp 0.9s 0.54s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes breathe {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* Butoane — ridicare subtilă la hover */
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Header — umbră fină când derulezi */
.header { transition: box-shadow 0.35s ease; }
.header.is-scrolled { box-shadow: 0 12px 34px -22px rgba(32, 28, 24, 0.5); }
@media (max-width: 720px) {
  .header.is-scrolled .brand__iris { height: 32px; }   /* iris constant pe mobil (fără să crească) */
}

/* Coș — iconița „tresare” la adăugare */
.cart-ico.bump { animation: bump 0.45s ease; }
@keyframes bump {
  0%, 100% { transform: translateY(0) scale(1); }
  30%      { transform: translateY(-4px) scale(1.14); }
  60%      { transform: translateY(0) scale(1); }
}

/* Buton „Adaugă în coș” — confirmare */
.card__add.is-added { background: var(--gold); }

/* Indicator număr de poze pe card (apare la hover) */
.card__count {
  position: absolute;
  top: 12px; right: 12px; z-index: 2;
  background: rgba(32, 28, 24, 0.62);
  color: var(--ivory);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.card:hover .card__count { opacity: 1; transform: none; }

/* Numele produsului — accent la hover */
.card:hover .card__name { color: var(--gold-deep); }
.card__name { transition: color 0.3s ease; }

/* Respectă preferința de mișcare redusă */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero .eyebrow, .hero__values, .hero h1, .hero p, .hero .btn, .hero::after, .hero::before { animation: none !important; }
  .card__img, .hero:hover .hero__media img { transition: none !important; }
}

/* ============================================================
   DECORAȚIUNI & ESTETICĂ FINĂ
   ============================================================ */

/* Etichete cu liniuțe laterale: — NOUTĂȚI — */
.section__head .eyebrow,
.hero .eyebrow,
.editorial .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section__head .eyebrow::before,
.section__head .eyebrow::after,
.hero .eyebrow::before,
.hero .eyebrow::after,
.editorial .eyebrow::before,
.editorial .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* Ornament-diamant sub titlurile de secțiune — scos pentru mai puțin ornament */
.section__head::after { content: none; }

/* Indicator de scroll în hero */
.hero::before {
  content: "";
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollcue 2.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes scrollcue {
  0%, 100% { opacity: 0.25; height: 34px; }
  50%      { opacity: 1;    height: 52px; }
}

.card { text-align: center; }
.card__name { display: inline-block; position: relative; }
.card__name::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -5px;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.card:hover .card__name::after { width: 34px; }

/* Cifrele pașilor — în cerc auriu */
.step__num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(135, 155, 87, 0.45);
  border-radius: 50%;
  font-size: 1.9rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.step:hover .step__num { border-color: var(--gold); transform: translateY(-3px); }

/* Secțiunea închisă — strălucire caldă în fundal */
.editorial { position: relative; overflow: hidden; }
.editorial::before {
  content: "";
  position: absolute;
  top: -28%; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(135, 155, 87, 0.16), transparent 70%);
  pointer-events: none;
}
.editorial__inner { position: relative; z-index: 1; }

/* Footer — ornament centrat sus */
.footer { position: relative; }
.footer::before {
  content: "";
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 8px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='8' viewBox='0 0 60 8'%3E%3Cline x1='0' y1='4' x2='23' y2='4' stroke='%23879B57' stroke-width='1'/%3E%3Crect x='27' y='1' width='6' height='6' fill='%23879B57' transform='rotate(45 30 4)'/%3E%3Cline x1='37' y1='4' x2='60' y2='4' stroke='%23879B57' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.7;
}

/* Accent auriu la selecție și scrollbar */
::selection { background: rgba(135, 155, 87, 0.9); color: #fff; }
html { scrollbar-color: var(--gold) var(--ivory-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ivory-2); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 3px solid var(--ivory-2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none !important; }
  .hero__emblem { animation: none !important; }
}

/* ============================================================
   SĂGEȚI GALERIE + ORNAMENTE HERO
   ============================================================ */

/* Săgeți pe carduri (apar la hover) */
.card__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  background: none;
  color: var(--ink);
  font-size: 2rem; font-weight: 300; line-height: 1;
  padding: 12px 8px;
  opacity: 0; z-index: 3;
  text-shadow: 0 1px 8px rgba(252, 250, 243, 0.8);
  transition: opacity 0.3s ease, color 0.2s ease;
}
.card__nav--prev { left: 2px; }
.card__nav--next { right: 2px; }
.card__media:hover .card__nav { opacity: 0.8; }
.card__nav:hover { color: var(--gold-deep); opacity: 1; }

/* buline PE poză, jos — stil BMAN (fără spațiu gol) */
.card__dots {
  position: absolute; left: 0; right: 0; bottom: 12px; z-index: 2;
  display: flex; justify-content: center; gap: 6px;
}
.card__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 3px rgba(30, 26, 20, 0.4);
  transition: background 0.25s ease;
}
.card__dot.is-active { background: #fff; }

/* Săgeți în fereastra produsului */
.pgallery__main { position: relative; }
.pnav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246, 241, 232, 0.9);
  color: var(--ink);
  font-size: 1.55rem; line-height: 1;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}
.pnav--prev { left: 12px; }
.pnav--next { right: 12px; }
.pnav:hover { background: var(--white); color: var(--gold-deep); }

/* Hero — chenar auriu simplu (linia dublă interioară scoasă pentru mai puțin ornament) */
.hero__frame {
  position: absolute; inset: clamp(16px, 3vw, 32px);
  border: 1px solid rgba(135, 155, 87, 0.30);
  pointer-events: none; z-index: 1;
}
.hero__frame::after { content: none; }
.hero__emblem { display: block; margin: 0 auto 18px; animation: fadeUp 0.8s both; }
.hero__emblem svg { display: block; margin: 0 auto; }

/* Săgeți galerie mereu vizibile pe touch (fără hover) */
@media (hover: none) {
  .card__nav { opacity: 0.85; }
}

/* ============================================================
   ÎMBOGĂȚIRE DESIGN — hero split, secțiuni noi, ritm tonal
   ============================================================ */

:root {
  --fs-hero: clamp(2.6rem, 6vw, 5rem);
  --fs-h2:   clamp(1.9rem, 4vw, 3rem);
  --lh-display: 1.06;
}

/* ---- HERO: poză de brand pe fundal (stil adora) ---- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(64px, 10vw, 120px) clamp(24px, 6vw, 56px);
  overflow: hidden;
}
.hero::before, .hero::after { display: none; }        /* scoate indicatorul de scroll + glow-ul vechi */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  animation: heroZoom 22s ease-out both;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(72% 58% at 50% 50%, rgba(250, 247, 240, 0.55) 0%, rgba(250, 247, 240, 0.14) 55%, transparent 78%),
    linear-gradient(180deg, rgba(250, 247, 240, 0.14) 0%, transparent 30%, transparent 68%, rgba(250, 247, 240, 0.30) 100%);
}
.hero__frame {
  position: absolute; inset: clamp(14px, 2.4vw, 30px); z-index: 2;
  border: 1px solid rgba(135, 155, 87, 0.28);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; max-width: 720px; }
.hero .eyebrow { color: var(--gold-deep); display: inline-flex; margin-bottom: 20px; }
.hero h1 { color: var(--ink); font-size: var(--fs-hero); line-height: var(--lh-display); margin-bottom: 22px; }
.hero h1 em { color: var(--gold-deep); font-style: italic; }
.hero p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 34px; }
/* linia de valori (Atenție · Noutate · Calitate · Confort) */
.hero__values {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(0.6rem, 1.5vw, 0.72rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  animation: fadeUp 0.8s 0.05s both;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* buton închis pe hero-ul luminos (fundal pal) */
.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.hero .btn--light { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.hero .btn--light:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

/* ---- CATEGORII ---- */
.cats {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) clamp(20px, 4vw, 28px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.cat { position: relative; aspect-ratio: 4 / 5; overflow: hidden; display: block; }
.cat img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.9s cubic-bezier(.2, .8, .2, 1); }
.cat:hover img { transform: scale(1.05); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 52%, rgba(32, 28, 24, 0.55)); }
.cat__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 22px 24px; color: var(--ivory);
  font-family: var(--serif); font-size: 1.55rem; letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .cats { grid-template-columns: 1fr; gap: 14px; }
  .cat { aspect-ratio: 16 / 10; }              /* benzi mai scunde pe telefon */
  .cat__label { font-size: 1.35rem; }
}

/* ---- LOOKBOOK / Piesa săptămânii ---- */
.lookbook { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: stretch; background: var(--ivory-2); }
.lookbook__figure { min-height: clamp(360px, 55vw, 620px); overflow: hidden; }
.lookbook__figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lookbook__text {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(36px, 6vw, 84px); max-width: 54ch;
}
.lookbook__text .eyebrow { display: inline-block; margin-bottom: 14px; }
.lookbook__text h2 { font-family: var(--serif); font-weight: 500; font-size: var(--fs-h2); line-height: 1.12; margin-bottom: 16px; }
.lookbook__text p { color: var(--ink-soft); margin-bottom: 26px; }
@media (max-width: 820px) { .lookbook { grid-template-columns: 1fr; } }

/* ---- CITAT ---- */
.pullquote {
  position: relative; overflow: hidden;
  padding: clamp(120px, 20vw, 210px) 24px;
  text-align: center;
}
.pullquote__bg {
  position: absolute; left: 0; right: 0; top: -14%; height: 128%;
  background: url("assets/quote-bg.jpg") center 30% / cover no-repeat;
  z-index: 0; will-change: transform;
}
.pullquote::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 88% 62% at 50% 45%, rgba(40, 48, 30, 0.56) 0%, rgba(40, 48, 30, 0.22) 55%, transparent 78%),
    linear-gradient(180deg, var(--ivory) 0%, rgba(242, 235, 217, 0) 15%, rgba(242, 235, 217, 0) 85%, var(--ivory) 100%);
}
.pullquote__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.pullquote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.32;
  color: var(--white); text-shadow: 0 2px 26px rgba(30, 26, 20, 0.32);
}
.pullquote cite {
  display: block; margin-top: 24px; font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(252, 250, 243, 0.85);
}
/* banda verde urcă 1px peste citat — dispare orice hairline de tranziție */
.pullquote + .editorial { margin-top: -1px; }

/* Pe telefon: fără parallax (poate tremura / lăsa urmă), fundal static curat */
@media (max-width: 820px) {
  .pullquote { padding: clamp(100px, 26vw, 170px) 22px; }
  .pullquote__bg { top: 0; height: 100%; transform: none !important; }
}

.editorial__inner { padding: clamp(64px, 9vw, 110px) 28px; }
.editorial h2 { font-size: var(--fs-h2); }

/* ---- NEWSLETTER ---- */
.subscribe { background: var(--ivory-3); text-align: center; padding: clamp(64px, 9vw, 120px) 24px; }
.subscribe__inner { max-width: 540px; margin: 0 auto; }
.subscribe .eyebrow { display: inline-block; margin-bottom: 14px; }
.subscribe h2 { font-family: var(--serif); font-weight: 500; font-size: var(--fs-h2); line-height: 1.14; margin-bottom: 12px; }
.subscribe__inner > p { color: var(--ink-soft); }
.subscribe form { display: flex; gap: 10px; margin-top: 26px; }
.subscribe input { flex: 1; padding: 14px 16px; border: 1px solid var(--line); background: var(--white); font-family: var(--sans); font-size: 0.95rem; color: var(--ink); transition: border-color 0.2s ease; }
.subscribe input:focus { outline: none; border-color: var(--gold); }
.subscribe .btn { white-space: nowrap; }
.subscribe__micro { margin-top: 16px; font-size: 0.8rem; color: var(--ink-faint); }

.subscribe__micro a,
.editorial p a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}
.subscribe__micro a:hover,
.editorial p a:hover { color: var(--ink); }
.subscribe__done { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--gold-deep); margin-top: 28px; }
@media (max-width: 460px) { .subscribe form { flex-direction: column; } }

/* ---- Tipografie recalibrată (mai calmă) ---- */
.section__head h2 { font-size: var(--fs-h2); }

/* ---- Mișcare redusă pentru elementele noi ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none !important; }
}

/* ============================================================
   HERO — LAYOUT SPLIT (editorial) + SELECTOR DE VARIANTĂ
   ============================================================ */

.hero[data-layout="split"] {
  background: var(--ivory-2);
  text-align: left;
  justify-content: flex-start;
  min-height: min(82vh, 720px);
}
.hero[data-layout="split"] .hero__bg {
  left: auto; right: 0;
  width: 52%;
}
.hero[data-layout="split"] .hero__scrim {
  left: auto; right: 0; width: 52%;
  background: linear-gradient(90deg, var(--ivory-2) 0%, rgba(240, 233, 221, 0.35) 14%, transparent 40%);
}
.hero[data-layout="split"] .hero__frame { display: none; }
.hero[data-layout="split"] .hero__inner {
  max-width: 44%;
  margin-left: clamp(24px, 6vw, 88px);
}
.hero[data-layout="split"] .eyebrow { color: var(--gold-deep); justify-content: flex-start; }
.hero[data-layout="split"] h1 { color: var(--ink); }
.hero[data-layout="split"] h1 em { color: var(--gold-deep); }
.hero[data-layout="split"] p { color: var(--ink-soft); margin-left: 0; }
.hero[data-layout="split"] .btn--light {
  background: var(--ink); border-color: var(--ink); color: var(--ivory);
}
.hero[data-layout="split"] .btn--light:hover {
  background: transparent; color: var(--ink); border-color: var(--ink);
}

@media (max-width: 860px) {
  .hero[data-layout="split"] {
    flex-direction: column; justify-content: flex-start; text-align: center;
    padding: 0 0 clamp(40px, 8vw, 64px);
  }
  .hero[data-layout="split"] .hero__bg {
    position: relative; width: 100%; height: 46vw; max-height: 340px;
    animation: none;
  }
  .hero[data-layout="split"] .hero__scrim { display: none; }
  .hero[data-layout="split"] .hero__inner {
    max-width: 640px; margin: clamp(28px, 6vw, 44px) auto 0;
    padding: 0 clamp(24px, 6vw, 40px);
  }
  .hero[data-layout="split"] .eyebrow { justify-content: center; }
  .hero[data-layout="split"] p { margin: 0 auto 34px; }
}

/* Selector de variantă hero — discret, doar pentru previzualizare */
.hero-switch {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 13px 15px 11px;
  background: rgba(250, 247, 240, 0.94);
  border: 1px solid rgba(135, 155, 87, 0.34);
  box-shadow: 0 14px 40px -18px rgba(40, 30, 18, 0.5);
  backdrop-filter: blur(6px);
  font-family: var(--sans);
}
.hero-switch__title {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-switch__title em { color: var(--gold-deep); font-style: normal; }
.hero-switch__row { display: flex; gap: 7px; }
.hero-switch__row button {
  width: 30px; height: 30px;
  border: 1px solid rgba(135, 155, 87, 0.5);
  background: transparent; color: var(--ink-soft);
  font-family: var(--sans); font-size: 0.82rem;
  cursor: pointer; transition: all 0.2s ease;
}
.hero-switch__row button:hover { border-color: var(--gold-deep); color: var(--ink); }
.hero-switch__row button.is-active {
  background: var(--gold); border-color: var(--gold); color: #fff;
}
.hero-switch__name {
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink);
  font-style: italic; font-family: var(--serif);
}
@media (max-width: 560px) {
  .hero-switch { right: 12px; bottom: 12px; padding: 10px 12px 9px; }
  .hero-switch__row button { width: 27px; height: 27px; }
}

/* ============================================================
   FILTRU MĂRIME + MĂRIME PE PRODUS + ACCENT CĂRĂMIZIU
   ============================================================ */
.filters {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px;
  max-width: 1240px; margin: 0 auto 42px;
}
.filter-select { display: inline-flex; align-items: center; gap: 9px; }
.filter-select select {
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
  background-color: var(--white); border: 1px solid var(--line);
  padding: 11px 36px 11px 15px; cursor: pointer;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23647F3E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 5 6 8 9 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  transition: border-color 0.2s ease;
}
.filter-select select:hover,
.filter-select select:focus { outline: none; border-color: var(--gold); }
.filters__label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
}

.card__size { display: block; margin-top: 7px; color: var(--ink-faint); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; }
.card__size::before { content: "·"; margin: 0 8px; opacity: 0.6; display: none; }

.pdetails__size { display: block; margin-top: 12px; color: var(--ink-faint); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.pdetails__size::before { content: "·"; margin: 0 9px; opacity: 0.6; display: none; }
@media (max-width: 720px) {
  .pdetails__size { display: inline; margin-top: 0; }
  .pdetails__size::before { display: inline; }
}

/* accent cald cărămiziu la confirmarea adăugării în coș */
.card__add.is-added { background: var(--terracotta) !important; }

@media (max-width: 560px) {
  .filters { gap: 12px; margin-bottom: 32px; }
  .filter-select { width: 100%; justify-content: space-between; }
  .filter-select select { flex: 1; }
}