@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #2a142e;
  --ink-2: #3a1d40;
  --ink-3: #1c0d20;
  --cyan: #ae65e6;
  --cyan-dim: #8a44c4;
  --paper: #f4f0f5;
  --white: #ffffff;
  --steel: #948a9c;
  --steel-dark: #5c5563;
  --line: rgba(255,255,255,0.1);
  --line-dark: rgba(42,20,46,0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.display {
  font-family: 'Anton', 'Inter', sans-serif; text-transform: uppercase;
  letter-spacing: 0.01em; font-weight: 400; line-height: 0.95;
}

/* Top bar */
.topbar { background: var(--ink); color: rgba(255,255,255,0.6); font-size: 0.8rem; border-bottom: 1px solid var(--line); }
.topbar-inner { max-width: 1180px; margin: 0 auto; padding: 9px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a:hover { color: #fff; }
.lang-switch { display: flex; gap: 10px; }
.lang-switch a { font-weight: 700; letter-spacing: 0.04em; opacity: 0.55; }
.lang-switch a.active { opacity: 1; color: var(--cyan); }

/* Header */
header.site-header { background: var(--white); border-bottom: 1px solid var(--line-dark); position: sticky; top: 0; z-index: 60; }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { object-fit: cover;
  width: 36px; height: 36px; border-radius: 8px; background: var(--ink); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif; font-size: 1.1rem;
}
.brand-name { color: var(--ink); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.01em; }
nav.main-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
nav.main-nav a { color: var(--steel-dark); font-weight: 600; font-size: 0.88rem; padding: 6px 2px; border-bottom: 2px solid transparent; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--ink); border-color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-link { position: relative; color: var(--ink); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.cart-count {
  background: var(--cyan); color: var(--ink); font-size: 0.72rem; font-weight: 800;
  border-radius: 999px; padding: 1px 7px; min-width: 18px; text-align: center;
}
.btn {
  display: inline-block; background: var(--cyan); color: var(--ink); font-weight: 800;
  padding: 13px 26px; border-radius: 999px; font-size: 0.88rem; border: none; cursor: pointer;
  letter-spacing: 0.01em; transition: background-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: #c084f0; transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--ink); font-weight: 700;
  padding: 12px 25px; border-radius: 999px; font-size: 0.88rem; border: 2px solid var(--line-dark);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-dim); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); }

/* Hero */
.hero { background: linear-gradient(160deg, var(--paper) 0%, #ffffff 100%); position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(174,101,230,0.22), transparent 70%);
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 60px 24px 56px; position: relative; z-index: 1; text-align: center; }
.hero-eyebrow { color: var(--cyan-dim); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.16em; margin-bottom: 18px; }
.hero h1 { color: var(--ink); font-size: clamp(1.3rem, 2.8vw, 1.85rem); margin: 0 0 14px; }
.hero h1 .accent { color: var(--cyan-dim); }
.hero p { color: var(--steel-dark); font-size: 0.95rem; max-width: 56ch; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-video { background: var(--paper); padding: 40px 24px; }
.hero-video-frame { position: relative; max-width: 1180px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: var(--ink-3); box-shadow: 0 24px 60px rgba(28,13,32,0.28); }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video::after { background: none; }
.hero-video-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(55deg, rgba(28,13,32,0.9) 0%, rgba(28,13,32,0.45) 42%, rgba(28,13,32,0) 68%);
  z-index: 1;
}
.hero-video .hero-inner { position: absolute; left: 0; bottom: 0; margin: 0; z-index: 2; text-align: left; max-width: 62%; padding: 30px 38px; }
.hero-video .hero-inner h1 { margin: 0 0 10px; }
.hero-video .hero-inner p { margin: 0; max-width: 48ch; }
@media (max-width: 720px) {
  .hero-video { padding: 20px 14px; }
  .hero-video-frame { aspect-ratio: auto; min-height: 420px; }
  .hero-video .hero-inner { max-width: 100%; padding: 20px 18px; }
}
.hero-video .hero-eyebrow { color: var(--cyan); }
.hero-video h1 { color: #fff; }
.hero-video h1 .accent { color: var(--cyan); }
.hero-video p { color: rgba(255,255,255,0.85); }
.hero-video-mute {
  position: absolute; bottom: 22px; right: 22px; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 1.15rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.hero-video-mute:hover { background: rgba(0,0,0,0.7); }


/* Page hero (inner pages) */
.page-hero { background: var(--paper); padding: 50px 24px; border-bottom: 1px solid var(--line-dark); }

.page-hero.has-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 24px;
  border-bottom: none;
}
.page-hero.has-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,13,32,0.72), rgba(28,13,32,0.55));
}
.page-hero.has-photo .page-hero-inner { position: relative; z-index: 1; }
.page-hero.has-photo .page-hero-eyebrow { color: var(--cyan); }
.page-hero.has-photo h1 { color: #fff; }
.page-hero.has-photo p { color: rgba(255,255,255,0.85); }

.model-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.model-card-noimg .model-card-body { padding-top: 24px; }

.dual-hero { padding: 40px 0 10px; }
.dual-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .dual-hero-grid { grid-template-columns: 1fr; } }
.dual-hero-grid-single { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
.dual-hero-solo { padding-top: 8px; }

.dual-hero-col { background: #fff; border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden; }
.dual-hero-col-noimg { display: flex; flex-direction: column; justify-content: center; }
.dual-hero-col-noimg .dual-hero-body { padding: 26px; }

.dual-hero-carousel { position: relative; aspect-ratio: 1/1; background: var(--paper); overflow: hidden; }
.dual-hero-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1); }
.dual-hero-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: contain; display: block; }
@keyframes dualHeroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.22) translate(-3%, -2%); }
}
.dual-hero-track.single-photo img { animation: dualHeroKenBurns 6s ease-in-out infinite alternate; }

.dual-hero-body { padding: 22px 24px 26px; }
.dual-hero-body h2 { margin: 0 0 6px; font-size: 1.35rem; color: var(--ink); }
.dual-hero-tagline { color: var(--steel-dark); font-size: 0.92rem; margin: 0 0 14px; }
.dual-hero-body .product-price { font-size: 1.15rem; margin: 0; }
.dual-hero-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.dual-hero-title-row h2 { margin: 0; }
.dual-hero-price { text-align: right; font-weight: 800; font-size: 1.1rem; color: var(--ink); white-space: nowrap; }
.dual-hero-price-note { display: block; font-weight: 500; font-size: 0.7rem; color: var(--steel-dark); text-transform: none; letter-spacing: normal; white-space: nowrap; }
.model-grid-single { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }



.machine-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 44px; }
.machine-gallery a { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 1; border: 1px solid var(--line-dark); }
.machine-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.machine-gallery a:hover img { transform: scale(1.06); }

.page-hero-inner { max-width: 1180px; margin: 0 auto; }
.page-hero-eyebrow { color: var(--cyan-dim); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; margin-bottom: 10px; }
.page-hero h1 { color: var(--ink); font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0 0 10px; }
.page-hero p { color: var(--steel-dark); font-size: 1rem; max-width: 64ch; margin: 0; }

/* Page hero with side image */
.page-hero-split .page-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-hero-split-text { flex: 1 1 480px; }
.page-hero-split-img { flex: 0 1 380px; }
.page-hero-split-text p { margin: 0 0 12px; max-width: 62ch; }
.page-hero-split-text h1 { margin-bottom: 6px; }
.page-hero-split-img img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 20px 40px rgba(42,20,46,0.14); }
@media (max-width: 760px) {
  .page-hero-split .page-hero-inner { flex-direction: column; }
  .page-hero-split-img { order: -1; flex: 0 1 auto; width: 100%; }
}

/* 3-column grid (cocktail alla spina) */
#grid-spina.shop-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { #grid-spina.shop-grid-3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #grid-spina.shop-grid-3col { grid-template-columns: 1fr; } }

/* Cocktail alla spina: loghi grandi, bianco su bianco */
#grid-spina .product-card-img { background: #fff; }
#grid-spina .product-card-img-sm { width: 150px; max-width: 150px; margin-top: 26px; }
#grid-spina .product-card-img img { width: 100%; height: 100%; }


section { padding: 70px 0; }
.section-alt { background: #fff; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-eyebrow { color: var(--cyan-dim); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 12px; }
.section-head p { color: var(--steel-dark); font-size: 1rem; margin: 0; }

/* Value grid */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.value-card { background: #fff; border-radius: 10px; border: 1px solid var(--line-dark); overflow: hidden; }
.value-photo { aspect-ratio: 4/3; background: var(--paper); overflow: hidden; }
.value-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.value-card-body { padding: 20px 22px 24px; }
.value-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.value-card p { color: var(--steel-dark); font-size: 0.9rem; margin: 0; }

/* Product category grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.cat-card {
  background: #fff; border: 1px solid var(--line-dark); border-radius: 14px; padding: 32px 28px; color: var(--ink);
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.cat-card::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 160px; height: 160px;
  border-radius: 50%; background: radial-gradient(circle, rgba(174,101,230,0.16), transparent 70%);
}
.cat-tag { color: var(--cyan-dim); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; position: relative; z-index: 1; }
.cat-card h3 { font-size: 1.4rem; margin: 0; position: relative; z-index: 1; color: var(--ink); }
.cat-card p { color: var(--steel-dark); font-size: 0.9rem; margin: 0; position: relative; z-index: 1; }
.cat-card .cat-link { margin-top: 10px; color: var(--ink); font-weight: 700; font-size: 0.88rem; position: relative; z-index: 1; }

/* Category cards with photo */
.cat-card-photo { padding: 0; }
.cat-card-img { aspect-ratio: 4/5; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
.cat-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.35s ease; }
.cat-card-photo:hover .cat-card-img img { transform: scale(1.06); }
img.cat-card-img-zoom { transform: scale(1.2); }
.cat-card-photo:hover img.cat-card-img-zoom { transform: scale(1.26); }
.cat-card-content { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }

/* Full logo (header + footer) */
.brand-logo-full { height: 40px; width: auto; object-fit: contain; background: none; border-radius: 0; }
.footer-logo-full { height: 34px; width: auto; object-fit: contain; }

/* Lightbox */
body.lightbox-locked { overflow: hidden; }
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(10,4,12,0.92); z-index: 999;
  display: none; align-items: center; justify-content: center;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}


/* Machine model cards */
.model-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.model-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-dark); }
.model-card-img { aspect-ratio: 4/3; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--steel); font-size: 2rem; }
.model-card-body { padding: 22px 24px; }
.model-card-body h3 { margin: 0 0 8px; font-size: 1.15rem; }
.model-card-body p { color: var(--steel-dark); font-size: 0.9rem; margin: 0 0 12px; }
.model-specs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.model-specs li { font-size: 0.85rem; color: var(--ink); display: flex; gap: 8px; }
.model-specs li::before { content: "—"; color: var(--cyan-dim); font-weight: 800; }

.premix-grad { display:inline-block; font-size:0.72rem; font-weight:800; color:var(--cyan-dim); background:rgba(174,101,230,0.12); padding:3px 10px; border-radius:999px; margin:6px 0 0; }
.premix-usedin { font-size: 0.72rem; color: var(--steel-dark); margin: 6px 0 0; line-height: 1.35; }

/* ===== Cocktails catalogue ===== */
.cocktail-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.cocktail-search { flex: 1 1 240px; max-width: 340px; padding: 11px 16px; border: 1px solid var(--line-dark); border-radius: 999px; font-family: inherit; font-size: 0.9rem; background: #fff; color: var(--ink); }
.cocktail-search:focus { outline: none; border-color: var(--cyan); }
.cocktail-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.cocktail-filter { border: 1px solid var(--line-dark); background: #fff; color: var(--steel-dark); font-family: inherit; font-weight: 700; font-size: 0.82rem; padding: 9px 16px; border-radius: 999px; cursor: pointer; transition: all 0.15s ease; }
.cocktail-filter:hover { border-color: var(--cyan); color: var(--ink); }
.cocktail-filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cocktail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 22px; }
.cocktail-card { background: #fff; border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cocktail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(42,20,46,0.12); }
.cocktail-card-photo { aspect-ratio: 1; overflow: hidden; background: var(--paper); position: relative; }
.cocktail-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cocktail-badge { position: absolute; top: 10px; left: 10px; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 999px; }
.cocktail-badge.analcolico { background: #2f9e6e; color: #fff; }
.cocktail-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cocktail-card-body h3 { margin: 0; font-size: 1.08rem; color: var(--ink); }
.cocktail-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.cocktail-chip { font-size: 0.72rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: rgba(174,101,230,0.12); color: var(--cyan-dim); }
.cocktail-chip.spirit { background: rgba(42,20,46,0.07); color: var(--steel-dark); }
.cocktail-empty { text-align: center; color: var(--steel-dark); padding: 40px 0; grid-column: 1/-1; }

/* ===== Menu builder ===== */
.menu-builder { display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .menu-builder { grid-template-columns: 1fr; } }
.menu-pick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.menu-pick { position: relative; border: 1px solid var(--line-dark); border-radius: 12px; overflow: hidden; cursor: pointer; background: #fff; transition: border-color 0.15s ease; }
.menu-pick:hover { border-color: var(--cyan); }
.menu-pick.selected { border-color: var(--cyan); box-shadow: inset 0 0 0 2px var(--cyan); }
.menu-pick-photo { aspect-ratio: 3/2; background: var(--paper); overflow: hidden; }
.menu-pick-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-pick-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--steel); }
.menu-pick-name { padding: 9px 11px; font-size: 0.82rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.menu-pick-check { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: transparent; }
.menu-pick.selected .menu-pick-check { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }
.menu-side { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line-dark); border-radius: 16px; padding: 24px; }
.menu-gauge { text-align: center; margin-bottom: 18px; }
.menu-gauge-num { font-family: 'Anton', sans-serif; font-size: 3rem; line-height: 1; color: var(--ink); }
.menu-gauge-num span { font-size: 1.3rem; color: var(--steel); }
.menu-gauge-bar { height: 10px; border-radius: 999px; background: var(--paper); overflow: hidden; margin: 12px 0 8px; }
.menu-gauge-fill { height: 100%; background: linear-gradient(90deg, #2f9e6e, var(--cyan)); transition: width 0.3s ease; }
.menu-gauge-fill.over { background: #d64545; }
.menu-status { font-size: 0.85rem; font-weight: 700; padding: 8px 12px; border-radius: 10px; text-align: center; }
.menu-status.gig8 { background: rgba(47,158,110,0.12); color: #24805a; }
.menu-status.gig15 { background: rgba(174,101,230,0.14); color: var(--cyan-dim); }
.menu-status.over { background: rgba(214,69,69,0.12); color: #b53030; }
.menu-shoplist { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 7px; }
.menu-shoplist li { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--ink); }
.menu-shoplist li .muted { color: var(--steel-dark); font-weight: 400; }
.menu-group-title { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan-dim); margin: 16px 0 4px; }
.menu-side-cta { margin-top: 20px; }

/* ===== Drink cost calculator ===== */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-card { background: #fff; border: 1px solid var(--line-dark); border-radius: 16px; padding: 24px; }
.calc-card h2 { margin: 0 0 14px; font-size: 1.15rem; }
.calc-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.calc-row:last-child { border-bottom: none; }
.calc-row .lbl { font-size: 0.88rem; color: var(--ink); }
.calc-row .lbl small { display: block; color: var(--steel-dark); font-weight: 400; font-size: 0.76rem; }
.calc-input { width: 90px; padding: 7px 10px; border: 1px solid var(--line-dark); border-radius: 8px; font-family: inherit; font-size: 0.88rem; text-align: right; color: var(--ink); }
.calc-input:focus { outline: none; border-color: var(--cyan); }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; padding-top: 14px; border-top: 2px solid var(--ink); }
.calc-total .big { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--ink); }
.calc-metric { display: flex; flex-direction: column; gap: 3px; padding: 12px 0; }
.calc-metric .mv { font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--ink); }
.calc-metric .ml { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cyan-dim); font-weight: 800; }
.calc-addon-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.calc-addon-row input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--cyan); }
.calc-addon-row .an { flex: 1; font-size: 0.86rem; }
.calc-addon-row .ac { font-size: 0.82rem; color: var(--steel-dark); }
.calc-select { width: 100%; padding: 10px 12px; border: 1px solid var(--line-dark); border-radius: 10px; font-family: inherit; font-size: 0.92rem; background: #fff; color: var(--ink); margin-bottom: 6px; }

.listino-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.listino-table thead th { text-align: left; padding: 14px 18px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cyan-dim); border-bottom: 1px solid var(--line-dark); background: var(--paper); }
.listino-table tbody td { padding: 11px 18px; border-bottom: 1px solid var(--line-dark); color: var(--ink); vertical-align: middle; }
.listino-table tbody tr:last-child td { border-bottom: none; }
.listino-table td.muted { color: var(--steel-dark); font-size: 0.82rem; }
.listino-table .cur { color: var(--steel-dark); font-size: 0.8rem; margin-right: 2px; }
.listino-table .calc-input { width: 92px; }

/* ===== Admin parametri ===== */
.param-section { margin-bottom: 30px; }
.param-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-dark); }
.param-row .pn { flex: 1; font-size: 0.9rem; }
.param-row input { padding: 7px 10px; border: 1px solid var(--line-dark); border-radius: 8px; font-family: inherit; font-size: 0.88rem; }

/* Power specs (bigger, more visible) */
.power-specs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.power-specs li { display: flex; flex-direction: column; gap: 3px; }
.power-specs .power-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan-dim); }
.power-specs .power-value { font-family: 'Anton', 'Inter', sans-serif; font-size: 1.4rem; color: var(--ink); letter-spacing: 0.01em; line-height: 1.15; }


/* Technical spec table */
.spec-table-wrap { max-width: 640px; margin: 0 auto; }
.spec-table-title { text-align: center; font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 0 0 16px; }
.spec-table { border: 1px solid var(--line-dark); border-radius: 12px; overflow: hidden; background: #fff; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; }
.spec-row + .spec-row { border-top: 1px solid var(--line-dark); }
.spec-label { padding: 14px 22px; text-align: right; border-right: 1px solid var(--line-dark); color: var(--ink); font-weight: 700; font-size: 0.9rem; background: var(--paper); }
.spec-value { padding: 14px 22px; text-align: left; color: var(--steel-dark); font-size: 0.9rem; }
@media (max-width: 560px) {
  .spec-label { padding: 12px 14px; font-size: 0.82rem; }
  .spec-value { padding: 12px 14px; font-size: 0.82rem; }
}


/* Product (consumable) cards / shop */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.product-card-img { aspect-ratio: 1; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--steel); font-size: 1.8rem; }
.product-card-img img { width: 62%; height: 62%; object-fit: contain; }
.product-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-body h3 { margin: 0; font-size: 1.02rem; }
.product-card-body p { color: var(--steel-dark); font-size: 0.85rem; margin: 0; flex: 1; }
.product-card-format { font-size: 0.74rem; color: var(--cyan-dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.order-list { display: flex; flex-direction: column; }
.order-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.order-row:first-child { padding-top: 0; }
.order-row-main { flex: 1; min-width: 0; }
.order-row-title-line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.order-row-title-line h3 { margin: 0; font-size: 1.05rem; color: var(--ink); }
.order-row-desc { color: var(--steel-dark); font-size: 0.92rem; margin: 0 0 6px; max-width: 640px; }
.order-row-format { color: var(--cyan-dim); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; margin: 0; }
.order-row-action { flex-shrink: 0; padding-top: 2px; }
@media (max-width: 640px) {
  .order-row { flex-direction: column; gap: 12px; }
  .order-row-title-line { flex-direction: column; align-items: flex-start; gap: 4px; }
}

.product-card-img-sm { width: 96px; max-width: 96px; margin: 22px auto 0; border-radius: 10px; }
.product-card-body-center { align-items: center; text-align: center; }
.product-card-compact .product-card-body { padding-bottom: 22px; }
.shop-grid-4col { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.shop-grid-4col .product-card { flex: 0 0 calc(25% - 16.5px); max-width: calc(25% - 16.5px); }
@media (max-width: 860px) { .shop-grid-4col .product-card { flex: 0 0 calc(50% - 11px); max-width: calc(50% - 11px); } }
@media (max-width: 480px) { .shop-grid-4col .product-card { flex: 0 0 100%; max-width: 100%; } }
.section-head p.section-subnote-purple { color: var(--cyan-dim); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; line-height: 1.6; margin: 0; }


.product-price { font-weight: 800; font-size: 1.05rem; }
.price-tbd { font-size: 0.8rem; color: var(--steel-dark); font-style: italic; }
.btn-add {
  background: var(--ink); color: #fff; border: none; border-radius: 999px; padding: 9px 18px;
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
}
.btn-add:hover { background: var(--ink-3); }
.qty-stepper { display: flex; align-items: center; gap: 10px; background: var(--paper); border-radius: 999px; padding: 4px 6px; }
.qty-stepper button { width: 24px; height: 24px; border-radius: 50%; border: none; background: var(--ink); color: #fff; font-size: 0.95rem; cursor: pointer; }
.qty-stepper span { font-weight: 800; min-width: 1.2ch; text-align: center; }

/* Category tabs (shop page) */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.cat-tab {
  background: #fff; border: 1px solid var(--line-dark); border-radius: 999px; padding: 9px 20px;
  font-size: 0.85rem; font-weight: 700; color: var(--ink); cursor: pointer;
}
.cat-tab.active, .cat-tab:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Enquiry / contact form */
.enquiry-band { background: var(--ink); color: #fff; }
.enquiry-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.enquiry-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 12px; }
.enquiry-inner p { color: rgba(255,255,255,0.7); margin: 0 0 28px; }

.form-card { background: #fff; border-radius: 12px; padding: 30px; text-align: left; color: var(--ink); }
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-grid label { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel-dark); margin-bottom: 5px; display: block; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; font-family: inherit; font-size: 0.95rem; padding: 11px 14px;
  border: 1px solid var(--line-dark); border-radius: 8px; background: var(--paper); color: var(--ink);
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { outline: 2px solid var(--cyan-dim); outline-offset: 1px; }
.form-grid textarea { resize: vertical; min-height: 100px; }
.form-msg { font-size: 0.85rem; margin-top: 10px; }

/* Cart / checkout */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel-dark); padding: 10px; border-bottom: 2px solid var(--line-dark); }
.cart-table td { padding: 12px 10px; border-bottom: 1px solid var(--line-dark); vertical-align: middle; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--steel-dark); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 800; padding: 18px 10px 0; }
.checkout-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: start; }
@media (max-width: 800px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-summary { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--line-dark); }
.checkout-summary-item { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--cyan) 0%, #c084f0 100%); color: #fff; text-align: center; padding: 60px 24px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 0 0 10px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0 0 26px; }
.cta-band .btn { background: var(--ink); color: #fff; }
.cta-band .btn:hover { background: var(--ink-3); }

/* Footer */
footer.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 54px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.site-footer p { font-size: 0.88rem; line-height: 1.6; }
.site-footer h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-list a { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-list a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.credit a { color: rgba(255,255,255,0.85); font-weight: 700; }

/* Cookie banner */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--ink); color: rgba(255,255,255,0.85); padding: 14px 20px; box-shadow: 0 -4px 18px rgba(0,0,0,0.3); }
.cookie-bar-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cookie-bar-inner p { margin: 0; font-size: 0.85rem; line-height: 1.5; }
.cookie-bar-inner a { color: var(--cyan); font-weight: 700; }
.cookie-accept { background: var(--cyan); color: var(--ink); font-weight: 800; border: none; border-radius: 999px; padding: 10px 22px; font-size: 0.85rem; white-space: nowrap; cursor: pointer; }
.cookie-accept:hover { background: #c084f0; }

/* Legal content */
.legal-content h2 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--steel-dark); line-height: 1.65; margin: 0 0 10px; font-size: 0.95rem; }
.legal-content a { color: var(--cyan-dim); font-weight: 700; text-decoration: underline; }

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  nav.main-nav { order: 3; width: 100%; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); gap: 8px; }
}

/* Premix alcolici: griglia 3 sopra + 2 sotto centrati (id-scoped, non tocca la spina) */
#grid-alcolici.shop-grid-3col { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
#grid-alcolici .product-card { flex: 0 0 calc(33.333% - 15px); max-width: calc(33.333% - 15px); }
@media (max-width: 860px) { #grid-alcolici .product-card { flex: 0 0 calc(50% - 11px); max-width: calc(50% - 11px); } }
@media (max-width: 480px) { #grid-alcolici .product-card { flex: 0 0 100%; max-width: 100%; } }
/* Logo premix alcolici ingrandito per riempire il riquadro immagine */
.premix-img-fill { background: #fff; }
.premix-img-fill img { width: 100%; height: 100%; object-fit: cover; }

/* Banda strumenti: due pulsanti eleganti (Crea il tuo menu / Lista Cocktails) */
.tools-band { background: linear-gradient(160deg, var(--ink-3) 0%, var(--ink) 100%); padding: 58px 24px; }
.tools-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.tool-cta { display: flex; align-items: center; gap: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 40px 42px; color: #fff; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.tool-cta:hover { transform: translateY(-3px); border-color: var(--cyan); background: rgba(174,101,230,0.10); }
.tool-cta-icon { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 14px; background: var(--cyan); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.tool-cta-icon svg { width: 28px; height: 28px; }
.tool-cta-text { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; min-width: 0; }
.tool-cta-title { font-weight: 800; font-size: 1.5rem; letter-spacing: .01em; }
.tool-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.62); margin-top: 2px; }
.tool-cta-arrow { flex: 0 0 auto; font-size: 1.9rem; line-height: 1; color: var(--cyan); transition: transform .2s ease; }
.tool-cta:hover .tool-cta-arrow { transform: translateX(4px); }
@media (max-width: 720px) { .tools-band-inner { grid-template-columns: 1fr; } .tool-cta { padding: 30px 28px; } .tool-cta-title { font-size: 1.3rem; } }

/* Pulsanti strumenti con foto al posto dell icona */
.tool-cta-icon-photo { background: none; overflow: hidden; padding: 0; }
.tool-cta-icon-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Sezione Perche Cocktails Machine */
.why-title { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin: 0 0 12px; color: var(--ink); line-height: 1.05; }
.why-sub { font-size: 1.08rem; color: var(--ink); font-weight: 600; margin: 0 0 12px; }
.why-highlight { font-size: 1.24rem; color: var(--cyan-dim); font-weight: 800; margin: 0; }

/* Segnaposto cocktail senza foto */
.cocktail-card-noimg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background: linear-gradient(160deg, var(--paper) 0%, #ffffff 100%); color: var(--cyan); }
.cocktail-card-noimg svg { width:44%; height:44%; opacity:0.45; }

/* Calcolatore ROI (rientro investimento) */
.roi-layout { display: block; max-width: 640px; margin: 0 auto; }
@media (max-width: 900px) { .roi-layout { grid-template-columns: 1fr; } }
.roi-step { margin-bottom: 30px; }
.roi-step-title { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin: 0 0 14px; color: var(--ink); }
.roi-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--cyan); color: var(--ink); font-size: 0.9rem; font-weight: 800; flex: 0 0 auto; }
.roi-machines { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .roi-machines { grid-template-columns: 1fr; } }
.roi-machine { display: flex; flex-direction: column; gap: 3px; padding: 16px 18px; border: 1.5px solid var(--line-dark); border-radius: 12px; cursor: pointer; background: #fff; transition: border-color .15s, box-shadow .15s; }
.roi-machine input { position: absolute; opacity: 0; width: 0; height: 0; }
.roi-machine.sel { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(174,101,230,0.15); }
.roi-machine-name { font-weight: 800; color: var(--ink); }
.roi-machine-cap { font-size: 0.78rem; color: var(--steel-dark); }
.roi-machine-price { font-weight: 800; color: var(--cyan-dim); margin-top: 2px; }
.roi-premix-group { margin-bottom: 14px; }
.roi-premix-group h4 { margin: 0 0 8px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--steel-dark); }
.roi-premix-list { display: flex; flex-wrap: wrap; gap: 8px; }
.roi-premix { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border: 1px solid var(--line-dark); border-radius: 999px; cursor: pointer; font-size: 0.86rem; background: #fff; color: var(--ink); }
.roi-premix input { position: absolute; opacity: 0; width: 0; height: 0; }
.roi-premix.sel { border-color: var(--cyan); background: rgba(174,101,230,0.10); color: var(--cyan-dim); font-weight: 700; }
.roi-premix-price { font-size: 0.76rem; opacity: 0.7; }
.roi-hint { font-size: 0.86rem; color: var(--steel-dark); margin: 0 0 12px; }
.roi-warn { color: #c0392b; font-weight: 700; }
.roi-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.roi-field span { font-size: 0.88rem; color: var(--ink); font-weight: 600; }
.roi-field input { padding: 12px 14px; border: 1px solid var(--line-dark); border-radius: 10px; font-size: 1rem; font-family: inherit; background: #fff; color: var(--ink); max-width: 220px; }
.roi-result { position: static; margin-top: 26px; }
.roi-result-card { background: linear-gradient(160deg, var(--ink-3) 0%, var(--ink) 100%); color: #fff; border-radius: 18px; padding: 28px 26px; }
.roi-result-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.roi-result-row span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.roi-result-row strong { font-size: 1.05rem; font-weight: 800; white-space: nowrap; }
.roi-result-sub { font-size: 0.76rem; color: rgba(255,255,255,0.5); padding: 6px 0 4px; }
.roi-result-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.14); margin: 16px 0; }
.roi-payback { text-align: center; padding: 8px 0; }
.roi-payback-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .1em; }
.roi-payback-value { display: block; font-size: 2.4rem; font-weight: 800; color: rgba(255,255,255,0.85); margin: 8px 0 4px; line-height: 1.1; }
.roi-payback-value.roi-ok { color: var(--cyan); }
.roi-payback-extra { display: block; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.roi-note { font-size: 0.74rem; color: rgba(255,255,255,0.45); margin: 16px 0 0; text-align: center; }

/* Banner promozionale ROI */
.roi-banner { background: linear-gradient(120deg, var(--ink-3) 0%, var(--ink) 55%, #4a2a63 100%); padding: 48px 24px; }
.roi-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.roi-banner-text { flex: 1 1 460px; }
.roi-banner-kicker { color: var(--cyan); font-weight: 800; font-size: 0.78rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 10px; }
.roi-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0; line-height: 1.22; max-width: 680px; }
.roi-banner h2 span { color: var(--cyan); white-space: nowrap; }
.roi-banner-btn { flex: 0 0 auto; }
@media (max-width: 640px) { .roi-banner-inner { flex-direction: column; align-items: flex-start; } }
.roi-hero-stat { display: inline-block; margin: 14px 0 0; background: rgba(174,101,230,0.14); color: var(--cyan-dim); font-weight: 800; padding: 8px 16px; border-radius: 999px; font-size: 0.95rem; }

/* Voci breakdown card macchina (ROI) */
.roi-machine-line { font-size: 0.82rem; color: var(--steel-dark); }
.roi-machine-line b { color: var(--ink); font-weight: 700; }
.roi-machine-total { font-size: 0.98rem; font-weight: 800; color: var(--cyan-dim); margin-top: 5px; padding-top: 6px; border-top: 1px solid var(--line-dark); }
.roi-machine-total b { color: var(--cyan-dim); }
/* Menu principale a due righe */
.nav-row { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: flex-end; }
.nav-row-tools { gap: 18px; }
.nav-row-tools a { color: var(--cyan-dim); font-weight: 800; }
.nav-row-tools a:hover, .nav-row-tools a.active { color: var(--ink); border-color: var(--cyan); }
@media (max-width: 900px) { .nav-row { justify-content: center; } }

/* Shop: intestazione con saluto sopra i link */
.header-actions.shop-actions { flex-direction: column; align-items: flex-end; gap: 4px; }
.shop-greeting { font-size: 0.85rem; color: var(--steel-dark); font-weight: 700; }
.shop-actions-links { display: flex; align-items: center; gap: 16px; }
/* Shop: tabella catalogo */
.shop-table-wrap { overflow-x: auto; border: 1px solid var(--line-dark); border-radius: 14px; }
.shop-table { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
.shop-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--steel-dark); padding: 12px 14px; border-bottom: 1px solid var(--line-dark); white-space: nowrap; }
.shop-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: 0.9rem; color: var(--ink); }
.shop-table tr:last-child td { border-bottom: none; }
.shop-td-name strong { display: block; }
.shop-desc { display: block; font-size: 0.78rem; color: var(--steel-dark); margin-top: 2px; max-width: 320px; }
.shop-td-price { white-space: nowrap; font-weight: 700; }
.shop-qty { display: flex; align-items: center; gap: 8px; }
.shop-qty input { width: 62px; padding: 7px 8px; border: 1px solid var(--line-dark); border-radius: 8px; font-family: inherit; font-size: 0.9rem; text-align: center; }
.shop-vat-note { font-size: 0.78rem; color: var(--steel-dark); margin: 12px 2px 0; }
/* ROI: tutto centrato */
.roi-hero { text-align: center; }
.roi-hero .page-hero-inner { max-width: 760px; margin: 0 auto; }
.roi-hero p { max-width: 640px; margin-left: auto; margin-right: auto; }
.roi-hero-iva { font-size: 0.9rem; color: var(--steel-dark); }
.roi-config { text-align: center; }
.roi-step-title { justify-content: center; }
.roi-field { align-items: center; }
.roi-field input { text-align: center; }
