/*
Theme Name: Ecolight
Theme URI: https://min-code.com
Author: MinCode Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: ecolight.md
*/

/* ===== Tokens ===== */
:root {
  --bg: #0E0E10;
  --bg-2: #131316;
  --bg-3: #1A1A1D;
  --bg-deep: #08080A;
  --line: rgba(232, 217, 181, 0.10);
  --line-2: rgba(232, 217, 181, 0.18);
  --ink: #F2EEE5;
  --ink-dim: #B8B3A8;
  --ink-mute: #7E7A72;
  --gold: #C9A86A;
  --gold-soft: #E8D9B5;
  --gold-deep: #9C8048;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* ===== Typography ===== */
.display, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.lede {
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, transform .35s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold);
  color: #15120A;
  box-shadow: 0 10px 40px -10px rgba(201, 168, 106, 0.55);
}
.btn--solid {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 70%);
  color: #15120A;
  border-color: transparent;
}
.btn--solid:hover {
  background: var(--gold);
  color: #15120A;
  transform: translateY(-1px);
}
.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover {
  background: rgba(232, 217, 181, 0.06);
  color: var(--gold-soft);
}
.btn .arrow { width: 14px; height: 8px; display: inline-block; position: relative; }
.btn .arrow::after {
  content: ""; position: absolute; inset: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M0 4h12M9 1l3 3-3 3' fill='none' stroke='black' stroke-width='1.2'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M0 4h12M9 1l3 3-3 3' fill='none' stroke='black' stroke-width='1.2'/></svg>") center / contain no-repeat;
  transition: transform .35s ease;
}
.btn:hover .arrow::after { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 18px 0;
  transition: padding .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.logo__mark {
  display: inline-block; width: 22px; height: 22px; position: relative; transform: translateY(4px);
}
.logo__mark::before, .logo__mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
}
.logo__mark::before {
  background: radial-gradient(closest-side, var(--gold-soft), var(--gold) 55%, transparent 75%);
  filter: blur(1px);
  opacity: 0.95;
}
.logo__mark::after {
  border: 1px solid var(--gold);
  border-radius: 50%;
  inset: 4px;
  background: var(--bg);
}
.logo__name { font-weight: 500; }
.logo__tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}
/* Logo imagine (header + footer) */
.logo__img {
  display: block;
  height: 70px!important;
  width: auto;
}
.site-header.is-scrolled .logo__img { height: 42px; }
.site-footer__brand .logo__img { height: 80px; }
@media (max-width: 640px) {
  .logo__img,
  .site-header.is-scrolled .logo__img { height: 40px; }
}
.main-nav {
  display: flex; gap: 36px; align-items: center;
  justify-self: center;
}
.main-nav a {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: color .25s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease, left .35s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--gold-soft); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; left: 0; }

/* Item evidențiat (ex. „La comandă") — pill cu contur auriu */
.main-nav a.nav-cta {
  color: var(--gold-soft);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 18px;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover,
.main-nav a.nav-cta[aria-current="page"] {
  background: rgba(201, 168, 106, 0.10);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.site-header__cta { justify-self: end; display: inline-flex; align-items: center; gap: 18px; }
.site-header__phone { font-size: 12px; letter-spacing: 0.12em; color: var(--ink-dim); white-space: nowrap; }
.site-header__phone strong { color: var(--gold-soft); font-weight: 500; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
  width: 42px; height: 42px;
  border-radius: 999px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 16px; height: 1px; background: currentColor;
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1px; background: currentColor;
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

/* Linkuri vizibile doar în drawer-ul mobil */
.main-nav__phone,
.main-nav__cta { display: none; }

@media (max-width: 1040px) {
  .site-header__phone { display: none; }
}
/* Laptop-uri mici / 10" (1024–1366px): strânge meniul ca să încapă confortabil */
@media (max-width: 1180px) and (min-width: 901px) {
  .main-nav { gap: 24px; }
  .main-nav a { letter-spacing: 0.14em; }
  .site-header__cta { gap: 12px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; position: relative; z-index: 95; }
  .site-header__cta .btn { display: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { z-index: 100; }

  /* Hamburger → X când meniul e deschis */
  body.nav-open .menu-toggle span { background: transparent; }
  body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
  body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

  /* Drawer lateral */
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    justify-self: stretch;
    gap: 0;
    padding: 104px 26px 40px;
    background: rgba(12, 12, 14, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 90;
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: translateX(0); }

  .main-nav a {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: var(--ink);
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
  }
  .main-nav a::after { display: none; }

  /* CTA „La comandă" (nav-cta) — redevine link simplu în listă */
  .main-nav a.nav-cta {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 16px 2px;
  }
  .main-nav a.nav-cta:hover,
  .main-nav a.nav-cta[aria-current="page"] { background: transparent; }

  .main-nav__phone {
    display: block;
    margin-top: 24px;
    font-size: 18px !important;
    color: var(--gold-soft) !important;
    border-bottom: 0 !important;
    letter-spacing: 0.06em !important;
  }
  .main-nav__cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0;
  }

  /* Fundal întunecat (creat din JS) */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 84;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* Peste 900px drawer-ul nu există: ascunde backdrop-ul indiferent de stare */
@media (min-width: 901px) {
  .nav-backdrop { display: none; }
}

/* ===== Generic section ===== */
section { position: relative; }
.section { padding: 120px 0; }
.section--tight { padding: 120px 0; }
.section--bordered { border-top: 1px solid var(--line); }
.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
.section__title {
  font-size: clamp(36px, 4.8vw, 64px);
  max-width: 16ch;
}
.section__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.section__sub {
  color: var(--ink-dim);
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .section__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ===== Footer ===== */
.site-footer {
  background: #07070A;
  border-top: 1px solid var(--line);
  padding: 90px 0 36px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer__brand .logo { font-size: 26px; }
.site-footer__tag {
  color: var(--ink-dim);
  font-size: 13px;
  margin-top: 18px;
  max-width: 38ch;
  line-height: 1.7;
}
.site-footer__title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 18px;
}
.site-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a,
.site-footer__list span {
  color: var(--ink-dim);
  font-size: 14px;
  transition: color .25s ease;
}
.site-footer__list a:hover { color: var(--gold-soft); }
.site-footer__contact-line {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
}
.site-footer__contact-line strong { color: var(--ink); font-weight: 500; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.socials a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,106,0.06); }
.socials svg { width: 16px; height: 16px; }

.site-footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.site-footer__bottom a:hover { color: var(--gold-soft); }
/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 90vh;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__track { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero__slide.is-active .hero__media { transform: scale(1); }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.15) 35%, rgba(14,14,16,0.65) 75%, rgba(8,8,10,0.92) 100%),
    radial-gradient(120% 80% at 20% 60%, rgba(14,14,16,0.55), transparent 60%);
}
.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 160px;
  z-index: 2;
}
.hero__content {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 1s ease .3s, transform 1s ease .3s;
}
.hero__slide.is-active .hero__content { opacity: 1; transform: translateY(0); }
.hero__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__index::before { content: ""; width: 32px; height: 1px; background: var(--gold); display: inline-block; }
.hero__title {
  font-size: clamp(40px, 6.2vw, 86px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 30px;
}
.hero__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero__sub {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 60px;}

/* Hero controls */
.hero__nav {
  position: absolute;
  z-index: 4;
  bottom: 40px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  max-width: 1440px;
  margin: auto
}
.hero__dots { display: flex; gap: 8px; align-items: center; }
.hero__dot {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 4px;
  cursor: pointer;
}
.hero__dot i {
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(232, 217, 181, 0.25);
  transition: background .35s ease, width .35s ease;
}
.hero__dot[aria-current="true"] i {
  background: var(--gold);
  width: 56px;
}
.hero__arrows { display: flex; gap: 10px; }
.hero__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(14,14,16,0.55);
  backdrop-filter: blur(6px);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.hero__arrow:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(14,14,16,0.75); }
.hero__arrow svg { width: 16px; height: 16px; }

.hero__counter {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 28px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero { height: auto; min-height: 100vh; max-height: none; }
  .hero__inner { padding-bottom: 130px; padding-top: 140px; }
  .hero__counter { display: none; }
}

/* ===== Category grid ===== */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.cat {
  grid-column: span 6;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: border-color .4s ease, transform .5s ease, background .4s ease;
}
.cat:hover { border-color: var(--line-2); transform: translateY(-3px); }
.cat:nth-child(3), .cat:nth-child(4) { grid-column: span 6; }
.cat--feature { grid-column: span 12; min-height: 260px; }

@media (max-width: 980px) {
  .cat:not(.cat--feature) { grid-column: span 6; }
  .cat--feature { grid-column: span 12; }
}
@media (max-width: 720px) {
  .cat, .cat--feature { grid-column: span 12; }
}

.cat__media {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #0a0a0c;
}
.cat__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease, filter 1s ease;
  filter: brightness(0.85) saturate(0.95);
}
.cat:hover .cat__media img { transform: scale(1.06); filter: brightness(0.95) saturate(1); }
.cat__badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  z-index: 2;
}
.cat__body {
  padding: 24px 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.cat__title {
  font-size: 30px;
  line-height: 1.05;
}
.cat__title small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.cat__desc {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.65;
}
.cat__subs {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cat__sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color .25s ease;
  position: relative;
}
.cat__sub:not(:last-child)::after {
  content: ""; display: inline-block; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-deep);
  margin-left: 14px;
  vertical-align: middle;
}
.cat:hover .cat__sub { color: var(--ink-dim); }
.cat__arrow {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
  background: rgba(14,14,16,0.5);
  backdrop-filter: blur(4px);
  z-index: 3;
  transition: background .35s, color .35s, border-color .35s, transform .4s;
}
.cat:hover .cat__arrow { background: var(--gold); color: #15120A; border-color: var(--gold); transform: rotate(-45deg); }

/* Featured card */
.cat--feature {
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(201,168,106,0.18), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(201,168,106,0.08), transparent 70%),
    linear-gradient(135deg, #1A1610 0%, #0E0E10 60%);
  border-color: rgba(201,168,106,0.30);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
.cat--feature::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'><defs><radialGradient id='g' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='%23C9A86A' stop-opacity='0.35'/><stop offset='100%25' stop-color='%23C9A86A' stop-opacity='0'/></radialGradient></defs><circle cx='480' cy='120' r='180' fill='url(%23g)'/></svg>") no-repeat top right / 60% auto;
  opacity: 0.85;
  pointer-events: none;
}
.cat--feature .cat__inner {
  position: relative; z-index: 2;
  padding: 44px 48px;
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.cat--feature .cat__title {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--gold-soft);
}
.cat--feature .cat__title em { font-style: italic; }
.cat--feature .cat__desc {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 56ch;
}
.cat--feature .cat__desc strong { color: var(--ink); font-weight: 500; }
.cat--feature .cat__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 4px 0 18px;
}
.cat--feature .chip {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid rgba(201,168,106,0.35);
  border-radius: 999px;
}
.cat--feature .cat__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.cat--feature .cat__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(1.05) contrast(1.05);
}
.cat--feature .cat__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #0E0E10 0%, transparent 35%, transparent 80%, rgba(8,8,10,0.4) 100%);
}
.cat--feature .cat__visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 40% at 70% 30%, rgba(201,168,106,0.30), transparent 65%);
  z-index: 2;
  mix-blend-mode: screen;
}
@media (max-width: 820px) {
  .cat--feature { grid-template-columns: 1fr; }
  .cat--feature .cat__visual { min-height: 220px; order: -1; }
}

/* ===== CTA banner ===== */
.cta-band {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(201,168,106,0.10), transparent 70%),
    linear-gradient(180deg, rgba(20,17,10,0.88) 0%, rgba(26,21,11,0.92) 100%),
    url("/wp-content/uploads/2026/06/pdf.jpg") center / cover no-repeat;
  border-top: 1px solid rgba(201,168,106,0.18);
  border-bottom: 1px solid rgba(201,168,106,0.18);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 100% at 15% 50%, rgba(201,168,106,0.10), transparent 70%),
    radial-gradient(50% 100% at 85% 50%, rgba(201,168,106,0.12), transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-band__eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
}
.cta-band__title em { font-style: italic; color: var(--gold-soft); }
.cta-band__big {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,106,0.55);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: center;
}
.cta-band__big sup { font-size: 0.55em; vertical-align: 0.6em; margin-left: 4px; }
.cta-band__desc {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 24px;
  max-width: 80%;
}
@media (max-width: 980px) {
  .cta-band__inner { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .cta-band__big { text-align: left; }
}

/* Catalog block — formular email inline în coloana dreaptă, pe un card mai deschis */
.cta-catalog {
  max-width: 480px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(232, 217, 181, 0.22);
  border-radius: var(--r-lg);
  padding: 30px 30px 26px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
@media (max-width: 540px) { .cta-catalog { padding: 24px 20px 20px; } }
.cta-catalog .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
.cta-catalog .catalog-form__row {
  display: flex;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}
.cta-catalog .wpcf7-form-control-wrap { flex: 1 1 220px; width: auto; display: block; }
.cta-catalog input[type="email"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  padding: 14px 20px;
  font-family: var(--sans);
  font-weight: 300;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.cta-catalog input[type="email"]::placeholder { color: var(--ink-mute); }
.cta-catalog input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.12);
}
.cta-catalog input.form-submit,
.cta-catalog button.form-submit {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 70%);
  color: #15120A;
  border: 0;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-catalog input.form-submit:hover,
.cta-catalog button.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -14px rgba(201, 168, 106, 0.55);
}
.catalog-form__hint { color: var(--ink-mute); font-size: 12px; margin: 12px 0 0; width: 100%; }
.cta-catalog .wpcf7-spinner { display: none; }
.cta-catalog .wpcf7-response-output {
  width: 100%;
  margin: 14px 0 0 !important;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13px;
  background: var(--bg-3);
  color: var(--ink-dim);
}
.cta-catalog .wpcf7-not-valid-tip { font-size: 11px; color: #DF6E55; margin-top: 6px; }
.cta-catalog .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(31, 138, 91, 0.08);
  border-color: rgba(31, 138, 91, 0.35);
  color: var(--ink);
}
@media (max-width: 560px) {
  .cta-catalog .catalog-form__row { flex-direction: column; }
  .cta-catalog input.form-submit { width: 100%; }
}

/* ===== Projects gallery ===== */
.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  grid-auto-rows: 200px;
}
.project {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.project img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease, filter 1s ease;
  filter: brightness(0.75) saturate(0.95);
}
.project::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(8,8,10,0.85), transparent 70%),
    linear-gradient(180deg, transparent 50%, rgba(8,8,10,0.5) 100%);
  pointer-events: none;
  transition: opacity .5s ease;
}
.project::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(30% 30% at 50% 60%, rgba(201,168,106,0.18), transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .6s ease;
  z-index: 2;
}
.project:hover img { transform: scale(1.08); filter: brightness(0.95) saturate(1.05); }
.project:hover::before { opacity: 1; }
.project__info {
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  z-index: 3;
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform .5s ease, opacity .5s ease;
}
.project:hover .project__info { transform: translateY(0); opacity: 1; }
.project__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}
.project__loc {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
/* Masonry placement */
.project--a { grid-column: span 7; grid-row: span 2; }
.project--b { grid-column: span 5; grid-row: span 1; }
.project--c { grid-column: span 5; grid-row: span 1; }
.project--d { grid-column: span 4; grid-row: span 1; }
.project--e { grid-column: span 4; grid-row: span 2; }
.project--f { grid-column: span 4; grid-row: span 1; }
.project--g { grid-column: span 4; grid-row: span 1; }
.project--h { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  .projects { grid-auto-rows: 180px; }
  .project--a { grid-column: span 12; grid-row: span 2; }
  .project--b, .project--c { grid-column: span 6; }
  .project--d, .project--e, .project--f, .project--g, .project--h { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 540px) {
  .project { grid-column: span 12 !important; grid-row: span 1 !important; }
}

.projects-foot {
  display: flex; justify-content: center; margin-top: 56px;
}

/* ===== Promo products ===== */
.promos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .promos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promos { grid-template-columns: 1fr; } }

.promo {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .35s ease, transform .5s ease;
}
.promo:hover { border-color: var(--line-2); transform: translateY(-3px); }
.promo__media {
  position: relative;
  background: radial-gradient(60% 60% at 50% 45%, #25201b 0%, #0c0c0e 80%);
  overflow: hidden;
}
.promo__media img {
  display: block;
  width: 100%; height: auto; object-fit: contain;
  transition: transform 1s ease;
}
.promo:hover .promo__media img { transform: scale(1.05); }
.promo__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: #15120A;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 2;
}
.promo__tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid rgba(201,168,106,0.35);
  border-radius: 999px;
  background: rgba(14,14,16,0.55);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.promo__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.promo__cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.promo__name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.promo__desc {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 8px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.promo__prices {
  display: flex; align-items: baseline; gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
/* Prețuri promo home + card categorie + related-products — vezi blocul unificat
   „Unified product card price" la finalul fișierului. */

/* =====================================================================
   Category archive (taxonomy-product_cat) — shared by all categories
   ===================================================================== */

/* ===== Page hero ===== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 100% at 80% 20%, rgba(201,168,106,0.12), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(201,168,106,0.06), transparent 70%),
    linear-gradient(180deg, #131316 0%, #0E0E10 100%);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 40% at 78% 35%, rgba(232, 217, 181, 0.10), transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.crumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.crumbs a { color: var(--ink-mute); transition: color .25s ease; }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span { color: var(--ink-dim); }
.crumbs .sep { color: var(--gold-deep); }

.page-hero__title {
  font-size: clamp(40px, 6.2vw, 90px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 28px;
}
.pf-tabs-bar .container {
  text-align: center;
}
.page-hero__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.page-hero__sub {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 80ch;
  margin-bottom: 32px;
}
.page-hero__meta {
  display: flex; gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  flex-wrap: wrap;
}
.page-hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.page-hero__meta .lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.page-hero__meta .val {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
}
.page-hero__visual {
  position: relative;
  height: 360px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(55% 60% at 50% 50%, rgba(201,168,106,0.22), transparent 65%),
    radial-gradient(80% 80% at 50% 60%, #1A1612 0%, #08080A 80%);
}
.page-hero__visual::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 220px; height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(252, 242, 218, 0.95), rgba(232, 217, 181, 0.6) 35%, rgba(201, 168, 106, 0.18) 60%, transparent 80%);
  filter: blur(1px);
}
.page-hero__visual::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 130px; height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #FBF6EA;
  box-shadow:
    inset 0 0 30px rgba(232, 217, 181, 0.8),
    0 0 60px rgba(252, 242, 218, 0.5),
    0 0 120px rgba(201, 168, 106, 0.35);
  z-index: 2;
}
@media (max-width: 900px) {
  .page-hero { padding: 140px 0 60px; }
  .page-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__visual { height: 240px; }
}

/* ===== Toolbar ===== */
.toolbar {
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 64px;
  background: rgba(14, 14, 16, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 40;
}
.toolbar__row {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.toolbar__left {
  display: flex; align-items: baseline; gap: 18px;
}
.toolbar__count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.toolbar__count em { color: var(--gold-soft); font-style: italic; font-weight: 500; }
.toolbar__hint {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.toolbar__right { display: flex; align-items: center; gap: 16px; }

.sort {
  display: inline-flex; align-items: center; gap: 12px;
  position: relative;
}
.sort__label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.sort__select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 12px 42px 12px 18px;
  border-radius: 999px;
  transition: border-color .25s ease, color .25s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C9A86A' stroke-width='1.3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px auto;
  min-width: 240px;
}
.sort__select:hover { border-color: var(--gold); color: var(--gold-soft); }
.sort__select:focus { outline: none; border-color: var(--gold); }
.sort__select option { background: var(--bg-2); color: var(--ink); }

@media (max-width: 720px) {
  .toolbar { position: static; }
  .sort__select { min-width: 0; flex: 1; }
  .sort { flex: 1; }
}

/* ===== Product grid ===== */
.grid-wrap { padding: 56px 0 64px; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .grid { grid-template-columns: 1fr; } }

.grid-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--ink-dim);
  font-size: 16px;
}
.grid-empty a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,168,106,0.35); }

.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .35s ease, transform .5s ease, box-shadow .35s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: cardIn .55s ease forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.grid--anim .card { animation-delay: calc(var(--i, 0) * 40ms); }
.card:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 30px 50px -32px rgba(0,0,0,0.7), 0 0 0 1px rgba(201, 168, 106, 0.15);
}

.card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(201,168,106,0.08), transparent 70%),
    radial-gradient(50% 80% at 50% 100%, rgba(0,0,0,0.5), transparent 70%),
    linear-gradient(180deg, #1d1d20 0%, #0f0f12 100%);
}
/* Fără imagine: păstrăm un chenar ca placeholder-ul (poziționat absolut) să aibă spațiu. */
.card__media:has(.card__placeholder) { aspect-ratio: 4 / 3.2; }
.card__media img,
.card__media .card__img {
  display: block;
  width: 100%; height: auto; object-fit: contain;
  transition: transform .8s ease, filter .8s ease;
  filter: brightness(0.92) saturate(0.98);
}
.card:hover .card__media img,
.card:hover .card__media .card__img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.05);
}
.card__media::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(252, 242, 218, 0.10), rgba(201, 168, 106, 0.05) 40%, transparent 75%);
  pointer-events: none;
  transition: width .6s ease, background .6s ease;
  z-index: 1;
  mix-blend-mode: screen;
}
.card:hover .card__media::after {
  width: 100%;
  background: radial-gradient(closest-side, rgba(252, 242, 218, 0.20), rgba(201, 168, 106, 0.10) 40%, transparent 75%);
}
.card__placeholder {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, #FBF6EA 0%, #E8D9B5 50%, #C9A86A 80%, #6B5224 100%);
  box-shadow:
    0 0 24px rgba(252, 242, 218, 0.45),
    0 0 60px rgba(201, 168, 106, 0.35),
    inset 0 0 18px rgba(255, 255, 255, 0.4);
}

.card__tags {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 3;
}
.card__tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.card__tag--gold { background: var(--gold); color: #15120A; }
.card__tag--premium {
  background: rgba(14,14,16,0.65);
  color: var(--gold-soft);
  border: 1px solid rgba(201,168,106,0.4);
}
.card__tag--new {
  background: rgba(232, 217, 181, 0.12);
  color: var(--gold-soft);
  border: 1px solid rgba(201,168,106,0.5);
}
.card__code {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  z-index: 3;
  background: rgba(14,14,16,0.55);
  padding: 5px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.card__body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.card__name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.card__name a { color: inherit; }
.card__name a:hover { color: var(--gold-soft); }
.card__spec {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  margin: 0;
}
.card__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
/* .card__price stilizat în blocul „Unified product card price" la finalul fișierului */
.card__link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s ease, gap .25s ease;
}
.card__link:hover { color: var(--gold-soft); gap: 10px; }
.card__link::after {
  content: "→";
  font-family: var(--serif);
  font-style: italic;
  transition: transform .3s ease;
}
.card__link:hover::after { transform: translateX(2px); }

/* ===== Pagination ===== */
.pagination {
  margin-top: 56px;
  display: flex; justify-content: center; align-items: center; gap: 6px;
}
.pagination .page-numbers,
.pagination ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}
.pagination .page-numbers li { list-style: none; }
.pagination .page-numbers a,
.pagination .page-numbers span {
  min-width: 44px; height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-dim);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-family: var(--serif);
  font-style: italic;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
.pagination .page-numbers a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.pagination .page-numbers.current {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  color: #15120A;
  font-weight: 500;
}
.pagination .page-numbers.dots {
  border: 0;
  color: var(--ink-mute);
  padding: 0 6px;
  min-width: 0;
}
.pagination__info {
  margin-top: 16px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===== SEO content block ===== */
.seo {
  position: relative;
  padding: 100px 0 100px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(201,168,106,0.05), transparent 60%),
    linear-gradient(180deg, #0E0E10 0%, #0a0a0c 100%);
    margin-top: 60px;
}

@media (max-width: 980px) {
  .seo { padding: 80px 0; }
}
.seo__heading {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.seo__heading em { font-style: italic; color: var(--gold-soft); }
.seo__lede {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.seo__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.seo__stat .lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.seo__stat .val {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-soft);
  font-weight: 400;
  font-style: italic;
}

.seo__body {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.8;
}
.seo__body h2, .seo__body h3 {
  font-size: 26px;
  color: var(--ink);
  margin: 36px 0 14px;
}
.seo__body > h2:first-child,
.seo__body > h3:first-child,
.seo__body > p:first-child + h3 { margin-top: 0; }
.seo__body p { margin: 0 0 18px; }
.seo__body strong { color: var(--ink); font-weight: 500; }
.seo__body a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,168,106,0.35); transition: color .25s ease, border-color .25s ease; }
.seo__body a:hover { color: var(--gold); border-color: var(--gold); }
.seo__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.seo__body ul li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
}
.seo__body ul li::before {
  content: "";
  position: absolute; left: 0; top: 21px;
  width: 16px; height: 1px;
  background: var(--gold);
}
.seo__body ul li strong { color: var(--ink); font-weight: 500; }

/* ===== Legal pages (Termeni, Politică) — folosesc tipografia .seo__body ===== */
.legal { padding: 70px 0 110px; }
.legal__inner { max-width: 840px; }
/* Prima linie „Ultima actualizare:" — discretă, ca un subtitlu. */
.legal__body > p:first-child {
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) { .legal { padding: 48px 0 80px; } }

/* FAQ — admin scrie <details><summary>Q</summary>A</details> în descrierea categoriei */
.seo__body details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.seo__body details summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  transition: color .25s ease;
}
.seo__body details summary::-webkit-details-marker { display: none; }
.seo__body details summary:hover { color: var(--gold-soft); }
.seo__body details summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  transition: transform .35s ease, border-color .25s ease, color .25s ease;
}
.seo__body details[open] summary::after { transform: rotate(45deg); border-color: var(--gold); }
.seo__body details > *:not(summary) { padding-bottom: 22px; }

/* ===== CTA strip ===== */
.cta-strip {
  margin-top: 0;
  padding: 60px 0;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(201,168,106,0.12), transparent 70%),
    linear-gradient(180deg, #14110A 0%, #1A150B 100%);
  border-top: 1px solid rgba(201,168,106,0.18);
  border-bottom: 1px solid rgba(201,168,106,0.18);
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__title {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
}
.cta-strip__title em { font-style: italic; color: var(--gold-soft); }

/* Footer must NOT add margin-top when right after cta-strip on archive pages */
.cta-strip + .site-footer { margin-top: 0; }

/* =====================================================================
   Single product page — cream/beige theme (background bej pentru poză)
   Activată via body.theme-cream (added by ecolight_body_class)
   ===================================================================== */

/* ----- Footer pin: păstrăm tokens-urile dark pentru .site-footer indiferent
   de tema body-ului (footer always dark espresso, never cream) ----- */
.site-footer {
  --bg:        #07070A;
  --bg-2:      #131316;
  --ink:       #F2EEE5;
  --ink-dim:   #B8B3A8;
  --ink-mute:  #7E7A72;
  --gold:      #C9A86A;
  --gold-soft: #E8D9B5;
  --gold-deep: #9C8048;
  --line:      rgba(232, 217, 181, 0.10);
  --line-2:    rgba(232, 217, 181, 0.18);
}

/* ----- Cream theme tokens (scope: body.theme-cream) ----- */
body.theme-cream {
  --bg: #F2EAD8;
  --bg-2: #EBE0C7;
  --bg-3: #DCCEB0;
  --paper: #FBF6EA;
  --bg-deep: #1F1810;
  --line: rgba(58, 42, 22, 0.14);
  --line-2: rgba(58, 42, 22, 0.26);
  --ink: #2A1F12;
  --ink-dim: #5A4A33;
  --ink-mute: #8E7A57;
  --gold: #A8854A;
  --gold-soft: #C9A86A;
  --gold-deep: #6B5224;
}

/* Header pe tema cream — schimbă fundalul + linkurile */
body.theme-cream .site-header.is-scrolled {
  background: rgba(242, 234, 216, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
body.theme-cream .logo,
body.theme-cream .logo__name { color: var(--ink); }
body.theme-cream .logo__mark::after { background: var(--bg); border-color: var(--gold-deep); }
body.theme-cream .logo__tag { color: var(--gold-deep); font-weight: 600; }
body.theme-cream .main-nav a { color: var(--ink-dim); font-weight: 500; }
body.theme-cream .main-nav a:hover,
body.theme-cream .main-nav a[aria-current="page"] { color: var(--ink); }
body.theme-cream .site-header__phone { color: var(--ink-dim); }
body.theme-cream .site-header__phone strong { color: var(--ink); }
body.theme-cream .menu-toggle { border-color: var(--line-2); color: var(--ink); }

/* Buton solid pe tema cream — devine espresso/gold */
body.theme-cream .btn--solid {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--paper);
  border-color: transparent;
}
body.theme-cream .btn--solid:hover { background: var(--gold-deep); }
body.theme-cream .btn--ghost { border-color: var(--ink); color: var(--ink); }
body.theme-cream .btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* ===== Crumbs strip ===== */
.crumbs-strip {
  padding-top: 110px;
  padding-bottom: 16px;
}
.crumbs-strip .crumbs { margin-bottom: 0; }
.crumbs-strip .crumbs span.cur { color: var(--ink); }

/* ===== Product layout ===== */
.product { padding: 24px 0 80px; }
.product__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
/* Previne expansiunea celulei de grid (default min-width: min-content) de către copiii
   cu lățime intrinsecă mare — img-uri, swiper-wrapper înainte de init etc. */
.product__grid > * { min-width: 0; }
@media (max-width: 980px) {
  .product__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- Gallery ----- */
.gallery { position: sticky; top: 90px; min-width: 0; }
@media (max-width: 980px) { .gallery { position: static; } }

.gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--paper, var(--bg-2));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(58, 42, 22, 0.3);
  border: 5px solid #9c7b42;
}
/* Imaginile sunt acum wrap-uite în <a class="gallery__main-link"> pentru Fancybox.
   Anchor-ul stă absolute peste tot containerul; doar cel .is-active e clickabil. */
.gallery__main-link {
  position: absolute; inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  cursor: zoom-in;
  transition: opacity .5s ease;
}
.gallery__main-link.is-active {
  opacity: 1;
  pointer-events: auto;
}
.gallery__main-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
  transform: scale(1);
}
.gallery__main-link.is-active img {
  transform: scale(1.04);
}
.gallery__placeholder {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, #FBF6EA, #E8DCC0 60%, transparent 90%);
}
.gallery__counter {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  background: rgba(251, 246, 234, 0.85);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.gallery__nav {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 10px;
}
.gallery__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(251, 246, 234, 0.9);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.gallery__arrow:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery__arrow svg { width: 14px; height: 14px; }
.gallery__zoom-hint {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(251, 246, 234, 0.85);
  border: 1px solid rgba(168, 133, 74, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
}

/* Thumbs — Swiper carousel (4 vizibile pe desktop, 3 pe tabletă, 2 pe mobil)
   Structură: .gallery__thumbs-wrap (poziționare arrows) > .gallery__thumbs.swiper (clipează slides) */
.gallery__thumbs-wrap {
  position: relative;
  margin-top: 14px;
  min-width: 0;
}
.gallery__thumbs {
  position: relative;
  /* Anti-FOUC: înainte de init Swiper, slide-urile (flex-shrink:0) cu img-uri 150px
     ar lăți wrapper-ul peste celula de grid. overflow:hidden clipează vizual,
     iar min-width:0 împiedică expansiunea grid-cell-ului. */
  overflow: hidden;
  min-width: 0;
}
.gallery__thumbs .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.gallery__thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--paper, var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .25s ease, transform .25s ease;
}
.gallery__thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--gold-deep); box-shadow: 0 0 0 2px rgba(107, 82, 36, 0.18); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Navigare săgeți thumbs — apar doar când Swiper detectează overflow */
.gallery__thumbs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(251, 246, 234, 0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px -8px rgba(58, 42, 22, 0.4);
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}
.gallery__thumbs-nav:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery__thumbs-nav svg { width: 14px; height: 14px; }
.gallery__thumbs-nav--prev { left: -10px; }
.gallery__thumbs-nav--next { right: -10px; }
.gallery__thumbs-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
/* Când nu e overflow (toate slide-urile încap), Swiper adaugă „swiper-lock" pe container.
   Săgețile sunt surori — folosim combinatorul ~ ca să le ascundem. */
.gallery__thumbs.swiper-lock ~ .gallery__thumbs-nav { display: none; }
@media (max-width: 540px) {
  /* pe mobil ascundem săgețile — swipe natural */
  .gallery__thumbs-nav { display: none; }
}

/* ----- Info column ----- */
.info { display: flex; flex-direction: column; gap: 22px; }

.info__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.info__category {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.info__badge {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  background: var(--ink);
  color: var(--gold-soft);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.info__badge--gold {
  background: var(--gold);
  color: var(--paper, #FBF6EA);
}
.info__code {
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--ink-mute);
  margin-left: auto;
}

.info__title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--ink);
}
.info__title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.info__tagline {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
  margin-top: -4px;
  margin-top: 10px;
}

.info__price-row {
  display: flex; align-items: baseline; gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.info__price {
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
/* WC randează: <span class="info__price">[<del>old</del>] [<ins>new</ins>] | <amount> */

/* Preț ne-redus (produs normal, fără sale) — amount direct în .info__price */
.info__price > .woocommerce-Price-amount {
  font-size: 32px;
  font-weight: 500;
}

/* Preț nou (după reducere) */
.info__price ins {
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  font-size: 32px;
  font-weight: 500;
}
.info__price ins .woocommerce-Price-amount {
  font-size: 42px;
  font-weight: inherit;
}

/* Preț inițial — mai mic, muted, vizibil. Linia de „tăiat" e un ::before
   absolut poziționat peste preț + valută (nu text-decoration nativ). */
.info__price .single_price_del {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--ink-mute);
  font-weight: 400;
  opacity: 0.65;
}
.info__price .single_price_del::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
  top: 20px;
}
.info__price .single_price_del .woocommerce-Price-amount {
  font-size: 32px;
  font-weight: 400;
}

/* Simbol monedă (MDL) — pentru noul preț + prețul ne-redus */
.info__price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.info__price ins .woocommerce-Price-currencySymbol {
  font-size: 22px;
  vertical-align: baseline;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  margin-left: 0px;
  font-weight: 600;
}
/* MDL pe prețul tăiat — proporțional */
.info__price .single_price_del .woocommerce-Price-currencySymbol {
  font-size: 18px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* WC pune un <span class="screen-reader-text"> între del și ins — îl ascundem strict
   (WP core îl ascunde, dar adăugăm safety net) */
.info__price .screen-reader-text {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
}
.info__price-per {
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-style: italic;
  font-family: var(--serif);
}
.info__stock {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.info__stock--out { color: var(--ink-mute); }
/* La comandă (backorder) — accent roșu */
.info__stock--backorder { color: #C84F3A; }
.info__stock--backorder .info__stock-dot {
  background: #C84F3A;
  box-shadow: 0 0 0 3px rgba(200, 79, 58, 0.18);
  animation-name: ecolight-pulse-red;
}
.info__stock--out .info__stock-dot {
  background: var(--ink-mute);
  box-shadow: 0 0 0 3px rgba(126, 122, 114, 0.15);
  animation: none;
}
@keyframes ecolight-pulse-red {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200, 79, 58, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(200, 79, 58, 0.04); }
}
.info__stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4F8A4F;
  box-shadow: 0 0 0 3px rgba(79, 138, 79, 0.18);
  animation: ecolight-pulse 2s ease-in-out infinite;
}
@keyframes ecolight-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(79, 138, 79, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(79, 138, 79, 0.04); }
}

/* Description block */
.info__section { display: flex; flex-direction: column; gap: 12px; }
.info__label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.info__desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.8;
}
.info__desc p { margin: 0 0 12px; }
.info__desc strong { color: var(--ink); font-weight: 500; }

/* Spec table */
.specs { border-top: 1px solid var(--line); }
.specs__row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
  align-items: baseline;
}
.specs__lbl {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.specs__val {
  font-size: 15px;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.4;
}
.specs__val em { font-style: italic; color: var(--gold-deep); }
.specs__val small {
  display: block;
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* Contact buttons */
.info__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.info__action {
  padding: 18px 22px;
  font-size: 12px;
  border-radius: var(--r-md);
  text-align: left;
  display: flex; align-items: center; gap: 16px;
  transition: background .35s ease, color .35s ease, transform .25s ease, box-shadow .35s ease, border-color .35s ease;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper, #FBF6EA);
}
.info__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(31, 24, 16, 0.55);
}
.info__action--wa {
  background: #1F8A5B;
  border-color: #1F8A5B;
  color: var(--paper, #FBF6EA);
}
.info__action--wa:hover { background: #176B47; border-color: #176B47; }
.info__action__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(251, 246, 234, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info__action__icon svg { width: 20px; height: 20px; }
.info__action__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.info__action__lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(251, 246, 234, 0.65);
  font-weight: 600;
}
.info__action__num {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--paper, #FBF6EA);
  line-height: 1.1;
}
@media (max-width: 540px) {
  .info__actions { grid-template-columns: 1fr; }
}

/* Reassurance row */
.info__notes {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.info__note { display: flex; gap: 12px; align-items: flex-start; }
.info__note svg {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--gold-deep); margin-top: 2px;
}
.info__note-title {
  font-size: 13px; color: var(--ink); font-weight: 500;
  line-height: 1.3;
}
.info__note-sub {
  font-size: 12px; color: var(--ink-mute);
  line-height: 1.4;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .info__notes { grid-template-columns: 1fr; }
}

/* ===== Long description below ===== */
.longform {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 60%);
  border-top: 1px solid var(--line);
}
.longform__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
@media (max-width: 900px) {
  .longform__grid { grid-template-columns: 1fr; gap: 40px; }
}
.longform__heading {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--ink);
  line-height: 1.05;
}
.longform__heading em { font-style: italic; color: var(--gold-deep); }
.longform__lede {
  color: var(--ink-dim);
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 36ch;
}
.longform__body { font-size: 15px; color: var(--ink-dim); line-height: 1.85; }
.longform__body h2,
.longform__body h3 {
  font-size: 22px;
  color: var(--ink);
  margin: 26px 0 10px;
}
.longform__body > h3:first-child,
.longform__body > h2:first-child { margin-top: 0; }
.longform__body p { margin: 0 0 16px; }
.longform__body strong { color: var(--ink); font-weight: 500; }

/* Pe tema cream nu folosim margin-top de la .site-footer */
body.theme-cream .site-footer { margin-top: 0; }

/* ===== Related products (4 produse din aceeași categorie) =====
   Apare pe pagina de produs (body.theme-cream) dar afișează carduri dark
   identice cu promo-urile de pe home. Re-pin la dark tokens. */
.related-products {
  /* Re-pin dark tokens — astfel .promo (care folosește var(--bg-2), var(--line), etc.) arată DARK */
  --bg:        #0E0E10;
  --bg-2:      #131316;
  --bg-3:      #1A1A1D;
  --ink:       #F2EEE5;
  --ink-dim:   #B8B3A8;
  --ink-mute:  #7E7A72;
  --gold:      #C9A86A;
  --gold-soft: #E8D9B5;
  --gold-deep: #9C8048;
  --line:      rgba(232, 217, 181, 0.10);
  --line-2:    rgba(232, 217, 181, 0.18);

  background: var(--bg);
  color: var(--ink);
  padding: 90px 0 100px;
  border-top: 1px solid rgba(58, 42, 22, 0.14);
}
.related-products__head {
  margin-bottom: 56px;
}
.related-products .section__title {
  color: var(--ink);
}
.related-products .section__title em { color: var(--gold-soft); }
.related-products .section__sub { color: var(--ink-dim); }
.related-products .eyebrow { color: var(--gold); }

/* Layout-ul related-products promo prices — single price, fără old/new split, aliniat la stânga */
.related-products .promo__prices { justify-content: flex-start; }
/* Stilurile efective pentru .related-products .price-new vin din blocul
   „Unified product card price" la finalul fișierului. */

/* =====================================================================
   Contacte page — design Ecolight
   ===================================================================== */

/* Page hero — varianta contact (fără visual lateral, 4 stats grid 2x2) */
.page-hero--contact { padding: 170px 0 70px; }
.page-hero__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 900px) { .page-hero__row { grid-template-columns: 1fr; gap: 28px; } }
.page-hero__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.page-hero__stats div { display: flex; flex-direction: column; gap: 2px; }
.page-hero__stats .lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.page-hero__stats .val {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
}

/* Contact main: 2-col layout (details left, form right) */
.contact-main {
  padding: 90px 0 100px;
  border-bottom: 1px solid var(--line);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .contact-main__grid { grid-template-columns: 1fr; gap: 48px; } }

.col-head { margin-bottom: 24px; }
.col-title {
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.col-title em { font-style: italic; color: var(--gold-soft); }
.col-sub { color: var(--ink-dim); font-size: 14px; line-height: 1.7; max-width: 60ch; }

/* Contact details cards */
.details { display: flex; flex-direction: column; gap: 12px; }
.det {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
  transition: border-color .3s ease, background .3s ease, transform .25s ease, box-shadow .3s ease;
}
.det:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -25px rgba(0,0,0,0.6);
}
.det--wa { background: #1F8A5B; border-color: #1F8A5B; }
.det--wa:hover { background: #176B47; border-color: #176B47; box-shadow: 0 20px 40px -22px rgba(31, 138, 91, 0.6); }
.det__ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232, 217, 181, 0.10);
  color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.det--wa .det__ico { color: #FBF6EA; background: rgba(255,255,255,0.18); }
.det__ico svg { width: 22px; height: 22px; }
.det__copy { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.det__lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
  margin-bottom: 2px;
}
.det--wa .det__lbl { color: rgba(251, 246, 234, 0.7); }
.det__val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.det--wa .det__val { color: #FBF6EA; }
.det__hint { font-size: 12px; color: var(--ink-mute); margin-top: 4px; line-height: 1.5; }
.det--wa .det__hint { color: rgba(251, 246, 234, 0.65); }
.det__arrow {
  color: var(--gold); font-family: var(--serif); font-style: italic; font-size: 22px;
  transition: transform .3s ease; align-self: center;
}
.det--wa .det__arrow { color: #FBF6EA; }
.det:hover .det__arrow { transform: translateX(4px); }

/* Hours card */
.hours {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  background: rgba(20, 17, 10, 0.4);
}
.hours__title {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hours__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-left: auto;
}
.hours__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4F8A4F;
  box-shadow: 0 0 0 3px rgba(79, 138, 79, 0.2);
  animation: ecolight-pulse 2s ease-in-out infinite;
}
.hours__live-dot.is-closed {
  background: #8B6B30;
  box-shadow: 0 0 0 3px rgba(139, 107, 48, 0.2);
  animation: none;
}
.hours__list { list-style: none; margin: 0; padding: 0; }
.hours__list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-dim);
}
.hours__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours__list li.is-today { color: var(--ink); }
.hours__list li.is-today .hours__time { color: var(--gold-soft); }
.hours__day { font-size: 12px; letter-spacing: 0.06em; }
.hours__time { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink); }
.hours__time.closed { color: var(--ink-mute); font-style: italic; }

/* Form */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 36px 32px;
}
@media (max-width: 540px) { .form-card { padding: 26px 22px; } }

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.field label .req { color: var(--gold); }
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14px;
  padding: 14px 16px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  font-family: var(--sans);
  font-weight: 300;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(232, 217, 181, 0.35); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.12);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C9A86A' stroke-width='1.3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px auto;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: #C8513A;
  background: rgba(200, 81, 58, 0.06);
}
.field__error {
  font-size: 11px;
  color: #DF6E55;
  display: none;
  letter-spacing: 0.04em;
}
.field.has-error .field__error { display: block; }

.form-foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.privacy {
  font-size: 11px; color: var(--ink-mute);
  line-height: 1.55;
  max-width: 44ch;
}
.privacy a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,168,106,0.3); }
.privacy a:hover { color: var(--gold); border-color: var(--gold); }

.form-submit {
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 70%);
  color: #15120A;
  border: 0;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -14px rgba(201,168,106,0.55); }
.form-submit:disabled { opacity: 0.5; cursor: wait; transform: none; box-shadow: none; }

.form-error {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(200, 81, 58, 0.08);
  border: 1px solid rgba(200, 81, 58, 0.35);
  border-radius: var(--r-sm);
  color: #DF6E55;
  font-size: 13px;
  display: none;
}
.form-error.is-shown { display: block; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 30px;
  background: rgba(31, 138, 91, 0.08);
  border: 1px solid rgba(31, 138, 91, 0.35);
  border-radius: var(--r-md);
  margin-top: 18px;
}
.form-success.is-shown { display: flex; }
.form-success__ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #1F8A5B;
  color: #FBF6EA;
  display: inline-flex; align-items: center; justify-content: center;
}
.form-success__ico svg { width: 24px; height: 24px; }
.form-success h3 { font-size: 24px; color: var(--ink); margin: 0; }
.form-success h3 em { font-style: italic; color: var(--gold-soft); }
.form-success p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0; }

/* Map section */
.map-sec { padding: 0; position: relative; }
.map-sec__head { padding-top: 80px; padding-bottom: 40px; }
.map-sec__head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 820px) { .map-sec__head-row { grid-template-columns: 1fr; gap: 18px; } }
.map-sec__title { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; }
.map-sec__title em { font-style: italic; color: var(--gold-soft); }
.map-sec__sub {margin-right: 0;margin-left: auto; color: var(--ink-dim); font-size: 15px; line-height: 1.7; max-width: 46ch; }

.map-wrap {
  position: relative;
  height: 520px;
  background: var(--bg-2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
}
.map-card {
  position: absolute;
  left: 32px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(14, 14, 16, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 28px 28px 26px;
  max-width: 360px;
  width: calc(100% - 64px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
@media (max-width: 720px) {
  .map-wrap { height: 480px; }
  .map-card { left: 16px; right: 16px; max-width: none; top: auto; bottom: 16px; transform: none; }
}
.map-card__eyebrow {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 10px; display: block;
}
.map-card__title { font-size: 26px; color: var(--ink); line-height: 1.1; margin-bottom: 8px; }
.map-card__title em { font-style: italic; color: var(--gold-soft); }
.map-card__addr {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 8px 0 18px;
}
.map-card__addr strong { color: var(--ink); font-weight: 500; }
.map-card__actions { display: flex; flex-direction: column; gap: 8px; }
.map-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  background: rgba(232, 217, 181, 0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.map-link:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(201,168,106,0.06); }
.map-link svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.map-link strong { font-family: var(--serif); font-style: italic; font-size: 15px; font-weight: 500; }

/* =====================================================================
   Contact Form 7 — integrare cu designul Ecolight
   ===================================================================== */

/* Resetăm <p>-urile injectate de WordPress în zonele form (în caz că filtrul wpcf7_autop nu funcționează) */
.form-card p:empty { display: none; }

/* CF7 wrappează fiecare câmp în <span class="wpcf7-form-control-wrap"> — îl facem să se comporte ca container normal */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Form principal: layout grid identic cu cel custom */
.wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin: 0;
}
@media (max-width: 540px) { .wpcf7-form { grid-template-columns: 1fr; } }

/* Form-foot ocupă toată lățimea */
.wpcf7-form .form-foot { grid-column: 1 / -1; }

/* Toate input-urile CF7 — preluăm aceleași stiluri ca pentru .field input */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14px;
  padding: 14px 16px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  font-family: var(--sans);
  font-weight: 300;
}
.wpcf7-form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--ink-mute); }
.wpcf7-form input:hover,
.wpcf7-form textarea:hover,
.wpcf7-form select:hover { border-color: rgba(232, 217, 181, 0.35); }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.12);
}
.wpcf7-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C9A86A' stroke-width='1.3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px auto;
  padding-right: 42px;
  cursor: pointer;
}
.wpcf7-form select option { background: var(--bg-2); color: var(--ink); }

/* Submit button — preia stilurile .form-submit deja existente */
.wpcf7-form input.form-submit,
.wpcf7-form button.form-submit {
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 70%);
  color: #15120A;
  border: 0;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.wpcf7-form input.form-submit:hover,
.wpcf7-form button.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -14px rgba(201,168,106,0.55);
}

/* Spinner CF7 — îl ascundem (nu se potrivește vizual; folosim disabled state pe buton) */
.wpcf7-form .wpcf7-spinner {
  width: 16px; height: 16px;
  background: transparent;
  border: 2px solid rgba(201, 168, 106, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin-left: 12px;
  display: none;
  vertical-align: middle;
}
.wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block;
  animation: ecolight-cf7-spin .8s linear infinite;
}
@keyframes ecolight-cf7-spin { to { transform: rotate(360deg); } }
.wpcf7-form.submitting input.form-submit,
.wpcf7-form.submitting button.form-submit { opacity: 0.6; cursor: wait; }

/* Câmpuri invalide: roșu accent + tooltip stilizat sub câmp */
.wpcf7-form .wpcf7-not-valid {
  border-color: #C8513A !important;
  background: rgba(200, 81, 58, 0.06) !important;
}
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #DF6E55;
  letter-spacing: 0.04em;
}

/* Response output (success/error message la final) — același look ca .form-success / .form-error */
.wpcf7-form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  grid-column: 1 / -1;
  background: var(--bg-3);
}
.wpcf7-form.sent .wpcf7-response-output {
  background: rgba(31, 138, 91, 0.08);
  border-color: rgba(31, 138, 91, 0.35);
  color: var(--ink);
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  background: rgba(200, 81, 58, 0.08);
  border-color: rgba(200, 81, 58, 0.35);
  color: #DF6E55;
}
.wpcf7-form.spam .wpcf7-response-output {
  background: rgba(139, 107, 48, 0.10);
  border-color: rgba(139, 107, 48, 0.40);
  color: var(--ink-dim);
}

/* La success ascundem formularul — design-ul are un mesaj generos în loc */
.wpcf7-form.sent > .field,
.wpcf7-form.sent > .form-foot {
  opacity: 0.4;
  pointer-events: none;
}

/* Fallback markup când formularul lipsește */
.cf7-missing {
  padding: 18px 24px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-md);
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.6;
}
.cf7-missing strong { color: var(--gold-soft); }

/* =====================================================================
   La Comanda — pagină statică „Decorațiuni la comandă"
   (NU categorie WC — pagină de prezentare cu CTA puternic)
   ===================================================================== */

/* ===== Hero (cu fundal imagine) — namespaced .lc-hero ca să nu conflict cu slider-ul Home ===== */
.lc-hero {
  position: relative;
  min-height: 760px;
  display: flex; align-items: flex-end;
  padding: 180px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}
.lc-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: lcHeroPan 18s ease-out forwards;
}
@keyframes lcHeroPan { to { transform: scale(1); } }
.lc-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,10,0.85) 0%, rgba(8,8,10,0.55) 35%, rgba(8,8,10,0.3) 60%, rgba(8,8,10,0.75) 100%),
    radial-gradient(60% 80% at 100% 50%, rgba(201,168,106,0.15), transparent 70%);
}
.lc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
  width: 100%;
}
.lc-hero__title {
  font-size: clamp(54px, 8.5vw, 128px);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.lc-hero__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.lc-hero__sub {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 36px;
}
.lc-hero__sub strong { color: var(--ink); font-weight: 500; }
.lc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.lc-hero__meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.lc-hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.lc-hero__meta .lbl { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute); }
.lc-hero__meta .val { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-soft); }

.lc-hero__sidecard {
  background: rgba(14,14,16,0.55);
  border: 1px solid rgba(201, 168, 106, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 28px;
  align-self: end;
  transform: translateY(-20px);
}
.lc-hero__sidecard h3 {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 10px;
}
.lc-hero__sidecard h3 em { font-style: italic; color: var(--gold-soft); }
.lc-hero__sidecard p {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 20px;
}
.lc-hero__quote {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.lc-hero__quote::before {
  content: "„";
  font-size: 32px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.1em;
  margin-right: 4px;
}
@media (max-width: 980px) {
  .lc-hero { min-height: 0; padding: 150px 0 70px; }
  .lc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lc-hero__sidecard { transform: none; }
}

/* ===== Capabilities ===== */
.caps {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(201,168,106,0.05), transparent 60%),
    var(--bg);
}
.caps__head { max-width: 760px; margin-bottom: 56px; }
.caps__title {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.caps__title em { font-style: italic; color: var(--gold-soft); }
.caps__sub { color: var(--ink-dim); font-size: 15px; line-height: 1.7; }
.caps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .caps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .caps__grid { grid-template-columns: 1fr; } }

.cap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color .35s ease, transform .4s ease, background .35s ease;
}
.cap::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 100% 0%, rgba(201,168,106,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
}
.cap:hover { border-color: rgba(201,168,106,0.4); transform: translateY(-4px); }
.cap:hover::before { opacity: 1; }
.cap > * { position: relative; }
.cap__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: block;
}
.cap__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,0.4);
  background: rgba(201,168,106,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.cap__icon svg { width: 22px; height: 22px; }
.cap__title { font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.cap__desc { color: var(--ink-dim); font-size: 13px; line-height: 1.6; }

/* ===== Process ===== */
.process {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
@media (max-width: 820px) {
  .process { padding: 80px 0; }
  .process__head { grid-template-columns: 1fr; gap: 18px; }
}
.process__title {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
}
.process__title em { font-style: italic; color: var(--gold-soft); }
.process__sub { color: var(--ink-dim); font-size: 15px; line-height: 1.7; max-width: 46ch; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 36px 24px 30px;
  border-top: 1px solid var(--gold-deep);
}
.step::before {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201,168,106,0.12);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.step__title { font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.step__desc { color: var(--ink-dim); font-size: 13px; line-height: 1.7; }
.step__when {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.step__when em { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 14px; letter-spacing: 0.04em; }

/* ===== Showcase ===== */
.showcase {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(201,168,106,0.06), transparent 60%),
    var(--bg);
}
.showcase__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .showcase__head { grid-template-columns: 1fr; gap: 18px; } }
.showcase__title { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; }
.showcase__title em { font-style: italic; color: var(--gold-soft); }
.showcase__sub { color: var(--ink-dim); font-size: 15px; line-height: 1.7; max-width: 46ch; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.work {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.work img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.86) saturate(1);
  transition: transform 1.2s ease, filter .6s ease;
}
.work:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }
.work::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, rgba(8,8,10,0.7), transparent 70%);
  pointer-events: none;
}
.work__caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform .5s ease, opacity .5s ease;
}
.work:hover .work__caption { transform: translateY(0); opacity: 1; }
.work__title { font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.15; }
.work__loc { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; }

.work--a { grid-column: span 7; grid-row: span 2; }
.work--b { grid-column: span 5; grid-row: span 1; }
.work--c { grid-column: span 5; grid-row: span 1; }
.work--d { grid-column: span 4; grid-row: span 1; }
.work--e { grid-column: span 4; grid-row: span 1; }
.work--f { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  .works-grid { grid-auto-rows: 180px; }
  .work--a { grid-column: span 12; grid-row: span 2; }
  .work--b, .work--c, .work--d, .work--e, .work--f { grid-column: span 6; }
}
@media (max-width: 540px) {
  .work { grid-column: span 12 !important; grid-row: span 1 !important; }
}

.showcase__foot { display: flex; justify-content: center; margin-top: 48px; }

/* ===== No limits ===== */
.no-limits {
  padding: 110px 0;
  background:
    radial-gradient(50% 80% at 0% 50%, rgba(201,168,106,0.08), transparent 70%),
    radial-gradient(60% 90% at 100% 50%, rgba(201,168,106,0.06), transparent 70%),
    linear-gradient(180deg, #0a0a0c 0%, #0E0E10 100%);
  border-bottom: 1px solid var(--line);
}
.no-limits__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 300;
}
.no-limits__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.no-limits__sub {
  text-align: center;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto 56px;
}
.freedoms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 820px) { .freedoms { grid-template-columns: 1fr; } }
.freedom {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(14, 14, 16, 0.6);
  text-align: center;
}
.freedom__lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block; }
.freedom__big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
}
.freedom__big em { color: var(--gold-soft); font-weight: 400; }
.freedom__note { color: var(--ink-mute); font-size: 12px; margin-top: 10px; line-height: 1.5; }

/* ===== Big Contact CTA ===== */
.contact-big {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(50% 80% at 20% 30%, rgba(201,168,106,0.20), transparent 65%),
    radial-gradient(50% 80% at 80% 70%, rgba(201,168,106,0.12), transparent 65%),
    linear-gradient(180deg, #14110A 0%, #1A150B 100%);
  border-bottom: 1px solid rgba(201,168,106,0.2);
}
.contact-big__bgimg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  mix-blend-mode: screen;
  filter: contrast(1.2);
  pointer-events: none;
}
.contact-big__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .contact-big__inner { grid-template-columns: 1fr; gap: 36px; } }

.contact-big__title {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 300;
}
.contact-big__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.contact-big__sub {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 30px;
}
.contact-big__sub strong { color: var(--ink); font-weight: 500; }
.contact-big__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-big__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.contact-big__list svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-big__list strong { color: var(--ink); font-weight: 500; }

.contact-actions { display: flex; flex-direction: column; gap: 14px; }
.action-card {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 28px;
  border-radius: var(--r-md);
  background: rgba(14, 14, 16, 0.7);
  border: 1px solid rgba(201, 168, 106, 0.3);
  transition: border-color .35s ease, transform .25s ease, background .35s ease, box-shadow .35s ease;
}
.action-card:hover {
  border-color: var(--gold); transform: translateY(-3px);
  box-shadow: 0 25px 60px -25px rgba(201, 168, 106, 0.55);
}
.action-card--wa { background: #1F8A5B; border-color: #1F8A5B; }
.action-card--wa:hover { background: #176B47; border-color: #176B47; box-shadow: 0 25px 60px -25px rgba(31, 138, 91, 0.7); }
.action-card__ico {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(232, 217, 181, 0.14);
  color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.action-card--wa .action-card__ico { color: #FBF6EA; background: rgba(255,255,255,0.18); }
.action-card__ico svg { width: 24px; height: 24px; }
.action-card__copy { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.action-card__lbl { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.action-card--wa .action-card__lbl { color: rgba(251, 246, 234, 0.7); }
.action-card__num { font-family: var(--serif); font-size: 26px; color: var(--ink); line-height: 1.1; margin-top: 3px; }
.action-card__hint { font-size: 11px; color: var(--ink-mute); margin-top: 4px; letter-spacing: 0.02em; }
.action-card--wa .action-card__num { color: #FBF6EA; }
.action-card--wa .action-card__hint { color: rgba(251, 246, 234, 0.65); }
.action-card__arrow { color: var(--gold); font-family: var(--serif); font-style: italic; font-size: 26px; transition: transform .3s ease; }
.action-card--wa .action-card__arrow { color: #FBF6EA; }
.action-card:hover .action-card__arrow { transform: translateX(4px); }

.contact-big__alt {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 217, 181, 0.08);
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.contact-big__alt a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,168,106,0.3); transition: color .25s ease, border-color .25s ease; }
.contact-big__alt a:hover { color: var(--gold); border-color: var(--gold); }

/* ===== FAQ accordion (button-based, distinct from .seo__body details) ===== */
.faq-sec { padding: 100px 0; }
.faq-sec__head { max-width: 760px; margin-bottom: 48px; }
.faq-sec__title { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; margin-bottom: 16px; }
.faq-sec__title em { font-style: italic; color: var(--gold-soft); }
.faq-sec__sub { color: var(--ink-dim); font-size: 15px; line-height: 1.7; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0;
  width: 100%; text-align: left;
  background: transparent; border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px; font-weight: 400; line-height: 1.3;
  transition: color .25s ease;
  cursor: pointer;
}
.faq__q:hover { color: var(--gold-soft); }
.faq__q-ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
  font-family: var(--sans); font-weight: 300;
  transition: transform .35s ease, border-color .25s ease, color .25s ease;
}
.faq__item.is-open .faq__q-ico { transform: rotate(45deg); border-color: var(--gold); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
  color: var(--ink-dim); font-size: 14px; line-height: 1.75;
}
.faq__item.is-open .faq__a { max-height: 400px; padding: 0 48px 22px 0; }
.faq__a p { margin: 0; }
.faq__a strong { color: var(--ink); font-weight: 500; }

/* =====================================================================
   Portofoliu — galerie foto/video cu Fancybox
   ===================================================================== */

/* ===== Tabs ===== */
.pf-tabs-bar {
  position: sticky; top: 64px; z-index: 40;
  background: rgba(14, 14, 16, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.pf-tabs {
  display: inline-flex; gap: 4px; padding: 4px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(14, 14, 16, 0.5);
}
.pf-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 26px;
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent; border: 0;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}
.pf-tab:hover { color: var(--gold-soft); }
.pf-tab.is-active {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #15120A;
  font-weight: 600;
}
.pf-tab svg { width: 18px; height: 18px; }

/* ===== Grid ===== */
.pf-grid-wrap { padding: 48px 0 80px; }
.pf-grid {
  display: none;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.pf-grid.is-active { display: grid; }

.pf-item {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(12px);
  animation: pfItemIn .55s ease forwards;
  animation-delay: calc(var(--i, 0) * 45ms);
  display: block;
}
@keyframes pfItemIn { to { opacity: 1; transform: translateY(0); } }
.pf-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease, filter .6s ease;
  filter: brightness(0.86);
}
.pf-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* Hover overlay with magnifier */
.pf-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8, 8, 10, 0.45);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 2;
}
.pf-item:hover::after { opacity: 1; }
.pf-item__lens {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.92);
  color: #15120A;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .35s ease, transform .4s ease;
  z-index: 3;
  box-shadow: 0 20px 50px -20px rgba(201, 168, 106, 0.7);
  pointer-events: none;
}
.pf-item:hover .pf-item__lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.pf-item__lens svg { width: 24px; height: 24px; }

/* Small play badge for video items */
.pf-item__play-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(14, 14, 16, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.pf-item:hover .pf-item__play-badge {
  background: rgba(201, 168, 106, 0.95);
  color: #15120A;
  border-color: var(--gold);
}
.pf-item__play-badge svg { width: 12px; height: 12px; margin-left: 1px; }

/* Masonry placement — foto grid (8 items, a-h pattern) */
.pf-item--a { grid-column: span 6; grid-row: span 2; }
.pf-item--b { grid-column: span 3; grid-row: span 1; }
.pf-item--c { grid-column: span 3; grid-row: span 1; }
.pf-item--d { grid-column: span 3; grid-row: span 2; }
.pf-item--e { grid-column: span 3; grid-row: span 2; }
.pf-item--f { grid-column: span 4; grid-row: span 1; }
.pf-item--g { grid-column: span 4; grid-row: span 1; }
.pf-item--h { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  .pf-grid { grid-auto-rows: 180px; }
  .pf-item--a { grid-column: span 12; grid-row: span 2; }
  .pf-item--b, .pf-item--c, .pf-item--f, .pf-item--g, .pf-item--h { grid-column: span 6; grid-row: span 1; }
  .pf-item--d, .pf-item--e { grid-column: span 6; grid-row: span 2; }
}
@media (max-width: 540px) {
  .pf-item { grid-column: span 12 !important; grid-row: span 1 !important; }
}

/* ===== Fancybox v5 — dark theme overrides ===== */
.fancybox__container { --fancybox-bg: rgba(6, 6, 8, 0.94); }
.fancybox__backdrop { background-color: var(--fancybox-bg); }
.f-button { color: var(--ink) !important; }
.f-button:hover { color: var(--gold-soft) !important; }
.fancybox__slide .f-content { box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }

body.lock { overflow: hidden; }

/* ===== Contact strip (Portofoliu — smaller than .contact-big from La Comanda) ===== */
.contact-strip {
  padding: 100px 0;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(201,168,106,0.12), transparent 70%),
    linear-gradient(180deg, #14110A 0%, #1A150B 100%);
  border-top: 1px solid rgba(201,168,106,0.18);
  border-bottom: 1px solid rgba(201,168,106,0.18);
}
.contact-strip__inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .contact-strip__inner { grid-template-columns: 1fr; gap: 32px; } }
.contact-strip__title { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; color: var(--ink); }
.contact-strip__title em { font-style: italic; color: var(--gold-soft); }
.contact-strip__sub { color: var(--ink-dim); font-size: 15px; line-height: 1.7; margin-top: 18px; max-width: 52ch; }

/* .contact-strip + .site-footer — no extra top margin */
.contact-strip + .site-footer { margin-top: 0; }

/* =====================================================================
   Unified product card price — Home promo + Category card + Related products
   (Pagina single-product NU e inclusă — are .info__price cu 32px.)

   Toate cele 3 contexte renderează prețuri cu același vizual:
     - Preț curent: Cormorant Garamond 22px / 500 / gold-soft
     - Preț tăiat: Manrope 13px / 400 / ink-mute / line-through
     - Simbol monedă (MDL): 12px / 500 / gold / letter-spacing 0.1em
     - Container flex baseline cu gap 10px
   ===================================================================== */

/* Containers */
.promo__prices,
.related-products .promo__prices,
.card__foot .card__price,
.card__price {
  font-family: var(--serif);
  line-height: 1.1;
}

/* Preț CURENT (nou) — folosit pe toate cele 3 contexte */
.price-new,
.card__price,
.card__price ins,
.card__price > .woocommerce-Price-amount,
.price-new ins,
.price-new > .woocommerce-Price-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-soft);
  text-decoration: none;
  background: transparent;
}

/* Inner WC amount span moștenește font-size din părinte (evită compounding em) */
.card__price ins .woocommerce-Price-amount,
.card__price > .woocommerce-Price-amount,
.price-new ins .woocommerce-Price-amount,
.price-new > .woocommerce-Price-amount {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Preț VECHI (tăiat) */
.price-old,
.card__price del,
.price-new del {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
  text-decoration: line-through;
  margin-right: 8px;
  opacity: 0.85;
}
.card__price del .woocommerce-Price-amount,
.price-new del .woocommerce-Price-amount {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Simbol MONEDĂ (MDL) — pe prețul nou și pe amount-ul direct */
.price-new sup,
.card__price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.card__price ins .woocommerce-Price-currencySymbol,
.price-new > .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.price-new ins .woocommerce-Price-currencySymbol {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-left: 3px;
  vertical-align: baseline;
  text-transform: uppercase;
}

/* Simbol MONEDĂ pe prețul vechi tăiat — proporțional, ton mut */
.price-old sup,
.card__price del .woocommerce-Price-currencySymbol,
.price-new del .woocommerce-Price-currencySymbol {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-left: 2px;
  vertical-align: baseline;
  text-transform: uppercase;
}

/* Ascunde textul accesibilitate WC ("Original price was…", "Current price is…") */
.card__price .screen-reader-text,
.price-new .screen-reader-text {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
}

/* ===== Form popup (consultație / ofertă) ===== */
.form-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.form-popup[hidden] { display: none; }

.form-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s ease;
}

.form-popup__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8);
  padding: 40px;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .35s ease, transform .35s ease;
}
.form-popup.is-open .form-popup__overlay { opacity: 1; }
.form-popup.is-open .form-popup__dialog { opacity: 1; transform: none; }
@media (max-width: 540px) { .form-popup__dialog { padding: 30px 22px 26px; } }

.form-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-dim);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.form-popup__close:hover {
  background: rgba(232, 217, 181, 0.06);
  color: var(--gold-soft);
  border-color: var(--gold);
}
.form-popup__close svg { width: 18px; height: 18px; }

.form-popup__head {
  margin-bottom: 24px;
  padding-right: 44px;
}
.form-popup__title {
  font-size: clamp(26px, 4vw, 34px);
  margin-top: 12px;
}
.form-popup__title em { color: var(--gold); font-style: italic; }
.form-popup__sub {
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}

/* Panoul dialogului ține deja boxul — scoatem cadrul dublu al .form-card din popup */
.form-popup__body.form-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
/* Formularul din popup folosește exact stilurile .field / .wpcf7-form de pe
   pagina Contacte (grid 2 coloane: Nume + Telefon pe un rând, restul pe 100%
   prin .field--full / .form-foot). Nu mai e nevoie de reguli proprii de layout —
   doar scoatem boxul .form-card (dialogul e deja containerul vizual). */

body.popup-open { overflow: hidden; }

/* ===================================================================
   Mobile safety nets (telefoane mici)
   =================================================================== */
@media (max-width: 480px) {
  /* Butoanele hero/CTA pe toată lățimea, stivuite — țintă de atingere mai bună */
  .hero__actions,
  .lc-hero__actions { gap: 12px; }
  .hero__actions .btn,
  .lc-hero__actions .btn { width: 100%; justify-content: center; }

  /* Titluri foarte mari pe ecrane înguste — limită superioară mai blândă */
  .hero__title { font-size: clamp(34px, 11vw, 52px); }

  /* Evită depășirea pe orizontală a tabelelor / conținutului WooCommerce */
  .woocommerce table.shop_table { font-size: 13px; }
}
