/* ==========================================================================
   AGP Crackers — simple catalog theme
   ========================================================================== */

:root {
  --maroon: #7a1f2b;
  --maroon-dark: #591620;
  --gold: #c8962c;
  --gold-light: #e8b84b;
  --cream: #fbf6ec;
  --ink: #241a15;
  --muted: #6b5f56;
  --line: #e7dcc8;
  --white: #fff;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(89, 22, 32, 0.08);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--maroon); color: #fff;
  padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* -------------------------------------------------------------- header */
.topbar { background: var(--maroon-dark); color: #f1e4d2; font-size: .82rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 20px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 18px; }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--maroon); flex: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--line); }
.brand small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; }

.nav-links { display: flex; gap: 26px; flex: 1; justify-content: center; }
.nav-link { font-weight: 600; padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--maroon); border-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px; background: var(--maroon);
  color: #fff; padding: 9px 16px; border-radius: 100px; font-weight: 700; font-size: .88rem;
}
.btn-call:hover { background: var(--maroon-dark); }
.burger { display: none; align-items: center; justify-content: center; background: none; border: none; padding: 4px; cursor: pointer; color: var(--maroon); }

.mobile-panel { display: none; flex-direction: column; gap: 2px; background: var(--white); border-bottom: 1px solid var(--line); padding: 8px 20px 16px; }
.mobile-panel a { display: block; padding: 10px 0; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-panel.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .btn-call span.txt { display: none; }
}

/* -------------------------------------------------------------- hero */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.hero {
  position: relative; color: #fff; overflow: hidden; background-color: #060a1e;
  width: 100%; height: clamp(200px, 50vw, 760px);
}
.hero-banner-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-cta-bar { background: var(--white); border-bottom: 1px solid var(--line); padding: 18px 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 560px) {
  .hero { height: 50vw; }
  .hero-actions .btn { flex: 1 1 auto; }
}

.notice-strip { background: #fff4d6; border-top: 1px solid #f0dca3; border-bottom: 1px solid #f0dca3; }
.notice-strip .wrap { padding: 10px 20px; font-size: .86rem; color: #6b4f16; text-align: center; }

/* -------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px; font-weight: 700; font-size: .92rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--maroon-dark); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-maroon { background: var(--maroon); color: #fff; }
.btn-maroon:hover { background: var(--maroon-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }

/* -------------------------------------------------------------- sections */
.section { padding: 56px 0; }
.section-tight { padding: 32px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }

.bg-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* -------------------------------------------------------------- category grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(30,10,10,.82) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; color: #fff;
}
.cat-card .overlay b { font-size: 1.05rem; }
.cat-card .overlay span { font-size: .78rem; opacity: .85; }

/* -------------------------------------------------------------- product grid */
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .p-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .p-grid { grid-template-columns: 1fr; } }

.p-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.p-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(89,22,32,.14); }
.p-media { position: relative; aspect-ratio: 1/1; background: var(--cream); overflow: hidden; min-height: 0; }
.p-media img { width: 100%; height: 100%; object-fit: contain; }
.badge {
  position: absolute; top: 10px; left: 10px; background: var(--maroon); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 4px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em;
}
.badge-gold { background: var(--gold); color: var(--maroon-dark); }
.p-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.p-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); font-weight: 700; }
.p-name { font-size: 1.22rem; font-weight: 800; line-height: 1.3; }
.p-name a:hover { color: var(--maroon); }
.stars { color: var(--gold); font-size: .82rem; }
.stars .off { color: #e2d7c3; }
.rating-line { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.p-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.p-price .now { font-weight: 800; font-size: 1.12rem; color: var(--maroon); }
.p-price .was { font-size: .82rem; color: var(--muted); text-decoration: line-through; }
.p-short { font-size: .85rem; color: var(--muted); }
.p-foot { margin-top: 8px; }

/* -------------------------------------------------------------- filters */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  padding: 8px 16px; border-radius: 100px; border: 1px solid var(--line); background: var(--white);
  font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--ink);
}
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--maroon); border-color: var(--maroon); color: #fff; }

/* -------------------------------------------------------------- testimonials */
.t-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .t-grid { grid-template-columns: 1fr; } }
.t-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.t-card p { font-size: .9rem; }
.t-name { font-weight: 700; font-size: .88rem; }
.t-role { font-size: .76rem; color: var(--muted); }

/* -------------------------------------------------------------- highlights (icon strip) */
.hi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .hi-grid { grid-template-columns: repeat(2, 1fr); } }
.hi-card { text-align: center; padding: 22px 14px; }
.hi-card .ic { display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--maroon); }
.hi-card .ic svg { width: 30px; height: 30px; }
.hi-card h4 { font-size: .95rem; }
.hi-card p { font-size: .82rem; color: var(--muted); margin: 0; }

/* -------------------------------------------------------------- page hero (inner pages) */
.page-hero { background: var(--maroon); color: #fff; padding: 40px 0; }
.page-hero .wrap { padding: 0 20px; }
.crumbs { display: flex; gap: 8px; font-size: .8rem; color: #ecd7d7; margin-bottom: 10px; }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: .6; }
.page-hero h1 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.page-hero p { color: #ecd7d7; max-width: 60ch; }

/* -------------------------------------------------------------- product detail */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: flex-start; }
@media (max-width: 820px) { .pd-grid { grid-template-columns: 1fr; } }
.pd-main-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow); background: var(--cream); }
.pd-main-img img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.pd-thumbs button { border: 2px solid var(--line); border-radius: 8px; overflow: hidden; padding: 0; width: 74px; height: 74px; cursor: pointer; background: var(--cream); }
.pd-thumbs button.active { border-color: var(--gold); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pd-info h1 { font-size: 1.5rem; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin: 10px 0; }
.pd-price-row .now { font-size: 1.7rem; font-weight: 800; color: var(--maroon); }
.pd-price-row .was { text-decoration: line-through; color: var(--muted); }
.spec-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .88rem; }
.spec-table th, .spec-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line); }
.spec-table th { width: 42%; color: var(--muted); font-weight: 600; }
.safety-mini { background: #fff4d6; border: 1px solid #f0dca3; border-radius: var(--radius); padding: 14px 16px; margin-top: 18px; font-size: .85rem; color: #6b4f16; }

/* -------------------------------------------------------------- product quick-view drawer */
body.drawer-open { overflow: hidden; }
.pd-drawer-overlay {
  position: fixed; inset: 0; background: rgba(20,10,10,.5); z-index: 200;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.pd-drawer-overlay.open { opacity: 1; visibility: visible; }
.pd-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw;
  background: var(--white); z-index: 201; box-shadow: -12px 0 32px rgba(0,0,0,.18);
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto; padding: 24px 22px 32px;
}
.pd-drawer.open { transform: translateX(0); }
.pd-drawer-close {
  position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--cream); font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--maroon);
}
.pd-drawer-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow); margin-top: 10px; background: var(--cream); }
.pd-drawer-img img { width: 100%; height: 100%; object-fit: contain; }
.pd-drawer-name { font-size: 1.35rem; margin: 6px 0 2px; }
.pd-drawer-fulllink { display: inline-block; margin-top: 16px; font-size: .86rem; font-weight: 700; color: var(--maroon); }
@media (max-width: 480px) {
  .pd-drawer { width: 100vw; max-width: 100vw; }
}

/* -------------------------------------------------------------- forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 700; color: var(--ink); }
input, select, textarea {
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 10px; }
.form-success { display: none; background: #eaf6ec; border: 1px solid #bfe3c4; color: #285c30; padding: 14px 16px; border-radius: var(--radius); font-size: .9rem; }
.form-success.show { display: block; }

/* -------------------------------------------------------------- faq */
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); flex: none; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 10px; color: var(--muted); font-size: .92rem; }

/* -------------------------------------------------------------- safety list */
.safety-list { display: grid; gap: 12px; }
.safety-list li { display: flex; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; font-size: .92rem; }
.safety-list li .n { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--maroon); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--maroon-dark); color: #f1e4d2; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding: 48px 0 30px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand p { font-size: .85rem; color: #d9c3c3; max-width: 34ch; }
.footer-note { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0 26px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .78rem; color: #cbb4b4; }
.footer-legal { display: flex; gap: 16px; }

/* -------------------------------------------------------------- misc */
.whatsapp-fab {
  position: fixed; bottom: 22px; right: 22px; background: #25D366; color: #fff; width: 54px; height: 54px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 90; font-size: 1.5rem;
}
.whatsapp-fab:hover { transform: scale(1.06); }
.grid { display: grid; }
.g-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 780px) { .g-2 { grid-template-columns: 1fr; } }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }

/* -------------------------------------------------------------- cart icon + toasts */
.icon-link { position: relative; font-size: 1.35rem; line-height: 1; display: inline-flex; padding: 4px; }
.icon-link .count {
  position: absolute; top: -6px; right: -6px; background: var(--gold); color: var(--maroon-dark);
  font-size: .68rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.toast-stack { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--maroon-dark); color: #fff; padding: 10px 18px; border-radius: 100px; font-size: .86rem;
  font-weight: 600; box-shadow: 0 8px 20px rgba(0,0,0,.25); opacity: 1; transition: opacity .3s ease, transform .3s ease;
}
.toast.leaving { opacity: 0; transform: translateY(8px); }

/* -------------------------------------------------------------- product card details */
.p-unit { margin: 0; }
.p-price .p-per-unit { font-size: .76rem; color: var(--muted); }

/* -------------------------------------------------------------- view toggle + list view */
.toolbar-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.view-toggle { display: flex; gap: 6px; flex: none; }
.view-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; padding: 8px 12px; font-size: .85rem; cursor: pointer; font-weight: 600; color: var(--ink); }
.view-btn.active { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.view-btn svg { flex: none; }

.p-grid.list-view { grid-template-columns: 1fr; }
.p-grid.list-view .p-card { flex-direction: row; }
.p-grid.list-view .p-media { width: 150px; flex: none; aspect-ratio: 1/1; }
.p-grid.list-view .p-body { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 14px; padding: 14px 16px; }
.p-grid.list-view .p-cat { flex-basis: 100%; }
.p-grid.list-view .p-name { flex: 1; min-width: 180px; }
.p-grid.list-view .p-unit { flex: none; }
.p-grid.list-view .p-price { margin-top: 0; flex: none; }
.p-grid.list-view .p-foot { margin-top: 0; flex: none; display: flex; gap: 8px; }
.p-grid.list-view .p-foot .btn { width: auto; }
@media (max-width: 620px) {
  .p-grid.list-view .p-card { flex-direction: row; align-items: stretch; }
  .p-grid.list-view .p-media { width: 96px; aspect-ratio: 1/1; }
  .p-grid.list-view .p-body { flex-direction: column; align-items: flex-start; gap: 4px; padding: 10px 12px; }
  .p-grid.list-view .p-cat { flex-basis: auto; }
  .p-grid.list-view .p-name { font-size: 1rem; min-width: 0; }
  .p-grid.list-view .p-short { display: none; }
  .p-grid.list-view .p-foot { display: flex; gap: 8px; }
  .p-grid.list-view .p-foot .btn { padding: 7px 12px; font-size: .8rem; }
}

/* -------------------------------------------------------------- cart page */
.cart-content { grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: flex-start; }
@media (max-width: 780px) { .cart-content { grid-template-columns: 1fr; } }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 70px; height: 70px; object-fit: contain; border-radius: 8px; background: var(--cream); }
.cart-line .nm { font-weight: 700; margin: 0; }
.cart-line .meta { font-size: .8rem; color: var(--muted); margin: 2px 0 0; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty-stepper button { width: 30px; height: 30px; border: none; background: var(--cream); cursor: pointer; font-size: 1rem; font-weight: 700; }
.qty-stepper input { width: 40px; height: 30px; border: none; text-align: center; padding: 0; }
.cart-line .line-total { font-weight: 800; color: var(--maroon); white-space: nowrap; }
.cart-line .remove-btn { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; color: #d32f2f; text-decoration: underline; cursor: pointer; font-size: .78rem; font-weight: 700; grid-column: 2; justify-self: start; }
.cart-line .remove-btn svg { width: 13px; height: 13px; flex: none; }
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 56px 1fr; }
  .cart-line .qty-stepper, .cart-line .line-total { grid-column: 2; }
}
.cart-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.cart-summary .row-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; padding: 12px 0; border-top: 1px solid var(--line); margin-top: 10px; }
.checkout-panel { margin-top: 18px; display: none; }
.checkout-panel.show { display: block; }
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--maroon-dark); color: #f1e4d2; box-shadow: 0 -4px 20px rgba(0,0,0,.18);
}
.cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 20px; flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: .86rem; max-width: 72ch; flex: 1 1 320px; }
.cookie-banner-inner a { text-decoration: underline; color: var(--gold-light); }
.cookie-banner-actions { display: flex; gap: 10px; flex: none; }
.cookie-banner .btn-outline { border-color: #f1e4d2; color: #f1e4d2; }

.confirm-modal {
  position: fixed; inset: 0; background: rgba(36,26,21,.6); z-index: 400; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.confirm-modal.show { display: flex; }
.confirm-card { background: var(--white); border-radius: var(--radius); padding: 30px; max-width: 440px; text-align: center; }
.confirm-card .ic { display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: #2f9e52; }
.confirm-card .ic svg { width: 44px; height: 44px; }
.empty-state .ic { display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--muted); }
.empty-state .ic svg { width: 40px; height: 40px; }
