/* ============================================================
   IL VILLAGGIO DELLE API — design system
   Palette e motivi grafici ripresi dal biglietto da visita:
   colatura di miele, esagoni, ambra su crema.
   ============================================================ */

/* ---------- 1. Token ---------- */
:root {
  /* Miele */
  --honey-50:  #fffaf0;
  --honey-100: #fdf1dc;
  --honey-200: #fbe2b6;
  --honey-300: #f7cd82;
  --honey-400: #f2b44c;
  --honey-500: #e89b26;
  --honey-600: #d0821a;
  --honey-700: #a86315;
  --honey-800: #7d4a15;

  /* Cera / legno */
  --bark-900: #2f1d0e;
  --bark-800: #3f2814;
  --bark-700: #5a3a1c;
  --bark-600: #77542f;
  --bark-400: #a98a63;

  /* Neutri caldi */
  --cream:    #fffcf6;
  --sand-50:  #faf6ef;
  --sand-100: #f2ebdf;
  --sand-200: #e6dbc9;
  --sand-300: #d3c4ab;
  --ink:      #33261a;
  --ink-soft: #6b5844;

  --white: #ffffff;
  --success: #2f7d4f;
  --success-bg: #e8f5ec;
  --danger: #b3261e;
  --danger-bg: #fdeceb;
  --info: #1d5f8a;
  --info-bg: #e7f1f8;
  --warn: #8a5b00;
  --warn-bg: #fdf3d9;

  /* Tipografia */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --step--1: clamp(0.80rem, 0.77rem + 0.15vw, 0.875rem);
  --step-0:  clamp(0.95rem, 0.92rem + 0.18vw, 1.0625rem);
  --step-1:  clamp(1.12rem, 1.05rem + 0.35vw, 1.35rem);
  --step-2:  clamp(1.38rem, 1.24rem + 0.7vw, 1.85rem);
  --step-3:  clamp(1.70rem, 1.45rem + 1.25vw, 2.55rem);
  --step-4:  clamp(2.05rem, 1.62rem + 2.15vw, 3.5rem);

  /* Spazio e forma */
  --gutter: clamp(1rem, 0.6rem + 2vw, 2rem);
  --wrap: 1240px;
  --wrap-narrow: 780px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(47, 29, 14, .06);
  --shadow-sm: 0 2px 8px rgba(47, 29, 14, .07);
  --shadow-md: 0 8px 24px rgba(47, 29, 14, .10);
  --shadow-lg: 0 20px 50px rgba(47, 29, 14, .16);
  --ring: 0 0 0 3px rgba(232, 155, 38, .35);

  --header-h: 72px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--bark-800); text-wrap: balance; }
h1 { font-size: var(--step-4); letter-spacing: -.02em; }
h2 { font-size: var(--step-3); letter-spacing: -.015em; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { text-wrap: pretty; }
a { color: var(--honey-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--honey-800); }
:focus-visible { outline: 3px solid var(--honey-500); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--honey-200); color: var(--bark-900); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--bark-800); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.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;
}

/* ---------- 3. Layout ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - (var(--gutter) * 2), var(--wrap-narrow)); margin-inline: auto; }
main { flex: 1; }
.section { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.section-tight { padding-block: clamp(1.75rem, 1rem + 3vw, 3rem); }
.stack > * + * { margin-top: var(--flow, 1rem); }
.grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.75rem); }
.cluster { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.section-head { margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.section-head p { color: var(--ink-soft); max-width: 62ch; margin-top: .5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--honey-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--honey-500); border-radius: 2px; }

/* ---------- 4. Motivi: colatura di miele ed esagoni ---------- */
.honey-drip {
  display: block; width: 100%; height: clamp(28px, 5vw, 56px);
  color: var(--honey-400);
}
.honey-drip svg { width: 100%; height: 100%; display: block; }

.hex-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath d='M28 0 56 16v32L28 64 0 48V16z' fill='none' stroke='%23e89b26' stroke-opacity='.16' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 56px 64px;
}

/* ---------- 5. Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem; border: 1px solid transparent; border-radius: var(--r-pill);
  font-weight: 650; font-size: var(--step-0); line-height: 1.2; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.btn-primary {
  background: linear-gradient(180deg, var(--honey-400), var(--honey-500));
  color: var(--bark-900); box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-primary:hover { background: linear-gradient(180deg, var(--honey-300), var(--honey-400)); color: var(--bark-900); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--bark-800); color: #fff; }
.btn-dark:hover { background: var(--bark-700); color: #fff; }

.btn-outline { background: transparent; border-color: var(--sand-300); color: var(--bark-700); }
.btn-outline:hover { border-color: var(--honey-500); background: var(--honey-50); color: var(--bark-800); }

.btn-ghost { background: transparent; color: var(--bark-700); padding-inline: .75rem; }
.btn-ghost:hover { background: var(--sand-100); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #8f1e17; color: #fff; }

.btn-sm { padding: .5rem 1rem; font-size: var(--step--1); }
.btn-lg { padding: 1rem 2rem; font-size: var(--step-1); }
.btn-block { width: 100%; }

/* ---------- 6. Badge e pillole ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .7rem; border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 700; letter-spacing: .02em;
  background: var(--sand-100); color: var(--bark-700);
}
.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-soon { background: var(--warn-bg); color: var(--warn); }
.badge-out { background: var(--sand-200); color: var(--ink-soft); }
.badge-honey { background: var(--honey-200); color: var(--bark-800); }

/* ---------- 7. Barra vantaggi ---------- */
.usp-bar {
  background: linear-gradient(90deg, var(--honey-500), var(--honey-400) 45%, var(--honey-500));
  color: var(--bark-900);
  font-size: var(--step--1); font-weight: 600;
}
.usp-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: .55rem 0; flex-wrap: wrap; text-align: center; }
.usp-bar span { display: inline-flex; align-items: center; gap: .4rem; }

.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.usp-card {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.1rem 1.25rem; background: var(--white);
  border: 1px solid var(--sand-200); border-radius: var(--r-md); box-shadow: var(--shadow-xs);
}
.usp-card .ico { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--honey-100); color: var(--honey-700); }
.usp-card strong { display: block; font-size: var(--step-0); color: var(--bark-800); }
.usp-card small { color: var(--ink-soft); line-height: 1.45; display: block; }

/* ---------- 8. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--white); box-shadow: 0 1px 0 var(--sand-200); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-main { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand img, .brand svg { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b { font-family: var(--font-display); font-size: 1.15rem; color: var(--bark-800); font-weight: 600; }
.brand-text small { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--honey-700); font-weight: 600; }

.header-search { flex: 1; max-width: 480px; margin-inline: auto; position: relative; }
.header-search input {
  width: 100%; padding: .65rem 2.75rem .65rem 1.1rem;
  border: 1px solid var(--sand-200); border-radius: var(--r-pill); background: var(--sand-50);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.header-search input:focus { outline: none; border-color: var(--honey-400); background: #fff; box-shadow: var(--ring); }
.header-search button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--honey-500); border: 0; border-radius: 50%; color: var(--bark-900);
}
.header-search button:hover { background: var(--honey-400); }

.header-actions { display: flex; align-items: center; gap: .35rem; flex: none; }
.icon-btn {
  position: relative; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: transparent; color: var(--bark-700);
  text-decoration: none; transition: background .2s;
}
.icon-btn:hover { background: var(--sand-100); color: var(--bark-800); }
.cart-count {
  position: absolute; top: 4px; right: 2px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; border-radius: var(--r-pill);
  background: var(--bark-800); color: #fff; font-size: .7rem; font-weight: 700; line-height: 1;
}
.cart-count[hidden] { display: none; }

/* Navigazione */
.site-nav { border-top: 1px solid var(--sand-100); }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; padding: 0; margin: 0; overflow-x: auto; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { position: relative; flex: none; }
.nav-list a {
  display: block; padding: .8rem .9rem; font-size: var(--step--1); font-weight: 600;
  color: var(--bark-700); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--honey-700); border-bottom-color: var(--honey-500); }
.nav-list .is-accent a { color: var(--danger); }

.submenu {
  position: absolute; top: 100%; left: 0; min-width: 230px; z-index: 70;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: .4rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease;
}
.nav-list > li:hover .submenu, .nav-list > li:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { padding: .55rem .8rem; border-radius: var(--r-sm); border-bottom: 0; }
.submenu a:hover { background: var(--honey-50); border-bottom: 0; }

.nav-toggle { display: none; }

/* ---------- 9. Hero ---------- */
.hero { position: relative; background: var(--white); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center; padding-block: clamp(2rem, 1rem + 4vw, 4.5rem);
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--honey-600); }
.hero-lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 52ch; }
.hero-cta { margin-top: 1.75rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-proof { margin-top: 2rem; display: flex; gap: 1.75rem; flex-wrap: wrap; }
.hero-proof div strong { display: block; font-family: var(--font-display); font-size: var(--step-2); color: var(--honey-600); }
.hero-proof div span { font-size: var(--step--1); color: var(--ink-soft); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: var(--r-md); padding: .85rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; max-width: 260px;
}
.hero-badge b { font-size: var(--step--1); color: var(--bark-800); }
.hero-badge small { font-size: .72rem; color: var(--ink-soft); display: block; }

/* ---------- 10. Card prodotto ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(.85rem, .5rem + 1vw, 1.5rem); }

.product-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-md);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--honey-200); }
.product-card__media { position: relative; aspect-ratio: 1; background: var(--sand-50); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__flags { position: absolute; top: .6rem; left: .6rem; display: flex; flex-direction: column; gap: .3rem; align-items: flex-start; z-index: 2; }
.product-card__body { padding: .9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.product-card__cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--honey-700); font-weight: 700; }
.product-card__title { font-family: var(--font-body); font-size: var(--step-0); font-weight: 620; line-height: 1.35; margin: 0; }
.product-card__title a { color: var(--bark-800); text-decoration: none; }
.product-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.product-card__title a:hover { color: var(--honey-700); }
.product-card__stock { font-size: .75rem; color: var(--ink-soft); }
.product-card__stock.is-low { color: var(--warn); font-weight: 600; }
.product-card__stock.is-out { color: var(--danger); }
.product-card__foot { margin-top: auto; padding-top: .6rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.price { font-family: var(--font-display); font-size: var(--step-1); font-weight: 640; color: var(--bark-800); }
.price small { font-size: .7em; font-weight: 500; color: var(--ink-soft); }
.price-old { font-size: var(--step--1); color: var(--ink-soft); text-decoration: line-through; margin-right: .4rem; font-family: var(--font-body); }
.add-btn {
  position: relative; z-index: 2; flex: none;
  width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%;
  background: var(--honey-500); color: var(--bark-900); transition: background .2s, transform .15s;
}
.add-btn:hover { background: var(--honey-400); transform: scale(1.06); }
.add-btn:disabled { background: var(--sand-200); color: var(--ink-soft); }

.rating { display: inline-flex; align-items: center; gap: .15rem; color: var(--honey-500); font-size: .8rem; }
.rating span { color: var(--ink-soft); margin-left: .3rem; font-size: .72rem; }

/* ---------- 11. Categorie ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.cat-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem;
  padding: 1.5rem 1rem; background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-md);
  text-decoration: none; transition: all .2s ease;
}
.cat-card:hover { border-color: var(--honey-400); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cat-card .thumb { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; background: var(--honey-50); display: grid; place-items: center; }
.cat-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-card b { font-size: var(--step-0); color: var(--bark-800); font-weight: 620; line-height: 1.3; }
.cat-card small { color: var(--ink-soft); font-size: .75rem; }

/* ---------- 12. Form ---------- */
.field { display: block; margin-bottom: 1.1rem; }
.field > label, .label { display: block; font-size: var(--step--1); font-weight: 650; color: var(--bark-700); margin-bottom: .35rem; }
.label .req { color: var(--danger); }
.input, .select, .textarea {
  width: 100%; padding: .7rem .9rem; background: #fff;
  border: 1px solid var(--sand-300); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--honey-500); box-shadow: var(--ring); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--danger); }
.textarea { min-height: 130px; resize: vertical; }
.select { appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235a3a1c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; }
.hint { font-size: .78rem; color: var(--ink-soft); margin-top: .3rem; }
.error { font-size: .8rem; color: var(--danger); margin-top: .3rem; font-weight: 500; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0 1rem; }

.check { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .8rem; font-size: var(--step--1); line-height: 1.5; }
.check input[type="checkbox"], .check input[type="radio"] { width: 20px; height: 20px; flex: none; margin-top: .1rem; accent-color: var(--honey-600); }
.check a { font-weight: 600; }

.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

fieldset { border: 0; padding: 0; margin: 0 0 1.5rem; }
legend { font-family: var(--font-display); font-size: var(--step-1); color: var(--bark-800); margin-bottom: .9rem; padding: 0; }

/* ---------- 13. Avvisi ---------- */
.alert { display: flex; gap: .75rem; padding: .9rem 1.1rem; border-radius: var(--r-md); border: 1px solid; margin-bottom: 1.25rem; font-size: var(--step--1); }
.alert svg { flex: none; margin-top: .15rem; }
.alert-success { background: var(--success-bg); border-color: #bfe0cb; color: #1e5c39; }
.alert-error   { background: var(--danger-bg);  border-color: #f3c6c3; color: #8f1e17; }
.alert-info    { background: var(--info-bg);    border-color: #c3ddee; color: #164a6b; }
.alert-warn    { background: var(--warn-bg);    border-color: #ecd79a; color: var(--warn); }
.alert ul { margin: .35rem 0 0; padding-left: 1.1rem; }

/* ---------- 14. Breadcrumb e paginazione ---------- */
.breadcrumb { padding: .9rem 0; font-size: var(--step--1); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; align-items: center; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--sand-300); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--honey-700); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--bark-800); font-weight: 600; }

.pagination { display: flex; justify-content: center; gap: .3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 .7rem; display: grid; place-items: center;
  border: 1px solid var(--sand-200); border-radius: var(--r-sm); background: #fff;
  color: var(--bark-700); text-decoration: none; font-size: var(--step--1); font-weight: 600;
}
.pagination a:hover { border-color: var(--honey-400); background: var(--honey-50); }
.pagination .is-current { background: var(--bark-800); border-color: var(--bark-800); color: #fff; }
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ---------- 15. Negozio: filtri + risultati ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(1.25rem, 1rem + 1.5vw, 2.5rem); align-items: start; }
.shop-aside { position: sticky; top: calc(var(--header-h) + 1rem); }
.filter-box { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-md); padding: 1.15rem; margin-bottom: 1rem; }
.filter-box h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; margin-bottom: .75rem; color: var(--bark-800); }
.filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .1rem; }
.filter-list a { display: flex; justify-content: space-between; gap: .5rem; padding: .45rem .6rem; border-radius: var(--r-sm); font-size: var(--step--1); color: var(--bark-700); text-decoration: none; }
.filter-list a:hover { background: var(--honey-50); }
.filter-list a.is-active { background: var(--honey-100); color: var(--bark-800); font-weight: 650; }
.filter-list span { color: var(--ink-soft); font-size: .78rem; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--sand-200); }
.shop-toolbar .count { font-size: var(--step--1); color: var(--ink-soft); }
.shop-toolbar .select { width: auto; min-width: 200px; }

.empty-state { text-align: center; padding: clamp(2.5rem, 2rem + 3vw, 5rem) 1rem; }
.empty-state svg { margin: 0 auto 1.25rem; color: var(--sand-300); }
.empty-state h3 { margin-bottom: .5rem; }
.empty-state p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 1.5rem; }

/* ---------- 16. Scheda prodotto ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: start; }
.gallery-main { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 5%; }
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 72px; height: 72px; padding: 4px; background: #fff;
  border: 1px solid var(--sand-200); border-radius: var(--r-sm); overflow: hidden;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs button[aria-current="true"] { border-color: var(--honey-500); box-shadow: var(--ring); }

.pdp-info h1 { font-size: var(--step-3); margin-bottom: .6rem; }
.pdp-meta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; font-size: var(--step--1); color: var(--ink-soft); margin-bottom: 1.25rem; }
.pdp-price { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: .4rem; }
.pdp-price .price { font-size: var(--step-3); }
.pdp-vat { font-size: .8rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.pdp-short { font-size: var(--step-0); color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem; }
.pdp-stock { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--step--1); font-weight: 600; margin-bottom: 1.25rem; }
.pdp-stock .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); }
.pdp-stock.is-low .dot { background: var(--honey-500); }
.pdp-stock.is-out .dot { background: var(--danger); }

.variant-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.variant-list label {
  padding: .55rem 1rem; border: 1.5px solid var(--sand-300); border-radius: var(--r-pill);
  font-size: var(--step--1); font-weight: 600; cursor: pointer; transition: all .18s;
}
.variant-list input { position: absolute; opacity: 0; width: 0; }
.variant-list input:checked + span { }
.variant-list label:has(input:checked) { border-color: var(--honey-500); background: var(--honey-50); color: var(--bark-800); }
.variant-list label:has(input:disabled) { opacity: .45; cursor: not-allowed; text-decoration: line-through; }

.buy-row { display: flex; gap: .75rem; align-items: stretch; flex-wrap: wrap; margin-bottom: 1.5rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--sand-300); border-radius: var(--r-pill); overflow: hidden; background: #fff; }
.qty button { width: 42px; height: 46px; border: 0; background: transparent; font-size: 1.2rem; color: var(--bark-700); }
.qty button:hover { background: var(--sand-100); }
.qty input { width: 48px; height: 46px; border: 0; text-align: center; font-weight: 650; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.trust-list { list-style: none; padding: 1.1rem 1.25rem; margin: 0 0 1.5rem; background: var(--honey-50); border: 1px solid var(--honey-200); border-radius: var(--r-md); display: grid; gap: .6rem; }
.trust-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); color: var(--bark-700); }
.trust-list svg { flex: none; color: var(--honey-600); margin-top: .15rem; }

.tabs { border-bottom: 1px solid var(--sand-200); display: flex; gap: .25rem; margin-bottom: 1.75rem; overflow-x: auto; }
.tabs button {
  padding: .8rem 1.1rem; border: 0; background: transparent; border-bottom: 2px solid transparent;
  font-weight: 650; font-size: var(--step--1); color: var(--ink-soft); white-space: nowrap;
}
.tabs button[aria-selected="true"] { color: var(--bark-800); border-bottom-color: var(--honey-500); }
.tab-panel[hidden] { display: none; }

.prose { max-width: 72ch; line-height: 1.75; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li + li { margin-top: .35rem; }
.prose img { border-radius: var(--r-md); margin-block: 1.5rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.prose th, .prose td { padding: .6rem .8rem; border: 1px solid var(--sand-200); text-align: left; }
.prose th { background: var(--sand-50); font-weight: 650; }
.prose blockquote { border-left: 3px solid var(--honey-400); padding-left: 1.1rem; color: var(--ink-soft); font-style: italic; }
.prose a { font-weight: 600; }

/* ---------- 17. Carrello e checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem); align-items: start; }
.panel { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-md); padding: clamp(1.1rem, .8rem + 1vw, 1.75rem); }
.panel + .panel { margin-top: 1.25rem; }
.panel h2, .panel h3 { margin-bottom: 1rem; }
.summary-box { position: sticky; top: calc(var(--header-h) + 1rem); }

.cart-line { display: grid; grid-template-columns: 88px 1fr auto; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--sand-100); align-items: center; }
.cart-line:last-child { border-bottom: 0; }
.cart-line .thumb { width: 88px; height: 88px; border: 1px solid var(--sand-200); border-radius: var(--r-sm); background: #fff; overflow: hidden; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-line h3 { font-family: var(--font-body); font-size: var(--step-0); font-weight: 620; margin-bottom: .2rem; }
.cart-line h3 a { color: var(--bark-800); text-decoration: none; }
.cart-line .meta { font-size: .78rem; color: var(--ink-soft); }
.cart-line .line-end { text-align: right; display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }

.totals { list-style: none; padding: 0; margin: 0; font-size: var(--step--1); }
.totals li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.totals li.is-total { border-top: 2px solid var(--sand-200); margin-top: .5rem; padding-top: .85rem; font-size: var(--step-1); font-weight: 700; color: var(--bark-800); font-family: var(--font-display); }
.totals .free { color: var(--success); font-weight: 700; }
.totals .discount { color: var(--success); }

.progress-free { margin: 1rem 0 1.25rem; }
.progress-free .bar { height: 8px; border-radius: var(--r-pill); background: var(--sand-200); overflow: hidden; }
.progress-free .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--honey-400), var(--honey-600)); border-radius: inherit; transition: width .4s ease; }
.progress-free p { font-size: .8rem; color: var(--ink-soft); margin-top: .5rem; }
.progress-free strong { color: var(--honey-700); }

.pay-option, .ship-option {
  display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.1rem;
  border: 1.5px solid var(--sand-200); border-radius: var(--r-md); margin-bottom: .7rem; cursor: pointer; transition: all .18s;
}
.pay-option:hover, .ship-option:hover { border-color: var(--honey-300); }
.pay-option:has(input:checked), .ship-option:has(input:checked) { border-color: var(--honey-500); background: var(--honey-50); }
.pay-option input, .ship-option input { margin-top: .2rem; width: 20px; height: 20px; accent-color: var(--honey-600); flex: none; }
.pay-option b, .ship-option b { display: block; font-size: var(--step-0); color: var(--bark-800); }
.pay-option small, .ship-option small { display: block; color: var(--ink-soft); font-size: .8rem; line-height: 1.5; }
.ship-option .cost { margin-left: auto; font-weight: 700; color: var(--bark-800); white-space: nowrap; }

.steps { display: flex; gap: .5rem; align-items: center; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; font-size: var(--step--1); }
.steps span { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-soft); }
.steps span b { width: 24px; height: 24px; border-radius: 50%; background: var(--sand-200); color: var(--bark-700); display: grid; place-items: center; font-size: .75rem; }
.steps .is-active { color: var(--bark-800); font-weight: 650; }
.steps .is-active b { background: var(--honey-500); color: var(--bark-900); }
.steps .sep { width: 24px; height: 1px; background: var(--sand-300); }

/* ---------- 18. Newsletter ---------- */
.newsletter { background: var(--bark-800); color: var(--sand-100); border-radius: var(--r-lg); padding: clamp(1.75rem, 1.2rem + 2.5vw, 3.25rem); position: relative; overflow: hidden; }
.newsletter::after { content: ""; position: absolute; inset: 0; opacity: .25; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath d='M28 0 56 16v32L28 64 0 48V16z' fill='none' stroke='%23f2b44c' stroke-opacity='.35' stroke-width='1.5'/%3E%3C/svg%3E"); }
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { color: #fff; }
.newsletter p { color: var(--sand-200); max-width: 55ch; }
.newsletter form { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; max-width: 520px; }
.newsletter input[type="email"] { flex: 1; min-width: 220px; border: 0; border-radius: var(--r-pill); padding: .8rem 1.2rem; }
.newsletter .check { color: var(--sand-200); margin-top: 1rem; font-size: .8rem; }
.newsletter .check a { color: var(--honey-300); }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--bark-900); color: var(--sand-200); margin-top: clamp(3rem, 2rem + 4vw, 6rem); }
.footer-top { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
.footer-brand img, .footer-brand svg { height: 84px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: var(--step--1); line-height: 1.7; color: var(--sand-300); max-width: 38ch; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: var(--step--1); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { color: var(--sand-200); text-decoration: none; font-size: var(--step--1); }
.site-footer a:hover { color: var(--honey-300); text-decoration: underline; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); }
.footer-contact svg { flex: none; margin-top: .2rem; color: var(--honey-400); }
.social-row { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-row a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--sand-100); }
.social-row a:hover { background: var(--honey-500); color: var(--bark-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: var(--sand-300); }
.footer-bottom nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.pay-icons { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; margin-top: 1rem; }
.pay-icons span { background: rgba(255,255,255,.1); border-radius: 5px; padding: .3rem .55rem; font-size: .68rem; font-weight: 700; letter-spacing: .04em; color: var(--sand-100); }

/* ---------- 20. Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 560px; margin-inline: auto;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.35rem;
  animation: cookie-in .35s ease both;
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(16px); } }
.cookie-banner h2 { font-size: var(--step-1); margin-bottom: .5rem; }
.cookie-banner p { font-size: .85rem; color: var(--ink-soft); line-height: 1.6; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; gap: .6rem; margin-top: 1.1rem; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1 1 150px; }
.cookie-prefs { margin-top: 1.1rem; border-top: 1px solid var(--sand-100); padding-top: 1rem; display: grid; gap: .8rem; }
.cookie-prefs[hidden] { display: none; }
.cookie-switch { display: flex; gap: .8rem; align-items: flex-start; font-size: .82rem; }
.cookie-switch input { width: 20px; height: 20px; margin-top: .1rem; accent-color: var(--honey-600); flex: none; }
.cookie-switch b { display: block; color: var(--bark-800); }
.cookie-switch small { color: var(--ink-soft); line-height: 1.5; }

/* ---------- 21. Drawer carrello ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(47,29,14,.45); z-index: 150; opacity: 0; visibility: hidden; transition: .25s; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); z-index: 160;
  background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--sand-200); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.drawer-foot { border-top: 1px solid var(--sand-200); padding: 1.25rem; background: var(--sand-50); }

/* ---------- 22. Tabelle e utilità ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.table th { text-align: left; padding: .7rem .8rem; border-bottom: 2px solid var(--sand-200); font-weight: 700; color: var(--bark-700); white-space: nowrap; }
.table td { padding: .75rem .8rem; border-bottom: 1px solid var(--sand-100); vertical-align: middle; }
.table tbody tr:hover { background: var(--sand-50); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--ink-soft); }
.text-small { font-size: var(--step--1); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.bg-sand { background: var(--sand-50); }
.bg-white { background: #fff; }
.rounded { border-radius: var(--r-md); }
.divider { height: 1px; background: var(--sand-200); margin-block: 1.5rem; border: 0; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- 23. Sezione "chi siamo" ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.about-split img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--honey-300); }

/* ---------- 24. Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1rem, .7rem + 1.2vw, 1.75rem); }
.post-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--sand-200); border-radius: var(--r-md); overflow: hidden; transition: all .2s; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card .body { padding: 1.15rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card h3 { font-family: var(--font-body); font-size: var(--step-1); font-weight: 650; line-height: 1.3; }
.post-card h3 a { color: var(--bark-800); text-decoration: none; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card p { font-size: var(--step--1); color: var(--ink-soft); }
.post-card .meta { margin-top: auto; padding-top: .6rem; font-size: .75rem; color: var(--ink-soft); display: flex; gap: .75rem; }

/* ---------- 25. FAQ ---------- */
.faq-item { border: 1px solid var(--sand-200); border-radius: var(--r-md); background: #fff; margin-bottom: .7rem; overflow: hidden; }
.faq-item summary { padding: 1.05rem 1.25rem; font-weight: 650; color: var(--bark-800); cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--honey-600); flex: none; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid var(--sand-100); }
.faq-item .answer { padding: 1.05rem 1.25rem; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.7; }

/* ---------- 26. Recensioni ---------- */
.review { padding: 1.15rem 0; border-bottom: 1px solid var(--sand-100); }
.review:last-child { border-bottom: 0; }
.review header { display: flex; gap: .75rem; align-items: center; margin-bottom: .5rem; flex-wrap: wrap; }
.review header b { color: var(--bark-800); }
.review header time { font-size: .78rem; color: var(--ink-soft); }
.review p { color: var(--ink-soft); font-size: var(--step--1); }

/* ---------- 27. Stato ordine ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--sand-200); }
.timeline li { position: relative; padding-left: 2.25rem; padding-block: .65rem; }
.timeline li::before { content: ""; position: absolute; left: 4px; top: 1.1rem; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--sand-300); }
.timeline li.is-done::before { border-color: var(--success); background: var(--success); }
.timeline li.is-current::before { border-color: var(--honey-500); background: var(--honey-500); box-shadow: 0 0 0 4px rgba(232,155,38,.2); }
.timeline b { display: block; color: var(--bark-800); font-size: var(--step-0); }
.timeline small { color: var(--ink-soft); font-size: .78rem; }

.status-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .8rem; border-radius: var(--r-pill); font-size: .75rem; font-weight: 700; }
.status-pending { background: var(--warn-bg); color: var(--warn); }
.status-paid, .status-processing { background: var(--info-bg); color: var(--info); }
.status-shipped { background: #ede7f8; color: #573a9b; }
.status-delivered { background: var(--success-bg); color: var(--success); }
.status-cancelled, .status-refunded { background: var(--danger-bg); color: var(--danger); }

/* ---------- 28. Responsive ---------- */
@media (max-width: 1023px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-badge { position: static; margin-top: 1rem; max-width: none; }
  .pdp { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .header-search { order: 3; flex-basis: 100%; max-width: none; margin: 0 0 .75rem; }
  .header-main { flex-wrap: wrap; padding-top: .6rem; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; color: var(--bark-700); }
  .nav-toggle:hover { background: var(--sand-100); }
  .site-nav { display: none; }
  .site-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow-md); max-height: 70vh; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; padding: .5rem; }
  .nav-list a { padding: .8rem 1rem; border-bottom: 1px solid var(--sand-100); border-radius: var(--r-sm); }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--honey-200); border-radius: 0; margin-left: 1rem; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: .75rem; }
  .cart-line { grid-template-columns: 68px 1fr; }
  .cart-line .thumb { width: 68px; height: 68px; }
  .cart-line .line-end { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .usp-bar .wrap { gap: .5rem; font-size: .78rem; }
  .cookie-actions .btn { flex-basis: 100%; }
  .hero-proof { gap: 1.1rem; }
}

/* ---------- 29. Stampa ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .usp-bar, .no-print, .drawer, .drawer-backdrop { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .panel { border: 1px solid #ccc; box-shadow: none; }
  a[href]::after { content: ""; }
}
