/* ═══════════════════════════════════════════════════
   FACED COUTURE – Premium Fashion Brand CSS
   ═══════════════════════════════════════════════════ */

/* ── CSS VARIABLES ──────────────────────────────── */
:root {
  --cream:       #faf6f0;
  --cream-mid:   #f0e8da;
  --cream-dark:  #e5d5c0;
  --rose-pale:   #f5e8e4;
  --rose:        #e8b4a8;
  --rose-deep:   #c48b7d;
  --gold:        #c9956c;
  --gold-light:  #e8c4a0;
  --gold-dark:   #a0724a;
  --dark:        #1a1410;
  --dark-mid:    #2d2318;
  --brown:       #5c3d25;
  --text:        #3a2d1f;
  --text-light:  #7a6555;
  --text-muted:  #a89080;
  --white:       #ffffff;
  --border:      #e0d0c0;
  --border-light:#ede5d8;
  --shadow-sm:   0 2px 12px rgba(90,55,20,0.08);
  --shadow-md:   0 8px 32px rgba(90,55,20,0.12);
  --shadow-lg:   0 20px 60px rgba(90,55,20,0.18);

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display:'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;

  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-mid); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h4 { font-family: var(--font-body); font-weight: 500; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.text-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.2rem 0;
}
.text-divider span:first-child,
.text-divider span:last-child {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.text-divider .diamond { color: var(--gold); font-size: 0.65rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .text-divider { justify-content: center; max-width: 200px; margin: 1rem auto; }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: transparent;
  color: var(--dark);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--dark); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 20px; font-size: 0.72rem; }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: var(--transition);
}
.header-top {
  background: var(--dark);
  color: var(--cream-mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.header-top a { color: var(--gold-light); }
.header-top a:hover { color: var(--white); }
.header-contact-top { display: flex; gap: 8px; align-items: center; }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
#header.scrolled .navbar {
  padding: 10px 24px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-decoration: none;
}
.logo-ornament { color: var(--gold); font-size: 0.7rem; }
.logo-text { font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--dark);
  padding: 6px;
  transition: var(--transition);
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-count.pulse {
  animation: pulse 0.3s ease;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,20,16,0.85) 0%,
    rgba(90,55,20,0.6) 50%,
    rgba(200,145,100,0.3) 100%
  );
  z-index: 2;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--dark-mid);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,149,108,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,149,108,0.15) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,149,108,0.04) 40px,
      rgba(201,149,108,0.04) 41px
    );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  max-width: 800px;
}
.hero-pre {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 0;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-divider {
  margin: 1.8rem auto;
  max-width: 220px;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  flex: 1;
  height: 1px;
  background: rgba(201,149,108,0.5);
}
.hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,246,240,0.85);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,246,240,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,149,108,0.6), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Fade-in animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   BRAND STRIP
══════════════════════════════════════════════════ */
.brand-strip {
  background: var(--dark);
  color: var(--cream-mid);
  padding: 14px 0;
  overflow: hidden;
}
/* Track – 4 copii identice, se mișcă cu 25% (= 1 copie) */
.strip-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
/* Fiecare copie de text */
.strip-inner {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  white-space: nowrap;
  padding-right: 2.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.strip-inner .sep { color: var(--gold); font-size: 0.5rem; }
/* 4 copii → mutăm 25% = exact o copie → loop perfect fără salt */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  max-width: 280px;   /* ← chenarul mai mic */
  margin: 0 auto;
}
.about-img-placeholder {
  aspect-ratio: 1/1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0;
}
.about-img-placeholder::before {
  display: none;
}
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.placeholder-icon {
  font-size: 3rem;
  color: var(--gold);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  border: 3px solid var(--gold);
}
.badge-year { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); }
.badge-num { font-family: var(--font-serif); font-size: 1.5rem; }
.about-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info-item div { display: flex; flex-direction: column; gap: 2px; }
.info-item strong { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); }
.info-item span, .info-item a { font-size: 0.9rem; color: var(--text-light); }
.about-text
.about-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 2rem;
}
.about-story p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text);
}
.about-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-sep { color: var(--gold); font-size: 0.6rem; }

/* ══════════════════════════════════════════════════
   COLLECTION
══════════════════════════════════════════════════ */
.collection { background: var(--cream); }
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 3rem;
}
.product-card {
  background: var(--white);
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); }
.product-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cream-mid);
}
.product-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--cream-mid), var(--cream-dark));
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  font-size: 4rem;
}
.product-card:hover .product-card-img-inner { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-badge.new { background: var(--gold); }
.product-badge.bestseller { background: var(--rose-deep); }

.product-card-body { padding: 18px; }
.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-colors {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.color-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  touch-action: manipulation; /* elimina delay 300ms pe mobile */
  -webkit-tap-highlight-color: transparent;
}
.color-dot:hover { transform: scale(1.25); }
.color-dot-active {
  border-color: var(--dark) !important;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3.5px var(--dark);
  transform: scale(1.15);
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: 10px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
}
.product-price .currency { font-size: 0.85rem; color: var(--text-light); margin-left: 2px; }
.product-sizes-preview {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.size-guide-banner {
  background: var(--rose-pale);
  border: 1px solid var(--rose);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.guide-icon { font-size: 1.4rem; }
.size-guide-banner div { flex: 1; }
.size-guide-banner strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.size-guide-banner span { font-size: 0.85rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════ */
.gallery { background: var(--dark-mid); }
.gallery .section-label, .gallery .section-sub { color: var(--gold-light); opacity: 0.8; }
.gallery .section-title { color: var(--cream); }
.gallery .text-divider span:first-child,
.gallery .text-divider span:last-child { background: rgba(201,149,108,0.3); }
/* Galerie Masonry – coloane CSS, pozele nu se taie */
.gallery-grid {
  columns: 3;
  column-gap: 10px;
}
.gallery-item {
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 2.5rem;
  transition: transform 0.6s ease;
  position: relative;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════ */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border); }
.review-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: serif;
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.4;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-dark), var(--rose-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.review-location { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-desc { color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); }
.contact-item span, .contact-item a { font-size: 0.92rem; color: var(--text-light); line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* Iconițe sociale din header top */
.header-socials { display: flex; gap: 8px; align-items: center; }
.header-social-link {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.header-social-link:hover { color: var(--white); }
.wishlist-nav-btn { margin-right: 2px; }
.contact-map iframe { display: block; }
.contact-map { border: 1px solid var(--border); overflow: hidden; }

/* ══════════════════════════════════════════════════
   POLICIES
══════════════════════════════════════════════════ */
.policies { background: var(--cream); }
.policies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.policy-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 36px 30px;
  transition: var(--transition);
}
.policy-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.policy-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.policy-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.policy-card ul { display: flex; flex-direction: column; gap: 10px; }
.policy-card li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.policy-card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 5px;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--cream-mid);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(250,246,240,0.55); line-height: 1.7; max-width: 280px; }
.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(250,246,240,0.55);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold-light); }
.footer-contact-col p { font-size: 0.88rem; color: rgba(250,246,240,0.55); line-height: 1.6; margin-bottom: 8px; }
.footer-contact-col a { color: var(--gold-light); }
.footer-contact-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(250,246,240,0.35);
}

/* ══════════════════════════════════════════════════
   CART SIDEBAR
══════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.5);
  backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 991;
  display: flex;
  flex-direction: column;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.cart-close:hover { color: var(--dark); background: var(--cream-mid); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
  color: var(--text-muted);
}
.empty-icon { font-size: 3rem; }
.cart-empty p { font-size: 0.95rem; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-img {
  width: 80px;
  height: 100px;
  background: linear-gradient(145deg, var(--cream-mid), var(--cream-dark));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid var(--border-light);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-serif); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.cart-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-meta span + span::before { content: ' · '; }
.cart-item-price { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  font-family: inherit;
  line-height: 1;
}
.qty-btn:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.qty-value { font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
  background: none;
  border: none;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}
.cart-item-remove:hover { color: #c0392b; }
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cart-total-price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--dark); }
.cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 16px; }

/* ══════════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  z-index: 1001;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }

/* Size guide deschis din checkout – trebuie sa fie DEASUPRA checkout modal */
#sizeGuideOverlay { z-index: 1100; }
#sizeGuideModal   { z-index: 1101; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { color: var(--dark); background: var(--cream-mid); }

/* Product Modal */
.product-modal {
  width: min(860px, 94vw);
  padding: 0;
  overscroll-behavior: contain;
}
.product-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px; /* înălțime minimă garantată */
}
.modal-img-side {
  background: linear-gradient(145deg, var(--cream-mid), var(--rose-pale));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}
/* Imaginea principala – clasa noua */
.modal-img-main {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
}
.modal-img-emoji {
  font-size: 6rem;
}
.modal-info-side { padding: 40px; overflow-y: auto; }
.modal-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.modal-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.modal-price .currency { font-size: 1.1rem; color: var(--text-light); }
.modal-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  display: block;
}
.modal-colors { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.modal-color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.modal-color-btn:hover, .modal-color-btn.active { border-color: var(--dark); transform: scale(1.1); }
.modal-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.modal-size-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}
.modal-size-btn:hover, .modal-size-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.modal-add-btn { width: 100%; margin-top: 8px; }

/* Size Guide Modal */
.size-guide-modal {
  width: min(820px, 96vw);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 50px 40px 40px;
}
.size-guide-modal h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 6px;
  text-align: center;
}
.guide-sub { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-bottom: 36px; }
.guide-body { display: flex; flex-direction: column; gap: 36px; }
.measure-guide { display: grid; grid-template-columns: 1fr 1.6fr; gap: 36px; align-items: start; }
.measure-visual { display: flex; justify-content: center; }
.body-svg { width: 200px; max-width: 100%; }
.measure-steps { display: flex; flex-direction: column; gap: 20px; }
.measure-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.measure-step strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.measure-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.measure-tip {
  display: flex;
  gap: 12px;
  background: var(--rose-pale);
  border: 1px solid var(--rose);
  padding: 16px;
}
.measure-tip p { font-size: 0.84rem; color: var(--text); line-height: 1.5; }
.size-table-wrap h4 { font-size: 1rem; color: var(--dark); margin-bottom: 16px; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th {
  background: var(--dark);
  color: var(--cream);
  padding: 10px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.size-table td {
  padding: 9px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.size-table tr:nth-child(even) td { background: var(--cream); }
.size-table tr:hover td { background: var(--rose-pale); }

/* Checkout Modal */
.checkout-modal {
  width: min(1000px, 96vw);
  padding: 0;
}
.checkout-inner { display: grid; grid-template-columns: 1.35fr 1fr; min-height: 600px; }
.checkout-left { padding: 50px 44px; overflow-y: auto; }
.checkout-left h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.checkout-sub { color: var(--text-light); font-size: 0.9rem; margin-bottom: 32px; }
.checkout-right {
  background: var(--cream);
  border-left: 1px solid var(--border);
  padding: 50px 36px;
}
.order-summary h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; }
.order-summary-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-item-name { font-size: 0.92rem; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.order-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.order-item-price { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-light);
}
.order-total-row:last-of-type { border-bottom: 2px solid var(--dark); }
.order-total-row strong { color: var(--dark); font-family: var(--font-serif); font-size: 1.1rem; }
.order-note {
  margin-top: 20px;
  padding: 14px;
  background: var(--rose-pale);
  border: 1px solid var(--rose);
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

/* Forms */
.form-section { margin-bottom: 28px; }
.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.form-step {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.form-group input, .form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); background: var(--cream); }
.form-group input.error { border-color: #c0392b; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.form-submit-area { margin-top: 8px; }
.submit-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.guide-link {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.06em;
  text-transform: none;
}
.guide-link:hover { color: var(--gold-dark); }
.payment-info { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-light);
}
.payment-option.selected { border-color: var(--gold); background: var(--cream); }
.payment-option svg { color: var(--gold); flex-shrink: 0; }
.btn-send { position: relative; }
.btn-loader { position: absolute; left: 50%; transform: translateX(-50%); }

/* Success Modal */
.success-modal {
  width: min(440px, 94vw);
  padding: 60px 48px;
  text-align: center;
}
.success-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.success-modal h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); }
.success-modal p { color: var(--text-light); line-height: 1.6; max-width: 320px; }
.success-sub { font-size: 0.88rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 800;
  border: 1.5px solid var(--dark);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   RESPONSIVE – TABLET (max 1100px)
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – TABLET MIC (max 900px)
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-placeholder { aspect-ratio: 1/1; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .policies-grid { grid-template-columns: 1fr; gap: 20px; }
  .checkout-inner { grid-template-columns: 1fr; }
  .checkout-right { border-left: none; border-top: 1px solid var(--border); padding: 30px 24px; }
  .product-modal-content { grid-template-columns: 1fr; min-height: unset; }
  .modal-img-side { min-height: 300px; max-height: none; }
  .modal-img-side > div:first-child img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: opacity 0.22s ease;
  }
  .gallery-grid { columns: 2; }
  .stats-row { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – MOBIL (max 768px)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-top { display: none; }
  .navbar { padding: 12px 16px; }
  .nav-logo { font-size: 1.3rem; gap: 6px; }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 82vw;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 36px;
    gap: 1.4rem;
    transition: left 0.35s ease;
    box-shadow: var(--shadow-lg);
    z-index: 995;
  }
  .nav-links.open { left: 0; }
  .nav-link { font-size: 1rem; }
  .hamburger { display: flex; }

  /* Layout general */
  .section-pad { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-content { padding: 0 16px; }
  .hero-slogan { font-size: 1rem; }
  .hero-scroll { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { max-width: 220px; }
  .about-info-card { padding: 20px 16px; }
  .stats-row { gap: 16px; padding: 36px 0; flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat-num { font-size: 2rem; }

  /* Produse */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-body { padding: 12px; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.05rem; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.7rem; }

  /* ── Modal produs – mobil full screen ── */
  .product-modal {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    top: 0; left: 0;
    transform: translateY(60px) !important;
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: block;
  }
  .product-modal.open { transform: translateY(0) !important; }

  .product-modal-content {
    display: block !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  /* ── IMAGINEA mobil – completa, naturala ── */
  .modal-img-side {
    width: 100%;
    height: auto;
    min-height: unset;
    max-height: none;
    flex-shrink: 0;
    background: #faf8f6;
    display: block;
    overflow: hidden;
  }
  /* Imaginea principala – width 100%, inaltime naturala */
  .modal-img-main {
    width: 100%;
    max-height: 80vh;
    max-height: 80dvh;
    overflow: hidden;
    background: #faf8f6;
    cursor: zoom-in;
    display: block;
    position: relative;
  }
  /* ── IMAGINE MOBIL: full-screen, poza completa ── */
  .modal-img-side {
    display: block !important;
    width: 100% !important;
    background: #faf8f6 !important;
    overflow: visible !important;
  }

  /* Containerul imaginii: inaltimea naturala a pozei */
  .modal-img-main {
    width: 100% !important;
    height: auto !important;
    min-height: 60vh !important;
    max-height: none !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    background: #faf8f6 !important;
    cursor: zoom-in !important;
  }

  /* Imaginea: static, width 100%, height auto = poza COMPLETA */
  #productModal .modal-img-main img,
  #productModal #modalMainImg {
    position: static !important;
    inset: unset !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: unset !important;
    display: block !important;
    transition: opacity 0.22s ease;
  }

  /* Thumbnailuri: vizibile sub imagine */
  .modal-thumbnails {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: center !important;
    padding: 8px 10px !important;
    background: rgba(26,20,16,0.72) !important;
    width: 100% !important;
  }
  .modal-thumbnails:empty { display: none !important; }
  .modal-thumb {
    width: 54px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
  }
  .modal-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: static !important;
    inset: unset !important;
  }
  /* Thumbnailuri sub imagine */
  .modal-thumbnails {
    background: rgba(26,20,16,0.72) !important;
    padding: 7px 10px !important;
    display: flex !important;
    gap: 6px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .modal-thumbnails:empty { display: none !important; }
  .modal-thumb { width: 54px !important; height: 62px !important; }

  /* FIX sageti pe langa imaginea normala */
  .modal-img-arrow {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
  }

  /* INFO mai compact pe mobil */
  .modal-info-side {
    padding: 16px 16px 32px !important;
    overflow-y: visible !important;
  }
  .modal-name { font-size: 1.2rem !important; margin-bottom: 4px !important; }
  .modal-price { font-size: 1.3rem !important; margin-bottom: 4px !important; }
  .tva-note { font-size: 0.75rem !important; margin-bottom: 12px !important; }
  .modal-section-label { font-size: 0.66rem !important; margin-bottom: 6px !important; }
  .modal-colors { gap: 8px !important; margin-bottom: 6px !important; }
  .modal-color-btn { width: 26px !important; height: 26px !important; }
  .modal-color-name { margin-bottom: 12px !important; }
  .modal-size-hint { font-size: 0.75rem !important; margin-bottom: 8px !important; }
  .modal-sizes { gap: 5px !important; margin-bottom: 14px !important; flex-wrap: wrap !important; }
  .modal-size-btn { width: 40px !important; height: 40px !important; font-size: 0.74rem !important; }
  .modal-add-btn { width: 100% !important; padding: 14px !important; font-size: 0.78rem !important; margin-top: 10px !important; }
  .wishlist-modal-btn { padding: 10px !important; font-size: 0.72rem !important; margin-bottom: 8px !important; }

  /* Thumbnailuri */
  .modal-thumbnails {
    flex-shrink: 0;
    background: rgba(26,20,16,0.75);
    padding: 8px 10px;
    display: flex !important;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 0;
  }
  .modal-thumbnails:empty { display: none !important; }
  .modal-thumb { width: 54px; height: 62px; }

  /* Info */
  .modal-info-side {
    width: 100%;
    padding: 20px 18px 32px;
    background: var(--white);
  }
  .modal-name { font-size: 1.2rem; margin-bottom: 4px; }
  .modal-price { font-size: 1.25rem; margin-bottom: 10px; }
  .modal-section-label { font-size: 0.66rem; margin-bottom: 8px; }
  .modal-colors { gap: 10px; margin-bottom: 10px; }
  .modal-color-btn { width: 26px; height: 26px; }
  .modal-sizes { gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
  .modal-size-btn { width: 44px; height: 44px; font-size: 0.75rem; }
  .modal-add-btn { width: 100%; padding: 14px; font-size: 0.78rem; margin-top: 10px; display: flex !important; }
  .wishlist-modal-btn { padding: 10px; font-size: 0.71rem; margin-bottom: 8px; display: flex !important; }

  /* X */
  .modal-close {
    top: 10px; right: 12px;
    width: 36px; height: 36px;
    z-index: 20;
    background: rgba(248,247,245,0.95);
    border: 1px solid var(--border);
  }
  .modal-img-arrow { width: 34px; height: 34px; }

  /* ── Coș sidebar – mobil ── */
  .cart-sidebar {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
    width: 100vw;
    right: -100vw;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
  }
  .cart-sidebar.open { right: 0; }
  .cart-header {
    padding: 16px 18px;
    flex-shrink: 0;
  }
  .cart-items {
    padding: 14px 18px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
  }
  .cart-footer {
    padding: 16px 18px;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    background: var(--cream);
  }
  .cart-item { gap: 12px; padding: 14px 0; }
  .cart-item-img { width: 68px; height: 84px; flex-shrink: 0; }
  .cart-item-name { font-size: 0.9rem; }
  .cart-total-price { font-size: 1.3rem; }

  /* ── Checkout modal – mobil slide-up ── */
  .checkout-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 95vh;
    max-height: 95dvh;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translate(0, 30px) !important;
    border-radius: 16px 16px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }
  .checkout-modal.open {
    transform: translate(0, 0) !important;
  }
  .checkout-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .checkout-left {
    padding: 24px 16px 16px;
  }
  .checkout-left h2 { font-size: 1.4rem; }
  .checkout-sub { font-size: 0.84rem; margin-bottom: 20px; }
  .checkout-right {
    padding: 16px 16px 32px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-row-3 { grid-template-columns: 1fr; gap: 12px; }
  .form-section { margin-bottom: 20px; }
  .form-group input, .form-group select {
    font-size: 16px; /* previne zoom iOS */
    padding: 12px 12px;
  }
  .form-section-title { font-size: 0.76rem; }
  .payment-option { padding: 10px 12px; font-size: 0.82rem; }
  .btn-send { padding: 14px; font-size: 0.78rem; }
  /* X checkout */
  #checkoutClose {
    top: 12px; right: 14px;
    width: 34px; height: 34px;
  }

  /* Size guide modal */
  .size-guide-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 92vh;
    max-height: 92dvh;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(30px) !important;
    border-radius: 16px 16px 0 0;
    padding: 44px 16px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .size-guide-modal.open {
    transform: translateY(0) !important;
  }
  .size-guide-modal h2 { font-size: 1.5rem; }
  .guide-sub { font-size: 0.82rem; margin-bottom: 20px; }
  .guide-body { gap: 20px; }
  .measure-guide { grid-template-columns: 1fr 1.4fr; gap: 16px; align-items: start; }
  .measure-visual { display: flex; justify-content: center; }
  .body-svg { width: 130px; }
  .measure-step p { font-size: 0.82rem; }
  .size-table-wrap h4 { font-size: 0.9rem; }
  .size-table th { padding: 8px 10px; font-size: 0.72rem; }
  .size-table td { padding: 7px 10px; font-size: 0.82rem; }
  .measure-tip { padding: 12px; }
  .measure-tip p { font-size: 0.8rem; }
  .measure-guide { grid-template-columns: 1fr 1.2fr; gap: 12px; }
  .body-svg { width: 110px; }
  .size-table th, .size-table td { padding: 7px 10px; font-size: 0.8rem; }

  /* Recenzii */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }

  /* Galerie */
  .gallery-grid { columns: 2; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map iframe { height: 260px; }

  /* Politici */
  .policies-grid { grid-template-columns: 1fr; }
  .policy-card { padding: 24px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.72rem; }

  /* Buttons */
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.75rem; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }

  /* Lightbox */
  .lightbox-prev { left: 6px; width: 40px; height: 40px; }
  .lightbox-next { right: 6px; width: 40px; height: 40px; }
  .lightbox-img-wrap img { max-width: 96vw; max-height: 78vh; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – MOBIL MIC (max 480px)
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: 3rem; }
  .hero-slogan { font-size: 0.95rem; }

  /* Produse – 2 coloane compacte pe telefon mic */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-body { padding: 10px; }
  .product-name { font-size: 0.88rem; }
  .product-price { font-size: 0.95rem; }
  .product-category { font-size: 0.62rem; }
  .product-sizes-preview { font-size: 0.58rem; }
  .product-colors { margin-bottom: 6px; }
  .color-dot { width: 11px; height: 11px; }
  .product-footer { padding-top: 8px; margin-top: 6px; }
  .product-card-img { aspect-ratio: 2/3; }

  /* Brand strip ascuns */
  .brand-strip { display: none; }

  /* Galerie – 2 coloane pe telefon mic */
  .gallery-grid { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }

  /* About logo mai mic */
  .about-img-wrap { max-width: 180px; }

  /* Nav logo mai mic */
  .nav-logo { font-size: 1.1rem; }
  .logo-ornament { display: none; }

  /* Modal pe iPhone SE – full screen */
  .product-modal {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
  }
  /* 480px: imaginea ramane naturala, nu taiata */
  .modal-img-side {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  .modal-info-side {
    display: block !important;
    width: 100% !important;
    padding: 16px 16px 32px !important;
    background: var(--white) !important;
  }
  .modal-name { font-size: 1.05rem; }
  .modal-price { font-size: 1.1rem; }
  .modal-size-btn { width: 36px; height: 36px; font-size: 0.7rem; }
  .modal-sizes { gap: 4px; }
  .modal-add-btn { padding: 13px; font-size: 0.73rem; }
  .modal-thumb { width: 38px; height: 46px; }

  .size-guide-modal {
    padding: 40px 12px 28px;
    max-height: 95vh;
    max-height: 95dvh;
    border-radius: 14px 14px 0 0;
  }
  .size-table th { padding: 7px 8px; font-size: 0.68rem; }
  .size-table td { padding: 6px 8px; font-size: 0.78rem; }
  .checkout-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 96vh;
    max-height: 96dvh;
    top: auto;
    bottom: 0;
    left: 0;
    border-radius: 14px 14px 0 0;
  }

  /* Checkout pe telefon mic */
  .checkout-left { padding: 16px 12px; }
  .checkout-sub { font-size: 0.82rem; }
  .checkout-left h2 { font-size: 1.5rem; }

  /* Success modal */
  .success-modal { width: 94vw; padding: 40px 24px; }
  .success-icon { width: 64px; height: 64px; font-size: 1.8rem; }

  /* Filter */
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 12px; font-size: 0.68rem; }
}


/* ══════════════════════════════════════════════════
   LIGHTBOX GALERIE
══════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.94);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(250,246,240,0.12);
  border: 1.5px solid rgba(250,246,240,0.25);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  background: rgba(250,246,240,0.1);
  border: 1.5px solid rgba(250,246,240,0.2);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250,246,240,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-family: var(--font-body);
}
.gallery-zoom-icon {
  font-size: 1.4rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-img-wrap img { max-width: 96vw; max-height: 80vh; }
}

/* TVA note */
.tva-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.product-price .tva-note,
.cart-item-price .tva-note,
.order-item-price .tva-note {
  display: inline;
  margin-left: 4px;
}

/* ── Buton Galerie "Vezi Mai Multe" ─────────────── */
.gallery-load-more {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 8px;
}
.gallery-load-line {
  flex: 1;
  height: 1px;
  background: rgba(201,149,108,0.25);
}
.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid rgba(201,149,108,0.5);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.gallery-more-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.gallery-more-btn svg {
  transition: transform 0.3s ease;
}
.gallery-more-btn:hover svg {
  transform: translateY(3px);
}

/* ── Badge video în galerie ─────────────────────── */
.gallery-video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(26,20,16,0.6);
  color: var(--cream);
  font-size: 0.65rem;
  padding: 4px 8px;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 2;
}
.gallery-item video {
  display: block;
  width: 100%;
  height: auto;
}
/* ══════════════════════════════════════════════════
   WISHLIST
══════════════════════════════════════════════════ */

/* Inimioară pe cardul de produs */
.wishlist-heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 34px;
  height: 34px;
  background: rgba(250,246,240,0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.85);
}
.product-card:hover .wishlist-heart-btn,
.wishlist-heart-btn.active {
  opacity: 1;
  transform: scale(1);
}
.wishlist-heart-btn:hover {
  background: var(--white);
  color: var(--rose-deep);
  transform: scale(1.12) !important;
}
.wishlist-heart-btn svg {
  transition: fill 0.25s ease, stroke 0.25s ease;
}

/* Pe mobil inima e mereu vizibilă */
@media (max-width: 768px) {
  .wishlist-heart-btn {
    opacity: 1;
    transform: scale(1);
    width: 30px;
    height: 30px;
  }
}

/* Buton wishlist din navbar */
.wishlist-nav-btn { margin-right: 2px; }
.wishlist-count {
  background: var(--rose-deep) !important;
}

/* Buton Adaugă la Favorite în modal */
.wishlist-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}
.wishlist-modal-btn:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}
.wishlist-modal-btn.active {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  background: var(--rose-pale);
}
/* ── Buton Rută Google Maps ─────────────────────── */
.maps-route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--dark);
}
.maps-route-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
/* ── Săgeți navigare imagine modal ─────────────────── */
.modal-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(250,246,240,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.modal-img-arrow:hover { background: var(--white); }
.modal-img-arrow-left  { left: 12px; }
.modal-img-arrow-right { right: 12px; }

.modal-sticky-bar { display: none; }

/* iOS: previne scroll pagina cand sidebar-ul e deschis */
.cart-sidebar, #wishlistSidebar {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  overscroll-behavior: contain;
}

/* ── touch-action: manipulation - elimina delay 300ms pe TOATE butoanele ── */
button, a, input[type="submit"], input[type="button"],
input[type="checkbox"], input[type="radio"],
select, label, [onclick], [role="button"],
.filter-btn, .product-card, .color-dot,
.modal-color-btn, .modal-size-btn,
.cart-btn, .wishlist-heart-btn,
.cart-item-remove, .produs-size-btn,
.cart-overlay, .modal-overlay {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── iOS: previne zoom la focus pe input (font-size < 16px face zoom) ── */
.modal-info-side input,
.modal-info-side select,
.modal-info-side textarea,
.checkout-left input,
.checkout-left select,
.checkout-left textarea,
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 16px !important;
}

/* ── Android: previne highlight la tap pe butoane ── */
button, a, .color-dot, .product-card, .modal-thumb, .filter-btn {
  -webkit-tap-highlight-color: transparent;
}

/* ── Prevent accidental zoom on double tap ── */
.product-card, .modal-color-btn, .modal-size-btn, .filter-btn {
  touch-action: manipulation;
}

/* Modal scroll pe iOS */
.product-modal { touch-action: pan-y; }

.lightbox-img-wrap { touch-action: pinch-zoom pan-x pan-y; }
/* ── Modal imagine – container simplu ─────────────── */
.modal-img-main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f6;
}
.modal-img-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
}
.modal-img-emoji {
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
/* Color name sub swatches */
.modal-color-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 18px;
  display: block;
}
/* Hint marime */
.modal-size-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.modal-guide-btn {
  color: var(--gold);
  cursor: pointer;
  font-size: 0.78rem;
  margin-left: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 600;
}
/* ── Hover DOAR pe dispozitive cu mouse (nu mobil) ── */
@media (hover: hover) {
  .btn-primary:hover    { background: var(--gold); }
  .btn-gold:hover       { background: var(--dark); }
  .filter-btn:hover     { background: var(--dark); color: var(--cream); }
  .cart-item-remove:hover { color: var(--rose-deep); }
  .wishlist-heart-btn:hover svg { fill: var(--rose-deep); stroke: var(--rose-deep); }
}
/* Previne hover stuck pe mobil dupa tap */
@media (hover: none) {
  .btn-primary:hover,
  .btn-gold:hover,
  .filter-btn:hover { background: initial; color: initial; }
}
/* ── Modal Thumbnailuri (mutat din script.js) ───────────────────── */
.modal-thumbnails {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(26,20,16,0.7);
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  min-height: 0;
}
.modal-thumbnails:empty { display: none; }
.modal-thumb {
  width: 60px;
  height: 70px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-thumb:hover  { border-color: rgba(201,149,108,0.7); transform: scale(1.05); }
.modal-thumb.active { border-color: #c9956c; }

/* ── Câmpuri de formular cu eroare de validare ─────────────────── */
input.error,
textarea.error,
select.error {
  border-color: #c62828 !important;
  background: #fff8f8;
}