/* ============================================================
   TIRAMISU ƠI — VinHomes Grand Park Q9
   Design tokens
   ============================================================ */
:root {
  --cream: #F4E8D8;        /* mascarpone cream background */
  --cream-soft: #FBF5EA;   /* card background */
  --cream-line: #E6D3B4;   /* hairline borders */
  --espresso: #3B2015;     /* deep espresso — dark sections */
  --espresso-2: #2A160E;   /* darker still, footer */
  --cocoa: #8A5636;        /* mid cocoa — primary accent */
  --cocoa-dark: #6A3E24;   /* hover / pressed */
  --dust: #2A1710;         /* near-black cocoa powder — body text */
  --gold: #C9963C;         /* gold dusting accent */
  --gold-soft: #E7C989;
  --success: #4C7A3D;
  --success-bg: #E7F0DF;
  --error: #B0402A;
  --error-bg: #FBE8E2;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 10px 30px rgba(42, 23, 16, 0.10);
  --shadow-pop: 0 20px 60px rgba(42, 23, 16, 0.28);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dust);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.75rem; }
section { padding: 5.5rem 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--espresso); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cocoa); font-weight: 600; margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: .75rem; }
.section-head p { color: #5C4636; font-size: 1.05rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* cocoa-dust texture divider */
.dust-divider {
  height: 34px;
  background-image: radial-gradient(var(--cocoa) 1.4px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .18;
}

/* ============================================================
   NAV
   ============================================================ */
header.site-nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(244, 232, 216, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-line);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--espresso); }
.brand-name span { color: var(--cocoa); }
nav.main-links { display: flex; align-items: center; gap: 2.1rem; }
nav.main-links a {
  text-decoration: none; color: var(--espresso); font-weight: 500; font-size: .97rem;
  position: relative; padding: .3rem 0;
}
nav.main-links a::after {
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s ease; transform-origin: left;
}
nav.main-links a:hover::after, nav.main-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-switch { display: flex; border: 1.5px solid var(--cream-line); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  border: none; background: transparent; padding: .4rem .7rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; color: #8A6F58; cursor: pointer; transition: all .2s ease;
}
.lang-switch button.active { background: var(--cocoa); color: var(--white); }
.cart-pill {
  display: flex; align-items: center; gap: .4rem; background: var(--espresso); color: var(--white);
  border: none; border-radius: 999px; padding: .55rem 1rem; font-weight: 600; font-size: .88rem; cursor: pointer;
  text-decoration: none;
}
.cart-pill .badge {
  background: var(--gold); color: var(--espresso); border-radius: 999px; min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; padding: 0 5px;
}
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--espresso); }

@media (max-width: 860px) {
  nav.main-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--cream-soft);
    flex-direction: column; align-items: flex-start; padding: 1.2rem 1.75rem; gap: 1rem;
    box-shadow: var(--shadow-card); border-bottom: 1px solid var(--cream-line);
  }
  nav.main-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: .97rem;
  text-decoration: none; border: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn-primary { background: var(--cocoa); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(138, 86, 54, 0.35); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline { background: transparent; color: var(--espresso); border: 2px solid var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--espresso); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 150, 60, 0.4); }
.btn-block { width: 100%; }

/* ============================================================
   HERO — photo plein-écran (Tiramisu.jpg)
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    linear-gradient(180deg, rgba(24,13,8,.62) 0%, rgba(24,13,8,.7) 100%),
    url('../img/tiramisu-hero.jpg') center/cover no-repeat;
  padding: 6rem 1.75rem;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 3; max-width: 720px; margin: 0 auto; }
.hero .eyebrow { color: var(--gold-soft); justify-content: center; }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero-copy h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 1.1rem; color: var(--white); }
.hero-copy h1 em { font-style: normal; color: var(--gold-soft); }
.hero-copy p.lead { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; justify-content: center; }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.75); }
.hero .btn-outline:hover { background: var(--white); color: var(--espresso); }
.hero-badges { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.hero-badge { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--white); font-weight: 600; }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-soft); flex-shrink: 0; }
.floating-dust { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.floating-dust span {
  position: absolute; width: 6px; height: 6px; background: var(--gold-soft); border-radius: 50%; opacity: .55;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .floating-dust span { animation: none; } }

@media (max-width: 640px) {
  .hero { min-height: 78vh; padding: 5rem 1.25rem; }
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--cream-soft); border: 1px solid var(--cream-line); border-radius: var(--radius-m);
  padding: 2rem 1.6rem; text-align: left; transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; background: var(--espresso); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.feature-card .icon-wrap svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.feature-card p { color: #5C4636; font-size: .93rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FLAVORS (home preview)
   ============================================================ */
.flavors-section { background: var(--espresso); color: var(--cream-soft); }
.flavors-section .section-head h2 { color: var(--white); }
.flavors-section .section-head p { color: #D9C4AD; }
.flavors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.flavor-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-l);
  padding: 2.2rem; display: flex; gap: 1.5rem; align-items: center;
}
.flavor-card .cup { width: 96px; flex-shrink: 0; }
.flavor-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .4rem; }
.flavor-card p { color: #D9C4AD; font-size: .92rem; margin-bottom: .9rem; }
.flavor-price { color: var(--gold-soft); font-weight: 700; margin-bottom: 1rem; display: block; }
@media (max-width: 760px) { .flavors-grid { grid-template-columns: 1fr; } .flavor-card { flex-direction: column; text-align: center; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; counter-reset: step; }
.step-card { position: relative; padding-top: 2.6rem; }
.step-card .num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold);
  opacity: .85; line-height: 1; margin-bottom: .6rem; display: block;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step-card p { color: #5C4636; font-size: .92rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DELIVERY BANNER
   ============================================================ */
.delivery-banner {
  background: var(--gold); color: var(--espresso); border-radius: var(--radius-m);
  padding: 2rem 2.2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  justify-content: space-between;
}
.delivery-banner .msg { display: flex; align-items: center; gap: 1rem; max-width: 640px; }
.delivery-banner svg { width: 42px; height: 42px; flex-shrink: 0; }
.delivery-banner h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.delivery-banner p { font-size: .92rem; }

/* ============================================================
   STATUS ALERT (post-submit)
   ============================================================ */
.alert-message {
  display: none; max-width: var(--container); margin: 1.2rem auto 0; padding: 1rem 1.4rem;
  border-radius: var(--radius-s); font-weight: 600; text-align: center;
}
.alert-message.success { display: block; background: var(--success-bg); color: var(--success); border: 1px solid var(--success); }
.alert-message.error { display: block; background: var(--error-bg); color: var(--error); border: 1px solid var(--error); }

/* ============================================================
   ORDER PAGE — configurator
   ============================================================ */
.order-hero { padding: 3.2rem 0 1rem; text-align: center; }
.order-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .6rem; }
.order-hero p { color: #5C4636; max-width: 560px; margin: 0 auto; }

.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.2rem; align-items: start; }
.products-col { display: flex; flex-direction: column; gap: 1.8rem; }

.product-card {
  background: var(--cream-soft); border: 1px solid var(--cream-line); border-radius: var(--radius-l);
  padding: 2rem; display: grid; grid-template-columns: 120px 1fr; gap: 1.6rem;
}
.product-card .cup { width: 100%; }
.product-card h3 { font-size: 1.4rem; margin-bottom: .2rem; }
.product-card .desc { color: #5C4636; font-size: .9rem; margin-bottom: 1.2rem; }

.field-row { margin-bottom: 1.1rem; }
.field-row > label.group-label {
  display: block; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--cocoa); margin-bottom: .6rem;
}
.pill-options { display: flex; gap: .6rem; flex-wrap: wrap; }
.pill-choice {
  border: 2px solid var(--cream-line); background: var(--white); border-radius: 999px; padding: .55rem 1.1rem;
  font-size: .88rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: .4rem;
  transition: all .18s ease;
}
.pill-choice input { display: none; }
.pill-choice .p-price { color: var(--cocoa); font-weight: 700; }
.pill-choice.selected { border-color: var(--cocoa); background: var(--cocoa); color: var(--white); }
.pill-choice.selected .p-price { color: var(--gold-soft); }

.checkbox-list { display: flex; flex-direction: column; gap: .55rem; }
.checkbox-row { display: flex; align-items: center; gap: .6rem; font-size: .92rem; cursor: pointer; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--cocoa); cursor: pointer; }
.checkbox-row .opt-price { margin-left: auto; color: var(--cocoa); font-weight: 600; font-size: .85rem; }

.qty-stepper { display: inline-flex; align-items: center; border: 2px solid var(--cream-line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 36px; height: 36px; border: none; background: var(--white); font-size: 1.1rem; cursor: pointer; color: var(--cocoa); }
.qty-stepper button:hover { background: var(--cream); }
.qty-stepper span { width: 34px; text-align: center; font-weight: 700; }

.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; gap: 1rem; flex-wrap: wrap; }
.line-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--espresso); font-weight: 700; }

@media (max-width: 720px) { .product-card { grid-template-columns: 1fr; } .product-card .cup { width: 90px; margin: 0 auto; } }

/* CART SIDEBAR */
.cart-card {
  background: var(--espresso); color: var(--cream-soft); border-radius: var(--radius-l);
  padding: 1.8rem; position: sticky; top: 96px;
}
.cart-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1rem; }
.cart-empty { color: #C9AF95; font-size: .9rem; padding: 1rem 0; text-align: center; }
.cart-items { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1rem; max-height: 320px; overflow-y: auto; }
.cart-item { display: flex; justify-content: space-between; gap: .8rem; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: .8rem; }
.cart-item .ci-name { font-weight: 600; font-size: .92rem; }
.cart-item .ci-opts { font-size: .78rem; color: #C9AF95; margin-top: .15rem; }
.cart-item .ci-price { font-weight: 700; font-size: .92rem; white-space: nowrap; }
.cart-item .ci-remove { background: none; border: none; color: #E08769; cursor: pointer; font-size: .78rem; margin-top: .3rem; padding: 0; }
.cart-totals { border-top: 1px dashed rgba(255,255,255,.25); padding-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .92rem; }
.cart-totals .row { display: flex; justify-content: space-between; }
.cart-totals .row.total { font-size: 1.15rem; font-weight: 700; color: var(--gold-soft); padding-top: .4rem; }
.free-delivery-note { font-size: .78rem; color: var(--gold-soft); background: rgba(201,150,60,.15); padding: .55rem .7rem; border-radius: var(--radius-s); margin-top: .8rem; }
.cart-card .btn { margin-top: 1.2rem; }

@media (max-width: 980px) {
  .order-layout { grid-template-columns: 1fr; }
  .cart-card { position: static; }
}

/* ============================================================
   MODAL (order details popup)
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(42,23,16,.55); z-index: 1000;
  align-items: flex-start; justify-content: center; padding: 3vh 1rem; overflow-y: auto;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--cream-soft); border-radius: var(--radius-l); max-width: 560px; width: 100%;
  padding: 2.2rem; box-shadow: var(--shadow-pop); animation: pop .25s ease;
}
@keyframes pop { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.4rem; }
.modal-head h2 { font-size: 1.5rem; }
.modal-head p { color: #5C4636; font-size: .88rem; margin-top: .3rem; }
.modal-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--cocoa); line-height: 1; }

/* ============================================================
   FORMS (shared: modal + contact page)
   ============================================================ */
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .92rem; color: var(--espresso); }
.form-group .req { color: var(--error); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .78rem .9rem; border: 2px solid var(--cream-line); border-radius: var(--radius-s);
  font-size: .96rem; font-family: inherit; background: var(--white); transition: border-color .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cocoa); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }
.error-message { color: var(--error); font-size: .8rem; margin-top: .3rem; display: none; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: var(--error); }
.form-group.error .error-message { display: block; }
.form-hint { font-size: .8rem; color: #8A6F58; margin-top: .3rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section .contact-form {
  max-width: 620px; margin: 0 auto; background: var(--cream-soft); border: 1px solid var(--cream-line);
  padding: 2.6rem; border-radius: var(--radius-l); box-shadow: var(--shadow-card);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer { background: var(--espresso-2); color: #D9C4AD; padding: 3.5rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.4rem; }
.footer-brand-row { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name span { color: var(--gold-soft); }
.footer-logo { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.footer-brand p { margin-top: 0; font-size: .9rem; max-width: 320px; color: #B99C7E; }
footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
footer ul a { text-decoration: none; color: #D9C4AD; font-size: .9rem; }
footer ul a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: #B99C7E;
}
.footer-bottom a { color: #D9C4AD; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-soft); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COOKIE CONSENT (adapted from if.fr)
   ============================================================ */
#cookieConsent {
  position: fixed; bottom: 0; left: 0; right: 0; background: rgba(42,23,16,.97); backdrop-filter: blur(10px);
  z-index: 10000; padding: 1.8rem; box-shadow: 0 -5px 30px rgba(0,0,0,.3);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookieConsent.show { transform: translateY(0); }
.cookie-container { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; color: #fff; }
.cookie-text h3 { font-size: 1.25rem; margin-bottom: .5rem; color: #fff; }
.cookie-text p { font-size: .9rem; line-height: 1.55; margin-bottom: .4rem; color: rgba(255,255,255,.85); }
.cookie-text a { color: var(--gold-soft); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-btn { padding: .8rem 1.5rem; border: none; border-radius: var(--radius-s); font-size: .92rem; font-weight: 600; cursor: pointer; transition: all .2s ease; white-space: nowrap; }
.cookie-btn-accept { background: var(--gold); color: var(--espresso); }
.cookie-btn-accept:hover { transform: translateY(-2px); }
.cookie-btn-refuse { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.cookie-btn-refuse:hover { background: rgba(255,255,255,.1); }
.cookie-btn-customize { background: transparent; color: #fff; border: 2px solid var(--gold); }
#cookieModal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 10001; padding: 2rem; overflow-y: auto; }
#cookieModal.show { display: flex; align-items: center; justify-content: center; }
.modal-content { background: var(--cream-soft); border-radius: var(--radius-l); max-width: 640px; width: 100%; padding: 2.2rem; box-shadow: var(--shadow-pop); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; padding-bottom: 1rem; border-bottom: 2px solid var(--cream-line); }
.modal-header h2 { font-size: 1.5rem; }
.cookie-category { background: var(--cream); border-radius: var(--radius-m); padding: 1.3rem; margin-bottom: 1rem; border: 2px solid var(--cream-line); }
.category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.category-header h3 { font-size: 1.05rem; }
.category-description { font-size: .88rem; color: #5C4636; line-height: 1.5; }
.required-badge { display: inline-block; background: var(--success); color: #fff; padding: .2rem .6rem; border-radius: 999px; font-size: .7rem; font-weight: 700; margin-left: .5rem; }
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #D8C4A8; transition: .3s; border-radius: 26px; cursor: pointer; }
.toggle-slider:before { position: absolute; content: ''; height: 18px; width: 18px; left: 4px; bottom: 4px; background: #fff; transition: .3s; border-radius: 50%; }
input:checked + .toggle-slider { background: var(--cocoa); }
input:checked + .toggle-slider:before { transform: translateX(22px); }
input:disabled + .toggle-slider { opacity: .5; }
.modal-footer { display: flex; gap: 1rem; margin-top: 1.6rem; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 640px) {
  .cookie-container { flex-direction: column; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* utility */
.hidden { display: none !important; }
