/* ===========================================================
   Dona-Flor — Flores artificiales de alta gama
   Hoja de estilos principal
   =========================================================== */

:root {
  --ink: #2b2420;
  --ink-soft: #6b6560;
  --ink-faint: #948d84;
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-alt: #f4ede3;
  --rose: #b85c6b;
  --rose-dark: #8b3a4a;
  --rose-pale: #f5e3e2;
  --sage: #74845a;
  --sage-dark: #566141;
  --sage-pale: #e9eddf;
  --gold: #c9a96a;
  --border: #e8ded0;
  --success: #4f7a52;
  --danger: #b3453f;
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px -4px rgba(43, 36, 32, .12);
  --shadow: 0 14px 34px -16px rgba(43, 36, 32, .28);
  --shadow-lg: 0 24px 60px -20px rgba(43, 36, 32, .32);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }
.section-head.left { text-align: left; margin: 0 0 36px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--rose-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--rose); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-sage { background: var(--sage-dark); color: #fff; }
.btn-sage:hover { background: var(--sage); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: #fff; cursor: pointer;
}
.btn-icon:hover { border-color: var(--rose-dark); color: var(--rose-dark); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--rose-dark);
  color: #fff;
  font-size: .82rem;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .02em;
}
.topbar strong { font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--maxw); margin: 0 auto; gap: 20px;
}
.logo {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--ink);
  letter-spacing: .01em;
}
.logo span { color: var(--rose-dark); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: .93rem; font-weight: 500; color: var(--ink-soft);
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--rose-dark); border-color: var(--rose-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--rose-dark); color: #fff; font-size: .68rem; font-weight: 700;
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: inline-flex; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center; cursor: pointer;
  }
  .mobile-nav {
    display: none; flex-direction: column; gap: 2px; background: var(--surface);
    border-top: 1px solid var(--border); padding: 10px 24px 18px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); font-weight: 500; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 15% 20%, #f6e9df 0%, var(--bg) 55%);
  padding: 90px 0 70px;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); margin-bottom: .3em; }
.hero p.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 480px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 26px; margin-top: 42px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.hero-badge .ic { color: var(--sage-dark); }
.hero-art {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) {
  .hero { padding: 28px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-art { order: -1; aspect-ratio: 5/4; max-height: 360px; }
  .hero p.lead { max-width: none; }
  .hero-badges { gap: 18px 26px; margin-top: 32px; }
}

/* ---------- Placeholder art (used until real product photography is added) ---------- */
.ph-art {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--c1, #f0dfe0), var(--c2, #fbf3e8));
  overflow: hidden;
}
.ph-art svg { width: 46%; height: 46%; opacity: .92; }
.ph-art::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 60%);
}
.ph-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(43,36,32,.68); color: #fff; font-size: .66rem; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px; font-weight: 600; backdrop-filter: blur(2px);
  white-space: nowrap;
}
.gallery-thumb .ph-tag,
.cart-row-thumb .ph-tag { display: none; }

/* ---------- Real product photo frame (with graceful fallback) ---------- */
.photo-frame {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  background: linear-gradient(155deg, var(--c1, #f0dfe0), var(--c2, #fbf3e8));
}
.photo-frame .ph-fallback-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .5; z-index: 1;
}
.photo-frame .ph-fallback-icon svg { width: 40%; height: 40%; }
.photo-frame img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; display: block; }
.card-badge.stock-alt { background: var(--ink-soft); }

/* ---------- USP bar ---------- */
.usp-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 0; }
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-item .ic {
  width: 44px; height: 44px; border-radius: 50%; background: var(--rose-pale); color: var(--rose-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.usp-item h4 { font-family: var(--sans); font-size: .92rem; margin: 0 0 2px; }
.usp-item p { font-size: .8rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 880px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp-grid { grid-template-columns: 1fr; } }

/* ---------- Product grid / cards ---------- */
.grid-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 980px) { .grid-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-products { grid-template-columns: 1fr; } }

.card-product {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.card-product:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-media { position: relative; aspect-ratio: 1/1; }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--rose-dark); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .03em; padding: 5px 11px; border-radius: 999px;
}
.card-badge.alt { background: var(--sage-dark); }
.card-quickadd {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--rose-dark); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: opacity .15s, transform .15s;
}
.card-product:hover .card-quickadd { opacity: 1; transform: translateY(0); }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-tag { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sage-dark); font-weight: 600; }
.card-body h3 { font-size: 1.18rem; margin: 0; }
.card-body h3 a:hover { color: var(--rose-dark); }
.card-desc { font-size: .86rem; color: var(--ink-soft); margin: 0; flex: 1; }
.card-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.price { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.price-old { font-size: .88rem; color: var(--ink-faint); text-decoration: line-through; }
.price-lg { font-size: 1.9rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .82rem; color: var(--ink-soft); padding: 20px 0 0; }
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb .sep { margin: 0 6px; color: var(--ink-faint); }

/* ---------- Product page ---------- */
.pdp { padding: 30px 0 80px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 34px; } }

.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow); margin-bottom: 14px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; cursor: pointer;
  border: 2px solid transparent; opacity: .82; transition: opacity .15s, border-color .15s;
}
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--rose-dark); }

.pdp-info h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 6px; }
.pdp-tag { color: var(--sage-dark); font-weight: 600; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.pdp-sku { color: var(--ink-faint); font-size: .8rem; margin-bottom: 18px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.stock-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600;
  color: var(--success); background: #eaf3ea; padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.stock-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.pdp-lead { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 26px; }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-selector button { width: 40px; height: 44px; border: none; background: #fff; font-size: 1.1rem; cursor: pointer; }
.qty-selector button:hover { background: var(--surface-alt); }
.qty-selector input { width: 44px; text-align: center; border: none; font-size: 1rem; font-family: var(--sans); }
.pdp-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-row { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--surface-alt); border-radius: var(--radius); margin-bottom: 10px; }
.trust-row .trust-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--ink-soft); }
.trust-row .trust-item .ic { color: var(--sage-dark); flex-shrink: 0; }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--border); margin-top: 20px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 18px 4px; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; color: var(--ink);
}
.accordion-trigger .chev { transition: transform .2s ease; color: var(--rose-dark); flex-shrink: 0; }
.accordion-item.open .accordion-trigger .chev { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-item.open .accordion-panel { max-height: 600px; }
.accordion-panel-inner { padding: 0 4px 20px; color: var(--ink-soft); font-size: .93rem; }
.accordion-panel-inner table { width: 100%; border-collapse: collapse; }
.accordion-panel-inner td { padding: 6px 0; border-bottom: 1px dashed var(--border); }
.accordion-panel-inner td:first-child { color: var(--ink); font-weight: 600; width: 42%; }

/* ---------- Related products ---------- */
.related { border-top: 1px solid var(--border); padding-top: 60px; margin-top: 20px; }

/* ---------- Why us / values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.value-card .ic {
  width: 52px; height: 52px; border-radius: 16px; background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.value-card h3 { font-size: 1.15rem; }
.value-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ---------- Band CTA ---------- */
.band {
  background: linear-gradient(120deg, var(--rose-dark), #6f2c3a);
  color: #fff; border-radius: var(--radius-lg); padding: 56px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.band h2 { color: #fff; margin-bottom: 8px; }
.band p { color: rgba(255,255,255,.82); margin: 0; max-width: 460px; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--surface-alt); }
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter form { display: flex; gap: 10px; margin-top: 22px; }
.newsletter input[type=email] {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--border); font-family: var(--sans); font-size: .95rem;
}
@media (max-width: 520px) { .newsletter form { flex-direction: column; } }

/* ---------- Forms (generic) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-family: var(--sans); font-size: .95rem; background: #fff; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--rose); outline-offset: 1px; }
.form-note { font-size: .78rem; color: var(--ink-faint); }
.radio-card { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 10px; cursor: pointer; }
.radio-card input { accent-color: var(--rose-dark); }
.radio-card.selected { border-color: var(--rose-dark); background: var(--rose-pale); }

/* ---------- Cart & checkout ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); padding: 0 0 14px; border-bottom: 1px solid var(--border); }
.cart-row td { padding: 20px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-row-product { display: flex; align-items: center; gap: 16px; min-width: 0; }
.cart-row-thumb { width: 76px; height: 76px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-row-product > div { min-width: 0; }
.cart-row-title { font-weight: 600; overflow-wrap: break-word; }
.cart-row-sku { font-size: .78rem; color: var(--ink-faint); }
.cart-remove { background: none; border: none; color: var(--ink-faint); cursor: pointer; font-size: .8rem; text-decoration: underline; padding: 0; }
.cart-remove:hover { color: var(--danger); }
@media (max-width: 700px) {
  .cart-table, .cart-table tbody, .cart-row { display: block; width: 100%; }
  .cart-table thead { display: none; }
  .cart-row { padding: 18px 0; border-bottom: 1px solid var(--border); }
  .cart-row td { display: block; padding: 6px 0; border-bottom: none; width: auto; }
  .cart-row td:not(:first-child) { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .cart-row td:nth-child(2)::before { content: "Precio"; color: var(--ink-faint); font-size: .78rem; }
  .cart-row td:nth-child(3)::before { content: "Cantidad"; color: var(--ink-faint); font-size: .78rem; }
  .cart-row td:nth-child(4)::before { content: "Subtotal"; color: var(--ink-faint); font-size: .78rem; }
  .cart-row td:nth-child(4) { font-weight: 600; }
}
.summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; font-size: .93rem; padding: 8px 0; color: var(--ink-soft); }
.summary-row.total { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 16px; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.shipping-method-note {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--border); font-size: .84rem; color: var(--ink-soft);
}
.shipping-method-note .ic { color: var(--sage-dark); flex-shrink: 0; margin-top: 1px; }
.shipping-method-note strong { display: block; color: var(--ink); font-size: .87rem; margin-bottom: 2px; }
.shipping-method-note span { display: block; }
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .ic { color: var(--ink-faint); margin-bottom: 18px; }

/* ---------- Confirmation ---------- */
.confirm-box { text-align: center; max-width: 520px; margin: 0 auto; padding: 60px 20px; }
.confirm-box .ic { color: var(--success); margin-bottom: 20px; }
.order-id { display: inline-block; background: var(--surface-alt); padding: 8px 18px; border-radius: 999px; font-weight: 700; letter-spacing: .04em; margin: 14px 0 26px; }

/* ---------- Legal / content pages ---------- */
.content-page { padding: 60px 0 90px; }
.content-page .container { max-width: 860px; }
.content-page h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 6px; }
.content-page .updated { color: var(--ink-faint); font-size: .82rem; margin-bottom: 40px; }
.content-page h2 { font-size: 1.3rem; margin-top: 40px; }
.content-page h3 { font-size: 1.05rem; margin-top: 24px; }
.content-page p, .content-page li { color: var(--ink-soft); font-size: .96rem; }
.content-page ul, .content-page ol { padding-left: 22px; margin-bottom: 1em; }
.content-page li { margin-bottom: 6px; }
.content-page a { color: var(--rose-dark); text-decoration: underline; }
.content-page table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.content-page th, .content-page td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); font-size: .9rem; }
.content-page th { background: var(--surface-alt); }
.todo-flag {
  background: #fdf1d6; border: 1px solid #ecd08a; color: #6b5417;
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: .85rem; margin: 18px 0;
}
.todo-flag strong { display: block; margin-bottom: 3px; }

/* ---------- FAQ ---------- */
.faq-cat { margin-bottom: 10px; }
.faq-cat h2 { font-size: 1.2rem; color: var(--rose-dark); margin-top: 46px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--surface-alt); border-radius: var(--radius); padding: 30px; margin-bottom: 16px; }
.contact-info-card .row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.contact-info-card .row:last-child { margin-bottom: 0; }
.contact-info-card .ic { color: var(--rose-dark); flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { margin: 0 0 3px; font-size: .95rem; }
.contact-info-card p { margin: 0; font-size: .88rem; color: var(--ink-soft); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 620px; margin: 0 auto; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-lg);
  display: none; gap: 18px; flex-direction: column;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.85); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #24201c; color: #d9d2c8; padding: 70px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { color: #a89f92; font-size: .88rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #a89f92; font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #443d35; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #24201c; }
.footer-bottom { border-top: 1px solid #3a352e; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: .8rem; color: #8a8175; }
.payment-icons { display: flex; gap: 10px; }
.payment-icons span {
  border: 1px solid #443d35; border-radius: 6px; padding: 5px 10px; font-size: .68rem; color: #a89f92; font-weight: 700; letter-spacing: .02em;
}

/* ---------- Chat widget ---------- */
.df-chat-bubble {
  position: fixed; right: 20px; bottom: 20px; z-index: 250;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--rose-dark); color: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.df-chat-bubble:hover { background: var(--rose); }
.cookie-banner.show ~ #df-chat-widget .df-chat-bubble { display: none; }
.df-chat-dot { position: absolute; top: 6px; right: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid #fff; display: none; }
.df-chat-dot.show { display: block; }

.df-chat-panel {
  position: fixed; right: 20px; bottom: 90px; z-index: 250; width: 350px; max-width: calc(100vw - 40px);
  height: 480px; max-height: calc(100vh - 130px); background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: none; flex-direction: column; overflow: hidden;
}
.df-chat-panel.open { display: flex; }
.df-chat-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: var(--rose-dark); color: #fff; }
.df-chat-header strong { display: block; font-family: var(--serif); font-size: 1.02rem; }
.df-chat-header span { display: block; font-size: .74rem; color: rgba(255,255,255,.8); margin-top: 2px; }
.df-chat-close { background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 4px; }
.df-chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--surface-alt); }

.df-chat-bubble-row { display: flex; flex-direction: column; max-width: 84%; }
.df-chat-bubble-row.me { align-self: flex-end; align-items: flex-end; }
.df-chat-bubble-row.bot, .df-chat-bubble-row.agent { align-self: flex-start; align-items: flex-start; }
.df-chat-bubble-text {
  font-size: .87rem; line-height: 1.45; padding: 10px 14px; border-radius: 14px; background: #fff;
  border: 1px solid var(--border); color: var(--ink);
}
.df-chat-bubble-row.me .df-chat-bubble-text { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); border-bottom-right-radius: 4px; }
.df-chat-bubble-row.bot .df-chat-bubble-text, .df-chat-bubble-row.agent .df-chat-bubble-text { border-bottom-left-radius: 4px; }
.df-chat-from-label { font-size: .68rem; color: var(--sage-dark); font-weight: 700; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .03em; }

.df-chat-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.df-chat-chip {
  font-family: var(--sans); font-size: .78rem; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--rose-dark); color: var(--rose-dark); background: #fff; cursor: pointer;
}
.df-chat-chip:hover { background: var(--rose-pale); }

.df-chat-contact-form { display: flex; flex-direction: column; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin-top: 4px; }
.df-chat-contact-form input { padding: 9px 12px; border-radius: 8px; border: 1px solid var(--border); font-family: var(--sans); font-size: .85rem; }

.df-chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.df-chat-input-row input { flex: 1; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border); font-family: var(--sans); font-size: .87rem; }
.df-chat-input-row button {
  width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--rose-dark); color: #fff; cursor: pointer;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.df-chat-input-row button::after { content: "➤"; font-size: .9rem; }

@media (max-width: 480px) {
  .df-chat-panel { right: 12px; left: 12px; width: auto; bottom: 84px; }
  .df-chat-bubble { right: 16px; bottom: 16px; }
}

/* ---------- Misc ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
