/* Namera Textile — main stylesheet */

:root {
  --black: #0c0c0c;
  --near-black: #16140f;
  --gold: #b8912f;
  --gold-light: #d9b45e;
  --gold-deep: #86641c; /* darker gold used for small text on light backgrounds — passes WCAG AA contrast, unlike --gold */
  --cream: #f7f3ea;
  --cream-alt: #efe8d8;
  --white: #ffffff;
  --text: #262420;
  --text-muted: #6b6558;
  --border: #e3dcc9;
  --radius: 4px;
  --max-width: 1180px;
  --shadow: 0 10px 30px rgba(12, 12, 12, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  /* Lets long unbreakable strings (emails, long product names/codes) wrap
     instead of forcing flex/grid tracks wider than the viewport — the actual
     cause of horizontal scroll at in-between widths. overflow-wrap: anywhere
     (not break-word) is required because only "anywhere" is factored into
     the automatic minimum size flex/grid items use when deciding whether to
     shrink; break-word affects visual wrapping only, not that calculation. */
  overflow-wrap: anywhere;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.8em;
}
/* On dark backgrounds the deep gold is too dark to read — use the lighter gold there instead. */
.page-hero .eyebrow, .hero .eyebrow, .cta-banner .eyebrow, .section-dark .eyebrow {
  color: var(--gold-light);
}
.section { padding: 78px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--black); color: #ece7db; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #cfc9ba; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-whatsapp {
  background: #25D366;
  color: #06340f;
}
.btn-whatsapp:hover { filter: brightness(1.05); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,12,0.97);
  border-bottom: 1px solid rgba(184,145,47,0.25);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1.05rem; letter-spacing: 0.03em;
}
.brand-text span { color: var(--gold-light); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; }
.main-nav a.nav-link { color: #e9e4d6; font-size: 0.94rem; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--gold-light); border-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { font-size: 0.78rem; }
.lang-switch select {
  background: #17150f; color: #e9e4d6; border: 1px solid #3a3527;
  border-radius: 4px; padding: 6px 10px; font-size: 0.78rem; font-family: inherit;
  cursor: pointer; max-width: 120px;
}
.lang-switch select:hover { border-color: var(--gold); }
.lang-switch select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(184, 145, 47, 0.35); }
.lang-switch select option { background: var(--black); color: #e9e4d6; }
.header-actions .btn { padding: 10px 18px; font-size: 0.85rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 64px 0 0 0; background: var(--black); flex-direction: column; align-items: flex-start; padding: 24px; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 18px; width: 100%; }
  .header-actions { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 24px; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  min-height: 86vh;
  display: flex; align-items: center;
  background: var(--black); /* no photo yet — plain solid background */
  color: var(--white);
}
/* .container is a flex item here, so width:auto shrink-wraps to its content
   instead of filling the row like it does in normal block sections — that
   left the hero text hugging the left edge with a huge empty gap on the
   right. Forcing width:100% restores the usual max-width+auto-margin
   centering behavior. */
.hero > .container { width: 100%; }
.hero-content { max-width: 1040px; }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.2vw, 4.3rem); }
.hero p.lead { font-size: 1.25rem; color: #e5e0d2; max-width: 780px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
@media (max-width: 700px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.hero-stats div strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--gold-light); }
.hero-stats div span { font-size: 0.8rem; color: #cfc9ba; text-transform: uppercase; letter-spacing: 0.06em; }

/* Page header (non-home) */
.page-hero {
  background: var(--black); color: var(--white);
  padding: 70px 0 50px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 5.5vw, 4.1rem); }
.page-hero p { color: var(--white); max-width: 640px; }
.breadcrumb { font-size: 0.82rem; color: #a49d8b; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* Cards */
.grid { display: grid; gap: 28px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black);
}
.card .icon-badge { margin-bottom: 14px; }
.vertical-pill .icon-badge { width: 28px; height: 28px; }

/* Editorial numbered list (used instead of a row of matching feature cards) */
.numbered-list { display: flex; flex-direction: column; }
.numbered-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 26px 0; border-bottom: 1px solid #332e21;
}
.numbered-item:first-child { padding-top: 0; }
.numbered-item:last-child { border-bottom: none; }
.numbered-item .num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0; width: 60px;
}
.numbered-item h3 { color: #fff; margin-bottom: 6px; }
.numbered-item p { color: #cfc9ba; margin: 0; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.product-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); display: flex; flex-direction: column; }
.product-card .pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card .pc-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 8px; }
.product-card ul { list-style: none; padding: 0; margin: 14px 0; font-size: 0.9rem; color: var(--text-muted); }
.product-card ul li { padding: 5px 0; border-top: 1px dashed var(--border); }
.product-card ul li:first-child { border-top: none; }
.product-card ul li strong { color: var(--text); font-weight: 600; }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* Stats bar */
.stats-bar { background: var(--cream-alt); padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar .grid { text-align: center; }
.stats-bar strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--black); }
.stats-bar span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Split section (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-img { order: 2; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-img { order: 0; } }

/* Full-width text block — used where a split-with-photo layout used to sit
   before the placeholder photo was removed (About: story, quality; Home:
   infrastructure). Widened from 900px so it doesn't leave a large empty
   margin now that there's no photo column beside it. */
.wide-text { max-width: 1080px; }
.wide-text ul { margin-top: 8px; }

.photo-trio { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; grid-auto-rows: 1fr; min-height: 360px; }
.photo-trio .main-photo { grid-row: span 2; }
.photo-trio img { border-radius: var(--radius); height: 100%; object-fit: cover; box-shadow: var(--shadow); }

/* Placeholder used where a real product/warehouse photo will go later —
   built only from existing palette vars, no stock imagery. */
.photo-placeholder {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-alt) 55%, var(--gold-light) 145%);
}
.split-img .photo-placeholder { width: 100%; aspect-ratio: 4 / 3; }
.photo-trio .photo-placeholder { height: 100%; }

/* Table (specs) */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin: 18px 0 26px; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.spec-table th { width: 42%; color: var(--text-muted); font-weight: 600; background: var(--cream); }
.spec-table td { color: var(--text); }

/* Product section anchors */
.product-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.product-tabs a { padding: 10px 20px; border: 1px solid var(--border); border-radius: 30px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.product-tabs a:hover { border-color: var(--gold); color: var(--gold-deep); }
.product-block { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; padding: 56px 0; border-bottom: 1px solid var(--border); }
.product-block:last-child { border-bottom: none; }
@media (max-width: 900px) { .product-block { grid-template-columns: 1fr; } }
.product-block .code { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; }

/* Spec cards — the same [key, value] rows that used to render as one long
   .spec-table, split by lib/productView.js into three themed cards so a buyer
   can find composition, sizes and laundry performance without scanning the
   whole list. .spec-table is kept above as the fallback. */
.spec-groups { display: grid; gap: 18px; }
.spec-group { padding: 22px 24px; }
.spec-group:hover { box-shadow: none; transform: none; }
.spec-group h3 { font-size: 1.02rem; margin-bottom: 12px; }
.spec-group dl { margin: 0; display: grid; grid-template-columns: 42% 1fr; column-gap: 14px; font-size: 0.92rem; }
.spec-group dt, .spec-group dd { padding: 8px 0; border-top: 1px solid var(--border); margin: 0; }
.spec-group dt { color: var(--text-muted); font-weight: 600; }
.spec-group dt:first-child, .spec-group dt:first-child + dd { border-top: none; padding-top: 0; }
@media (max-width: 520px) {
  .spec-group dl { grid-template-columns: 1fr; }
  .spec-group dd { border-top: none; padding-top: 0; padding-bottom: 10px; }
}

/* Extras stacked under both columns of a product block (audience pills,
   quality note, links to the other categories). */
.product-block .product-extra { grid-column: 1 / -1; margin-top: 36px; }
.extra-h, .product-extra .extra-h {
  font-family: 'Jost', 'Segoe UI', Arial, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 16px;
}
.vertical-strip-left { justify-content: flex-start; }

.quality-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: 20px 24px;
}
.quality-note h3 { font-size: 1.05rem; margin-bottom: 6px; }
.quality-note p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }

.related-card { display: block; padding: 22px 24px; }
.related-card h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.related-card p { font-size: 0.9rem; }
.related-card:hover { border-color: var(--gold); }

/* Carduri de categorie — cartea de vizită a fiecărei categorii pe hub-ul
   /produse și în blocul „alte categorii" de pe o pagină de categorie.
   Fără poze: iconiță SVG existentă + text, pe .card-ul din sistemul curent. */
.category-grid .category-card, .family-items .category-card { display: flex; flex-direction: column; padding: 26px 24px; }
.category-card .code { margin-bottom: 4px; }
.category-card h3 { font-size: 1.12rem; margin: 6px 0 8px; }
.category-card p { flex: 1; font-size: 0.92rem; }
.category-card:hover { border-color: var(--gold); }
.category-cta {
  margin-top: 16px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep);
}
.category-card-sm { padding: 20px 22px; }
.category-card-sm h3 { font-size: 1rem; }
.category-card-sm p { font-size: 0.86rem; }

/* Grupuri de familie pe hub — un titlu + descriere comună, apoi 1–3 carduri,
   câte unul per calitate (Standard / Select / Superior etc.). */
.family-list { display: flex; flex-direction: column; gap: 46px; }
.family-group { border-top: 1px solid var(--border); padding-top: 26px; }
.family-list .family-group:first-child { border-top: none; padding-top: 0; }
.family-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.family-head h3 { font-size: 1.35rem; margin-bottom: 4px; }
.family-head p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.family-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 980px) { .family-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .family-items { grid-template-columns: 1fr; } }
.category-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 600; color: var(--black); margin: 6px 0 8px; line-height: 1.25; }

/* Eticheta de calitate (tier) — text scurt, netradus, din products.json */
.tier-badge {
  display: inline-block; align-self: flex-start;
  background: var(--cream-alt); border: 1px solid var(--border); border-radius: 30px;
  padding: 3px 12px; margin-top: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep);
}
.tier-badge-hero { background: transparent; border-color: var(--gold); color: var(--gold-light); margin: 0 0 0 10px; }

/* Celelalte calități ale aceluiași produs, pe pagina de produs */
.tier-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .tier-list { grid-template-columns: 1fr; } }
.tier-card { display: flex; flex-direction: column; padding: 22px 24px; }
.tier-card .tier-badge { margin-top: 0; }
.tier-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 600; color: var(--black); margin: 12px 0 8px; }
.tier-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.tier-card:hover { border-color: var(--gold); }
.tier-card > div { flex: 1; }

/* Pagina de categorie: highlights + CTA în stânga, cardurile de specificații
   în dreapta. Aceleași proporții ca vechiul .product-block, dar fără chenarul
   de separare — pe pagina proprie nu mai există un al doilea produs sub el. */
.product-block-detail { padding-top: 0; border-bottom: none; }
.category-card .code, .product-block-detail .code { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; }
.product-block-detail .product-extra:first-of-type { margin-top: 10px; }

/* Verticals */
.vertical-strip { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.vertical-pill { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); padding: 12px 20px; border-radius: 30px; font-size: 0.92rem; font-weight: 600; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, #16140f, #0c0c0c);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #cfc9ba; max-width: 560px; margin: 0 auto 30px; }
.cta-banner .btn-row { justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item .icon-badge { width: 30px; height: 30px; margin-top: 2px; }
.contact-info-item strong { display: block; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { color: var(--text-muted); font-size: 0.95rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 26px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.form-box {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px 34px 32px; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.form-box::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.form-box h3 { margin-bottom: 22px; }
/* Honeypot anti-spam (contact.njk) — ascuns vizual pentru oameni, dar tot
   prezent în DOM/tab-order eliminat separat prin aria-hidden + tabindex="-1"
   pe elementul din HTML; poziționarea în afara ecranului (nu display:none)
   e intenționată — unele filtre de spam mai simple ignoră câmpurile
   display:none, dar nu și pe cele doar scoase din viewport. */
.nt-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field label .req { color: var(--gold-deep); margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #8f8567; border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; background: var(--white); color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 145, 47, 0.16);
}
.field input.has-error, .field select.has-error, .field textarea.has-error { border-color: #b23b3b; }
.form-box .btn-gold { width: 100%; justify-content: center; padding: 15px 30px; font-size: 1rem; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; text-align: center; }

.form-alert {
  border-radius: var(--radius); padding: 14px 18px; font-weight: 600; font-size: 0.92rem;
  margin-bottom: 22px; border-left: 3px solid;
}
.form-alert-success { background: var(--cream-alt); border-left-color: var(--gold); color: #3d3320; }
.form-alert-error { background: #fbeeee; border-left-color: #b23b3b; color: #7a2020; }

/* Testimonial / trust */
.trust-row { display: flex; align-items: center; justify-content: center; gap: 46px; flex-wrap: wrap; opacity: 0.85; }
.trust-row .badge { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); text-align: center; width: 130px; }
.trust-row .badge .glyph { font-size: 1.8rem; }

/* Footer */
.site-footer { background: var(--black); color: #cfc9ba; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer p { color: #cfc9ba; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .brand img { height: 40px; }
.site-footer .brand { margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #9c9686; }
.footer-bottom a { color: #9c9686; }
.footer-bottom a:hover { color: var(--gold-light); }

/* Legal pages */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 2em; }
.legal-content p, .legal-content li { color: var(--text-muted); }
.legal-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 16px 20px; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 34px; }

/* Sticky WhatsApp button */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  background: #25D366; color: #06340f; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.wa-float:hover { filter: brightness(1.06); }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--black); color: #ece7db;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 22px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 24px;
}
.cookie-banner-inner p { margin: 0; font-size: 0.88rem; max-width: 640px; }
.cookie-banner-inner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn { padding: 10px 18px; font-size: 0.82rem; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; }
}
