/* Arhitectul Somnului — design system temp */
:root {
  --bg: #faf7f2;
  --bg-soft: #f5f0e8;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #7a7470;
  --border: #e8e2d5;
  --accent: #8b6f47;
  --accent-hover: #6e5538;
  --gold: #c9a063;
  --wa: #25d366;
  --wa-hover: #1ebe5a;
  --max: 1200px;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px -10px rgba(0,0,0,0.15);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--ink-soft); }
.muted { color: var(--muted); font-size: 0.9rem; }
.eyebrow { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; color: var(--accent); font-weight: 600; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: var(--max); margin: 0 auto; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.02em; }
.brand-tag { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a { font-size: 0.95rem; color: var(--ink-soft); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
@media (max-width: 880px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero (interior pages) */
.hero { padding: 5rem 0 4rem; text-align: center; }
.hero h1 { margin: 1rem auto 1.5rem; max-width: 22ch; }
.hero p.lead { max-width: 56ch; margin: 0 auto 2rem; font-size: 1.15rem; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero SLIDER (homepage) */
.hero-slider {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider .slides { position: absolute; inset: 0; }
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 1.6s ease, transform 9s ease;
  will-change: opacity, transform;
}
.hero-slider .slide.active { opacity: 1; transform: scale(1); }
.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.62) 45%, rgba(10,8,6,0.74) 100%);
  z-index: 1;
}
.hero-slider .content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 7rem;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  color: white;
}
.hero-slider .eyebrow { color: var(--gold); }
.hero-slider h1 {
  color: white;
  margin: 1.25rem auto 1.5rem;
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-slider .lead {
  color: rgba(255,255,255,0.94);
  max-width: 58ch;
  margin: 0 auto 2.25rem;
  font-size: 1.15rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-slider .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-slider .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.85); }
.hero-slider .btn-secondary:hover { background: white; color: var(--ink); border-color: white; }

.hero-slider-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 0;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.hero-slider-dots button:hover { background: rgba(255,255,255,0.7); }
.hero-slider-dots button.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero-slider { min-height: 78vh; }
  .hero-slider .content { padding: 4rem 1rem 5rem; }
  .hero-slider .lead { font-size: 1rem; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.5rem; font-weight: 500; font-size: 0.95rem; border-radius: var(--radius); transition: all .2s ease; border: 1px solid transparent; cursor: pointer; text-decoration: none; }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--accent); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: white; }
.btn-whatsapp { background: var(--wa); color: white; }
.btn-whatsapp:hover { background: var(--wa-hover); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: white; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* Cards */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.card-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.25rem; }
.card-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; }
.card-sub { color: var(--muted); font-size: 0.85rem; margin-top: 0.25rem; }

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Bed gallery filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.1rem; border: 1px solid var(--border); background: var(--surface); border-radius: 999px; font-size: 0.85rem; cursor: pointer; transition: all .2s; color: var(--ink-soft); }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--ink); color: white; border-color: var(--ink); }
.search-box { width: 100%; max-width: 420px; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-sans); background: var(--surface); margin-bottom: 1rem; display: block; margin-left: auto; margin-right: auto; }
.search-box:focus { outline: none; border-color: var(--accent); }

/* Feature blocks (pillars) */
.pillars { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 2rem; }
.pillar { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.pillar h3 { margin-bottom: 0.75rem; color: var(--accent); }
.pillar p { font-size: 0.95rem; }
.pillar-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: var(--bg-soft); border-radius: 50%; margin-bottom: 1rem; color: var(--accent); font-size: 1.4rem; }

/* Quote / pull */
.pullquote { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; text-align: center; max-width: 32ch; margin: 0 auto; line-height: 1.4; color: var(--ink); }
.pullquote::before { content: '"'; font-size: 4rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 0.2em; }
.pullquote-attr { display: block; font-family: var(--font-sans); font-size: 0.85rem; font-style: normal; color: var(--muted); margin-top: 1.5rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Structure / specs page — feature grid (no icons) */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.spec-item { padding: 2rem 1.75rem; border-top: 2px solid var(--border); position: relative; transition: background .2s; }
.spec-item:hover { background: var(--surface); }
.spec-item:hover .spec-accent { background: var(--accent); }
.spec-accent { display: block; width: 28px; height: 2px; background: var(--border); margin-bottom: 1rem; transition: background .2s; }
.spec-num { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.6rem; display: block; }
.spec-item h4 { font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.25; margin-bottom: 0.6rem; color: var(--ink); }
.spec-item p { font-size: 0.9rem; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spec-grid { grid-template-columns: 1fr; } .spec-item { padding: 1.5rem 1.25rem; } }

/* Two-col layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split .img-block { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--bg-soft); }
.split .img-block img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* CTA banner — full width, gradient + bed image ghost */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 80% at 88% 8%, rgba(90,52,18,0.55) 0%, transparent 58%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(30,18,8,0.7) 0%, transparent 55%),
    linear-gradient(148deg, #1c1710 0%, #211b13 30%, #181410 65%, #141210 100%);
  color: white;
  padding: 5.5rem 0;
  text-align: center;
  margin: 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/home/hero-1.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.07;
  filter: grayscale(60%) contrast(0.85);
  mix-blend-mode: luminosity;
  pointer-events: none;
}
body[data-depth="sub"] .cta-banner::before {
  background-image: url('../assets/img/home/hero-1.png');
}
.cta-inner { position: relative; z-index: 1; padding: 0 1.5rem; }
.cta-banner h2 { color: white; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 52ch; margin: 0 auto 2rem; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Showroom contact cards */
.showroom { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.showroom h3 { margin-bottom: 0.5rem; }
.showroom .addr { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.95rem; }
.showroom .actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }

/* Product hero */
.product-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1510;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.product-hero-bg.loaded { transform: scale(1); }
.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}
.product-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 3.5rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  color: white;
}
.product-hero-content .breadcrumb { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.product-hero-content .breadcrumb a { color: rgba(255,255,255,0.6); }
.product-hero-content .breadcrumb a:hover { color: white; }
.product-hero-content .eyebrow { color: var(--gold); }
.product-hero-content h1 { color: white; margin: 0.5rem 0 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.product-hero-content .lead { color: rgba(255,255,255,0.92); text-shadow: 0 1px 12px rgba(0,0,0,0.4); font-size: 1.1rem; max-width: 62ch; margin: 0 0 2rem; text-align: left; }
.product-hero-content p { color: rgba(255,255,255,0.92); }
.product-hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.product-hero .btn-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.product-hero .btn-secondary:hover { background: white; color: var(--ink); border-color: white; }
@media (max-width: 768px) { .product-hero { min-height: 55vh; } }

/* Product info (specs + text below hero) */
.product-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3.5rem 0 2rem; }
@media (max-width: 768px) { .product-info-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Image gallery (above variații) */
.img-gallery { margin-bottom: 0; }
.img-gallery-main { border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); cursor: pointer; }
.img-gallery-main img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .4s ease; }
.img-gallery-main:hover img { transform: scale(1.03); }
.img-gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 6px; margin-top: 6px; }
.img-gallery-thumbs .thumb { border-radius: 4px; overflow: hidden; background: var(--bg-soft); cursor: pointer; }
.img-gallery-thumbs .thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: all .2s; opacity: 0.82; }
.img-gallery-thumbs .thumb:hover img, .img-gallery-thumbs .thumb.active img { opacity: 1; }
.img-gallery-thumbs .thumb.active { outline: 2px solid var(--accent); outline-offset: 1px; border-radius: 4px; }

/* Photo gallery strip */
.gallery-strip { display: grid; gap: 6px; }
/* 1 image: full width, tall */
.gallery-strip.g1 { grid-template-columns: 1fr; }
.gallery-strip.g1 .gitem { aspect-ratio: 3/2; border-radius: var(--radius); }
/* 2 images: stacked vertically */
.gallery-strip.g2 { grid-template-columns: 1fr; }
.gallery-strip.g2 .gitem:first-child { aspect-ratio: 3/2; border-radius: var(--radius) var(--radius) 0 0; }
.gallery-strip.g2 .gitem:last-child { aspect-ratio: 3/1; border-radius: 0 0 var(--radius) var(--radius); }
/* 3+ images: main hero on top + thumbnails strip below */
.gallery-strip.gn { grid-template-columns: 1fr; gap: 6px; }
.gallery-strip.gn .gitem { aspect-ratio: 4/3; border-radius: var(--radius); }
.gallery-strip.gn .gitem.hero { aspect-ratio: 3/2; border-radius: var(--radius); grid-column: 1; }
.gallery-strip .thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 6px; }
.gallery-strip .thumbs .gitem { aspect-ratio: 1; border-radius: 4px; }
.gallery-strip .gitem { overflow: hidden; background: var(--bg-soft); cursor: pointer; }
.gallery-strip .gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.gallery-strip .gitem:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 80px rgba(0,0,0,.7); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 0; color: white; font-size: 2rem; cursor: pointer; line-height: 1; opacity: .8; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: 0; color: white; font-size: 1.8rem; padding: 0.8rem 1.1rem; cursor: pointer; border-radius: 4px; line-height: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }

/* Related cards (Variatii + Alte modele) */
.rel-section { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.rel-section h3 { font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.rel-section h3::before { content: ''; display: block; width: 32px; height: 2px; background: var(--accent); flex-shrink: 0; }
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.rel-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: all .2s ease; text-decoration: none; display: block; }
.rel-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rel-card-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.rel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rel-card:hover .rel-card-img img { transform: scale(1.06); }
.rel-card-name { padding: 0.6rem 0.75rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }

/* Bed detail page */
.detail-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: start; }
.detail-info h1 { margin-bottom: 0.5rem; }
.detail-info .breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.detail-info .breadcrumb a:hover { color: var(--accent); }
/* Specs table — fixed label width so values don't wrap into labels */
.detail-specs { margin: 1.75rem 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.detail-specs h4 { padding: 0.9rem 1.25rem; background: var(--bg-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid var(--border); font-family: var(--font-sans); color: var(--muted); font-weight: 600; margin: 0; }
.detail-specs ul { list-style: none; }
.detail-specs li { display: grid; grid-template-columns: 150px 1fr; gap: 0.5rem 1rem; padding: 0.7rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; align-items: start; }
.detail-specs li:last-child { border-bottom: 0; }
.detail-specs li span:first-child { color: var(--muted); font-size: 0.88rem; }
.detail-specs li span:last-child { color: var(--ink); font-weight: 500; }
.detail-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 480px) { .detail-specs li { grid-template-columns: 120px 1fr; } }

/* Floating WhatsApp */
.fab-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.08); background: var(--wa-hover); }
.fab-wa svg { width: 32px; height: 32px; }

/* Footer */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 3rem 0 1.5rem; margin-top: 0; }
.footer h4 { color: white; margin-bottom: 1rem; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer a { color: rgba(255,255,255,0.7); transition: color .2s; display: block; padding: 0.25rem 0; font-size: 0.9rem; }
.footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-align: center; }
.footer-brand-name { color: white; font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.5rem; }

/* Accesorii categories */
.acc-category { padding: 3rem 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: all .2s; }
.acc-category:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.acc-category-icon { font-size: 3rem; margin-bottom: 1rem; }
.acc-category h3 { margin-bottom: 0.75rem; }

/* Convictions (Convingerile mele despre somn) */
.convictions { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 1.5rem; max-width: 920px; margin: 2.5rem auto 0; }
.conviction { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem 2.25rem 2.25rem; transition: all .25s ease; position: relative; }
.conviction:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.conviction-num { display: inline-block; font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.2em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--accent); }
.conviction-headline { font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.3; color: var(--ink); margin-bottom: 0.85rem; font-weight: 600; letter-spacing: -0.005em; }
.conviction-body { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 768px) {
  .convictions { grid-template-columns: 1fr; gap: 1rem; }
  .conviction { padding: 2rem 1.5rem; }
  .conviction-headline { font-size: 1.2rem; }
}

/* Saltele fermitate cards */
.firm-card { padding: 1.75rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); position: relative; transition: all .2s; }
.firm-card:hover { border-color: var(--accent); }
.firm-card h4 { margin-bottom: 0.75rem; font-family: var(--font-serif); }
.firm-card .level { display: flex; gap: 4px; margin-bottom: 1rem; }
.firm-card .level span { flex: 1; height: 6px; background: var(--border); border-radius: 3px; }
.firm-card .level span.fill { background: var(--accent); }

/* Helpers */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.divider { width: 60px; height: 2px; background: var(--accent); margin: 1.5rem auto; }
.divider-left { width: 60px; height: 2px; background: var(--accent); margin: 1rem 0 1.5rem; }


/* Pricing dimension cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 860px; margin: 0 auto; }
@media (max-width: 680px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; position: relative; transition: all .2s; }
.pricing-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card.featured { border-color: var(--accent); border-width: 2px; }
.pricing-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.9rem; border-radius: 999px; white-space: nowrap; }
.pricing-card .dim { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.pricing-card .price { font-size: 2rem; font-weight: 700; color: var(--accent); margin: 0.75rem 0 1.5rem; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--muted); margin-left: 2px; }
.pricing-card .price-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card .price-btns .btn { padding: 0.65rem 1rem; font-size: 0.88rem; justify-content: center; }
