/* =====================================================================
   Public website styles.

   The palette is derived from Dashboard > Theme Settings. The base
   template injects six author-controlled colours as --wb-* custom
   properties; everything below is expressed in terms of those, with two
   intermediate shades mixed in CSS so the dashboard stays a six-colour
   decision rather than an eight-colour one.
   ===================================================================== */
:root {
  --green:       var(--wb-primary);
  --green-dark:  var(--wb-secondary);
  --gold:        var(--wb-accent);
  --gold-light:  color-mix(in srgb, var(--gold) 65%, #ffffff);
  --cream:       var(--wb-bg);
  --cream-dark:  color-mix(in srgb, var(--cream) 88%, var(--gold));
  --ink:         var(--wb-text);
  --whatsapp:    #25D366;
  --radius:      var(--wb-radius, 16px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--wb-font-body), 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--wb-font-heading), 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
[x-cloak] { display: none !important; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.center { text-align: center; }
.icon-svg { width: 18px; height: 18px; flex-shrink: 0; vertical-align: -3px; }

.eyebrow {
  display: inline-block;
  letter-spacing: 2px; font-size: .75rem; font-weight: 600;
  color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3);
  background: var(--green);
  padding: 6px 18px; border-radius: 20px; margin-bottom: 14px;
}
.eyebrow-gold { background: var(--gold); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--green); font-weight: 700; margin-bottom: 10px; }
.section-sub { color: #5a4c3a; font-size: 1rem; max-width: 560px; margin: 0 auto 40px; line-height: 1.6; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 30px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: .25s ease; white-space: nowrap;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.3); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: var(--cream); border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ---------- PAGE LOADER ---------- */
#page-loader {
  position: fixed; inset: 0; background: var(--cream); z-index: 2000;
  display: flex; align-items: center; justify-content: center; transition: opacity .3s ease;
}
.loader-spinner {
  width: 42px; height: 42px; border: 4px solid var(--gold);
  border-top-color: var(--green); border-radius: 50%;
  animation: loader-spin .8s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

/* ---------- HEADER ---------- */
header {
  background: var(--green); color: var(--cream);
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.top-strip { background: var(--green-dark); font-size: .8rem; padding: 6px 0; }
.top-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-strip a { display: flex; align-items: center; gap: 6px; color: var(--gold-light); }
.top-strip svg { width: 15px; height: 15px; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 64px; width: auto; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(0,0,0,.35)); }
.logo-wordmark { font-family: var(--wb-font-heading), 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--cream); line-height: 1; }
.logo-wordmark span { color: var(--gold); }
.logo-wordmark small { display: block; font-family: var(--wb-font-body), sans-serif; font-size: .6rem; letter-spacing: 2px; font-weight: 500; color: var(--gold-light); }
.footer-logo-img { height: 60px; }
nav.menu { display: flex; gap: 28px; align-items: center; }
nav.menu a { font-size: .9rem; font-weight: 500; color: var(--cream); padding: 6px 0; transition: .2s; }
nav.menu a:hover { color: var(--gold-light); }
.navbar .actions { display: flex; align-items: center; gap: 14px; }
.navbar .actions .phone { display: flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--gold-light); font-weight: 600; }
.navbar .actions .phone svg { width: 15px; height: 15px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--cream); }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar { position: relative; z-index: 480; font-size: .82rem; }
.announcement-bar .container { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 8px 24px; flex-wrap: wrap; }
.announcement-bar .dismiss { background: none; border: none; color: inherit; font-size: 1rem; cursor: pointer; line-height: 1; opacity: .7; }
.announcement-bar .dismiss:hover { opacity: 1; }

/* ---------- MESSAGES ---------- */
.site-messages { padding: 14px 0 0; }
.site-message { border-radius: 10px; padding: 12px 16px; margin-bottom: 10px; font-size: .9rem; border: 1px solid var(--gold); background: var(--cream-dark); color: var(--ink); }
.site-message.error { border-color: #c0392b; background: #fdecea; color: #922b21; }
.site-message.success { border-color: var(--green); background: #e8f4ef; color: var(--green-dark); }

/* ---------- HERO ---------- */
.hero { background: linear-gradient(120deg, var(--cream) 0%, var(--cream-dark) 100%); padding: 70px 0 60px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block; background: var(--green); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3);
  padding: 6px 22px; border-radius: 20px; font-size: .8rem; letter-spacing: 2px; font-weight: 600; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--green); line-height: 1.05; font-weight: 800; }
.hero h1 span { color: var(--gold); }
.hero .script { font-family: var(--wb-font-heading), 'Playfair Display', serif; font-style: italic; color: #7a5c22; font-size: 1.15rem; margin: 14px 0 18px; }
.hero p.desc { font-size: 1.05rem; color: #4a3d2c; font-weight: 500; margin-bottom: 26px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-gallery { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 460px; }
.hero-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: 0 20px 50px rgba(15,106,74,.25); border: 3px solid var(--cream); }
.hero-gallery .g-main { grid-row: 1 / 3; }
.hero-gallery .g-top { grid-column: 2; grid-row: 1; }
.hero-gallery .g-bottom { grid-column: 2; grid-row: 2; }
.hero-gallery.single { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.hero-gallery.single .g-main { grid-row: 1; }
.floating-tag {
  position: absolute; top: -18px; right: -18px;
  background: var(--green); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3);
  border: 2px solid var(--gold); border-radius: 50%; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: .72rem; font-weight: 700; line-height: 1.2;
  box-shadow: 0 8px 20px rgba(0,0,0,.25); z-index: 2; padding: 8px;
}

/* ---------- FEATURE + DELIVERY STRIPS ---------- */
.feature-strip { background: var(--green); color: var(--cream); padding: 22px 0; }
.feature-strip .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600; flex: 1; min-width: 170px; }
.feature-item .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.delivery-strip { background: var(--cream); border-top: 3px solid var(--gold); padding: 16px 0; }
.delivery-strip .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; text-align: center; }
.delivery-strip .main { color: var(--green); font-weight: 700; font-size: 1rem; }
.delivery-strip .sub { font-size: .85rem; color: #5a4c3a; }

/* ---------- CATEGORY CIRCLES ---------- */
.categories { padding: 60px 0 40px; background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.cat-item { text-align: center; cursor: pointer; }
.cat-circle {
  width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--gold);
  margin: 0 auto 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark); font-size: 2.2rem; transition: .3s;
}
.cat-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-item:hover .cat-circle { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(212,175,55,.35); }
.cat-item span { font-size: .82rem; font-weight: 700; color: var(--green-dark); letter-spacing: .5px; }

/* ---------- CATEGORY TABS ---------- */
.cat-tabs-section { padding: 20px 0 70px; background: var(--cream); }
.cat-tab-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.cat-tab-btn {
  padding: 10px 20px; border-radius: 24px; border: 2px solid var(--green);
  background: transparent; color: var(--green-dark);
  font-family: var(--wb-font-body), sans-serif; font-size: .85rem; font-weight: 600; cursor: pointer; transition: .25s;
}
.cat-tab-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cat-tab-btn.active { background: var(--green); color: var(--cream); border-color: var(--green); }
.cat-panel {
  display: none; background: var(--cream-dark); border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  padding: 36px 36px 40px; box-shadow: 0 15px 40px rgba(15,106,74,.12);
}
.cat-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cat-panel-header { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.cat-panel-header .tag-eyebrow {
  display: inline-block; background: var(--gold); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3);
  padding: 5px 16px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px;
}
.cat-panel-header h3 { color: var(--green); font-size: 1.7rem; margin-bottom: 10px; }
.cat-panel-header p { color: #5a4c3a; line-height: 1.65; font-size: .95rem; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }
.product-card {
  background: var(--cream); border-radius: 14px; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  display: flex; flex-direction: column; transition: .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(15,106,74,.18); }
.product-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.product-card .pc-body { padding: 14px 16px 18px; }
.product-card h4 { color: var(--green-dark); font-size: 1rem; margin-bottom: 5px; font-family: var(--wb-font-body), sans-serif; font-weight: 700; }
.product-card p { color: #6b5c46; font-size: .82rem; line-height: 1.5; }
.product-card .price { display: block; margin-top: 8px; font-weight: 700; color: var(--green); font-size: .95rem; }
.cat-panel-cta { text-align: center; }

/* ---------- INFO STRIP ---------- */
.info-strip { background: var(--green-dark); color: var(--cream); padding: 36px 0; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.info-item h4 { color: var(--gold-light); font-size: .9rem; letter-spacing: .5px; margin-bottom: 4px; font-family: var(--wb-font-body), sans-serif; font-weight: 700; }
.info-item p { font-size: .85rem; color: #e6e2d3; line-height: 1.4; }

/* ---------- ABOUT ---------- */
.about { padding: 80px 0; background: var(--cream); }
.about .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: 16px; }
.about-stat {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--gold); color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.3);
  padding: 18px 24px; border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,.2); text-align: center;
}
.about-stat .num { font-family: var(--wb-font-heading), 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; }
.about-stat .lbl { font-size: .72rem; font-weight: 600; letter-spacing: 1px; }
.about-text p { color: #5a4c3a; line-height: 1.75; margin-bottom: 16px; font-size: 1rem; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.about-points li { display: flex; gap: 10px; align-items: center; font-size: .9rem; font-weight: 600; color: var(--green-dark); }
.about-points li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 80px 0; background: var(--green); color: var(--cream); position: relative; }
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,.08), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(212,175,55,.08), transparent 40%);
}
.testimonials .section-title { color: var(--cream); }
.testimonials .section-sub { color: #dce8e0; margin: 0 auto 44px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.test-card {
  background: rgba(255,248,232,.06);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  border-radius: 16px; padding: 30px 26px; backdrop-filter: blur(2px); text-align: left;
}
.test-card .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.test-card p.quote { font-size: .95rem; line-height: 1.7; color: #f2ecd9; margin-bottom: 20px; font-style: italic; }
.test-person { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-family: var(--wb-font-heading), 'Playfair Display', serif; overflow: hidden;
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-person h5 { font-size: .9rem; color: var(--gold-light); }
.test-person span { font-size: .75rem; color: #cfd9d1; }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-group-title { max-width: 780px; margin: 26px auto 12px; color: var(--green-dark); font-size: 1rem; font-weight: 700; }
.faq-item { border: 1px solid var(--gold); border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: var(--cream-dark); }
.faq-q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--green-dark); font-size: .98rem; gap: 14px; }
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: .3s; font-size: 1rem; }
.faq-item.active .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: #5a4c3a; font-size: .9rem; line-height: 1.6; }
.faq-item.active .faq-a { max-height: 400px; }

/* ---------- NEWSLETTER ---------- */
.newsletter { padding: 70px 0; background: var(--cream-dark); text-align: center; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter input[type="email"] { flex: 1; min-width: 220px; padding: 13px 16px; border-radius: 30px; border: 1.5px solid #d8cba0; font-family: inherit; font-size: .9rem; }
.newsletter .result { margin-top: 12px; font-size: .85rem; }
.newsletter .result.ok { color: var(--green); }
.newsletter .result.err { color: #c0392b; }

/* ---------- CONTACT ---------- */
.contact { padding: 80px 0; background: var(--green-dark); color: var(--cream); }
.contact .section-title { color: var(--cream); }
.contact .section-sub { color: #dce8e0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-form { background: var(--cream); border-radius: 16px; padding: 36px; color: var(--ink); box-shadow: 0 15px 40px rgba(0,0,0,.25); }
.contact-form h3 { color: var(--green); margin-bottom: 6px; font-size: 1.4rem; }
.contact-form p.note { font-size: .82rem; color: #7a6a52; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1.5px solid #d8cba0;
  font-family: inherit; font-size: .9rem; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--green); border-color: var(--green); }
.field textarea { resize: vertical; min-height: 100px; }
.store-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.store-card { background: rgba(255,248,232,.07); border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent); border-radius: 14px; padding: 20px 22px; display: flex; gap: 16px; }
.store-card .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.store-card h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 4px; }
.store-card p { font-size: .85rem; color: #e6e2d3; line-height: 1.5; }
.map-wrap { border-radius: 14px; overflow: hidden; border: 2px solid var(--gold); }
.map-wrap iframe { width: 100%; height: 230px; border: 0; display: block; }
.map-label { font-size: .78rem; color: var(--gold-light); font-weight: 600; margin: 14px 0 6px; letter-spacing: .5px; }

/* ---------- FOOTER ---------- */
footer { background: color-mix(in srgb, var(--green-dark) 80%, #000); color: #d9d2bd; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid color-mix(in srgb, var(--gold) 25%, transparent); }
.footer-col h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 18px; font-family: var(--wb-font-heading), 'Playfair Display', serif; }
.footer-col p, .footer-col li { font-size: .85rem; line-height: 1.8; color: #c9c2ac; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .brand { font-family: var(--wb-font-heading), 'Playfair Display', serif; color: var(--gold-light); font-size: 1.3rem; font-weight: 700; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold-light); transition: .2s; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--gold); color: var(--green-dark); }
.footer-addr { margin-bottom: 16px; }
.footer-addr strong { color: var(--cream); display: block; margin-bottom: 2px; font-size: .85rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: #a79f86; }

/* ---------- STICKY ELEMENTS ---------- */
.sticky-whatsapp {
  position: fixed; bottom: 24px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.3); animation: pulse 2.2s infinite;
}
.sticky-whatsapp.pos-right { right: 24px; }
.sticky-whatsapp.pos-left { left: 24px; }
.sticky-whatsapp svg { width: 30px; height: 30px; }
.sticky-call {
  position: fixed; bottom: 24px; left: 24px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.sticky-call svg { width: 26px; height: 26px; }
.sticky-brochure {
  position: fixed; right: 0; top: 52%; transform: translateY(-50%); z-index: 600;
  background: var(--green); color: var(--gold-light);
  padding: 16px 12px; border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: .82rem; font-weight: 700; letter-spacing: 1px; cursor: pointer;
  box-shadow: -4px 4px 14px rgba(0,0,0,.25);
  border: 1px solid var(--gold); border-right: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- MODAL / POPUP ---------- */
.overlay { position: fixed; inset: 0; background: rgba(10,30,20,.6); display: none; align-items: center; justify-content: center; z-index: 900; padding: 20px; }
.overlay.show { display: flex; }
.modal-card { background: var(--cream); border-radius: 18px; max-width: 440px; width: 100%; padding: 36px 32px; position: relative; box-shadow: 0 25px 60px rgba(0,0,0,.4); border: 2px solid var(--gold); max-height: 92vh; overflow-y: auto; }
.modal-card .close-btn { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--green-dark); line-height: 1; }
.modal-card .ribbon { display: inline-block; background: var(--gold); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3); padding: 5px 16px; border-radius: 20px; font-size: .75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 14px; }
.modal-card h3 { color: var(--green); font-size: 1.5rem; margin-bottom: 8px; }
.modal-card p.sub { font-size: .88rem; color: #5a4c3a; margin-bottom: 20px; line-height: 1.5; }
.modal-card .discount-num { font-family: var(--wb-font-heading), 'Playfair Display', serif; color: var(--gold); font-weight: 800; }
.modal-error { color: #c0392b; font-size: .82rem; margin-top: 10px; }
.success-msg { text-align: center; padding: 20px 0; color: var(--green-dark); }
.success-msg .tick { width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 16px; }
.coupon-code { display: inline-block; margin-top: 8px; padding: 8px 18px; border: 2px dashed var(--gold); border-radius: 10px; font-weight: 800; letter-spacing: 2px; color: var(--green-dark); }

/* ---------- COOKIE CONSENT ---------- */
.cookie-consent-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-dark); color: var(--cream); z-index: 700; box-shadow: 0 -4px 20px rgba(0,0,0,.25); }
.cookie-consent-banner .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; }
.cookie-consent-banner p { font-size: .82rem; margin: 0; }
.cookie-consent-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-consent-banner .btn { padding: 9px 20px; font-size: .82rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  nav.menu { display: none; }
  nav.menu.mobile-open { display: flex; flex-direction: column; width: 100%; gap: 10px; padding: 12px 0; order: 5; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .about .container { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip .container { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-panel { padding: 26px 20px 30px; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .top-strip .container { justify-content: center; text-align: center; }
  .navbar { flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .sticky-brochure { font-size: .72rem; padding: 12px 8px; }
  .about-stat { left: 0; bottom: -16px; }
}
