* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --tiffany:      #81D8D0;
  --tiffany-dark: #2aa39b;
  --tiffany-light:#e8f8f7;
  --tiffany-mid:  #b2e8e4;
  --text:         #1a202c;
  --muted:        #718096;
  --bg:           #f7fafa;
  --white:        #ffffff;
  --gradient-main:    linear-gradient(135deg, #1a8f88 0%, #2aa39b 35%, #81D8D0 75%, #a8ede9 100%);
  --gradient-tiffany: linear-gradient(135deg, #2aa39b, #81D8D0);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tiffany-light);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 1px;
  color: var(--tiffany-dark); text-decoration: none;
}
.nav-logo span { color: var(--tiffany); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-weight: 600; font-size: 0.88rem;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover:not(.nav-cta),
.nav-links a.active:not(.nav-cta) { color: var(--tiffany-dark); background: var(--tiffany-light); }
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  border-radius: 8px; padding: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--tiffany-light); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--tiffany-dark); border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tiffany-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99;
  flex-direction: column;
  padding: 12px 16px 20px;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  text-decoration: none; color: var(--text);
  font-weight: 600; font-size: 1rem;
  padding: 13px 16px; border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover { background: var(--tiffany-light); color: var(--tiffany-dark); }
.mobile-menu .mob-cta {
  background: var(--gradient-tiffany);
  color: white !important; border-radius: 50px;
  text-align: center; margin-top: 8px;
  padding: 14px 16px;
}
.mobile-menu .mob-cta:hover { opacity: 0.9; }

.nav-links .nav-cta {
  background: var(--gradient-tiffany);
  color: white;
  border-radius: 24px;
  padding: 9px 20px;
}
.nav-links .nav-cta:hover { opacity: 0.9; }

/* ── HOME ── */
#home { display: flex; flex-direction: column; }

/* Hero split */
.hero {
  background: var(--gradient-main);
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  padding: 60px 48px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left {
  flex: 1; max-width: 540px; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: white; margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.88);
  line-height: 1.65; margin-bottom: 36px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--tiffany-dark);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.98rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: white;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: background 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); }

/* Hero right — phone mockup */
.hero-right {
  flex: 1.1; max-width: 600px;
  display: flex; justify-content: center; align-items: center;
  z-index: 1; position: relative;
}
.phone-mockup {
  width: 220px;
  background: white;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.2);
  position: relative;
}
.phone-notch {
  width: 60px; height: 8px;
  background: #e2e8f0; border-radius: 4px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: var(--tiffany-light);
  border-radius: 22px;
  padding: 14px;
  min-height: 320px;
}
.phone-header {
  background: var(--gradient-tiffany);
  border-radius: 14px; padding: 12px;
  text-align: center; color: white;
  font-weight: 800; font-size: 1rem;
  margin-bottom: 12px; letter-spacing: 1px;
}
.phone-item {
  background: white; border-radius: 10px;
  padding: 10px 12px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.phone-item .p-icon { font-size: 1.3rem; }
.phone-item .p-name { font-size: 0.72rem; font-weight: 600; color: var(--text); }
.phone-item .p-price { font-size: 0.8rem; font-weight: 800; color: var(--tiffany-dark); margin-left: auto; }
.phone-confirm {
  background: var(--gradient-tiffany);
  border-radius: 10px; padding: 11px;
  text-align: center; color: white;
  font-weight: 700; font-size: 0.8rem;
  margin-top: 10px;
}
.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.28));
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Features */
.features {
  padding: 64px 48px;
  background: var(--white);
}
.features-title { text-align: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.features-sub   { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 40px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.feature-card {
  background: var(--tiffany-light);
  border: 1px solid var(--tiffany-mid);
  border-radius: 16px; padding: 28px 20px; text-align: center;
}
.feature-icon  { font-size: 2.2rem; margin-bottom: 12px; }
.feature-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--tiffany-dark); }
.feature-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* Prezzi */
.services-preview { padding: 64px 48px; background: var(--bg); }
.section-title    { text-align: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.section-sub      { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px; max-width: 1100px; margin: 0 auto 32px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--tiffany-mid);
  border-radius: 14px; padding: 20px 14px; text-align: center;
}
.price-card .icon  { font-size: 1.8rem; margin-bottom: 8px; }
.price-card .name  { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.price-card .price { font-size: 1.2rem; font-weight: 800; color: var(--tiffany-dark); }
.center-btn { text-align: center; }
.btn-tiffany {
  display: inline-block;
  background: var(--gradient-tiffany);
  color: white; padding: 14px 32px;
  border-radius: 50px; font-weight: 800; font-size: 0.98rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(42,163,155,0.3);
}
.btn-tiffany { transition: transform 0.2s, opacity 0.2s; }
.btn-tiffany:hover { transform: translateY(-2px); opacity: 0.92; }

/* ── PROBLEMA / SOLUZIONE ── */
#problema-soluzione {
  background: var(--gradient-main);
  padding: 80px 48px;
}
.ps-wrapper {
  max-width: 960px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ps-block {
  border-radius: 20px;
  padding: 40px 36px;
}
.ps-block.problem {
  background: #fdf4f4;
  border: 2px solid #f8d7d7;
}
.ps-block.solution {
  background: var(--tiffany-light);
  border: 2px solid var(--tiffany-mid);
}
.ps-label {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 18px;
}
.ps-block.problem .ps-label  { background: #fde8e8; color: #c53030; }
.ps-block.solution .ps-label { background: var(--tiffany-mid); color: var(--tiffany-dark); }
.ps-block h3 {
  font-size: 1.35rem; font-weight: 800;
  line-height: 1.25; margin-bottom: 16px;
}
.ps-block.problem  h3 { color: #c53030; }
.ps-block.solution h3 { color: var(--tiffany-dark); }
.ps-block p {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7;
}
.ps-img {
  width: 100%; border-radius: 14px;
  margin-top: 24px;
  object-fit: cover; max-height: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
/* ── COME FUNZIONA ── */
#come-funziona {
  background: var(--white);
  padding: 80px 48px;
}
.cf-wrapper { max-width: 1100px; margin: 0 auto; }
.steps-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px; position: relative;
}
.step-how {
  text-align: center; padding: 32px 16px;
  position: relative;
}
.step-how:not(:last-child)::after {
  content: '→';
  position: absolute; right: -10px; top: 50px;
  font-size: 1.4rem; color: var(--tiffany-mid);
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient-tiffany);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: white;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(42,163,155,0.3);
}
.step-how h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-how p  { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.step-how .s-icon { font-size: 2rem; margin-bottom: 10px; }

/* ── ORDINI ── */
#ordini {
  background: var(--gradient-main);
  padding: 64px 16px 80px;
}
#ordini .section-header { text-align: center; margin-bottom: 28px; }
#ordini .section-header h2 { font-size: 1.7rem; font-weight: 800; color: white; margin-bottom: 6px; }
#ordini .section-header p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
#ordini .step-dot { background: rgba(255,255,255,0.25); color: white; }
#ordini .step-dot.active { background: white; color: var(--tiffany-dark); }
#ordini .step-line { background: rgba(255,255,255,0.3); }
#ordini .step-label { color: rgba(255,255,255,0.7); }
#ordini .step-label.active { color: white; }

.steps {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; padding: 0 16px 8px;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  background: #cbd5e0; color: #718096; transition: background 0.3s, color 0.3s;
}
.step-dot.active { background: var(--tiffany); color: white; }
.step-dot.done   { background: #10b981; color: white; }
.step-line {
  flex: 1; max-width: 60px; height: 2px;
  background: #cbd5e0; border-radius: 2px; transition: background 0.3s;
}
.step-line.done { background: #10b981; }
.step-labels {
  display: flex; justify-content: center; gap: 4px; padding-bottom: 20px;
}
.step-label {
  font-size: 0.72rem; color: var(--muted); text-align: center;
  flex: 1; max-width: 120px;
}
.step-label.active { color: var(--tiffany-dark); font-weight: 600; }

.form-container { max-width: 540px; margin: 0 auto; }

.card {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px; margin-bottom: 16px;
}
.card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; color: var(--tiffany-dark); }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-card {
  border: 2px solid #e2e8f0; border-radius: 12px;
  padding: 16px 12px; text-align: center;
  transition: border-color 0.2s, background 0.2s; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.service-card.in-cart { border-color: var(--tiffany); background: var(--tiffany-light); }
.service-card.in-cart::after {
  content: '✓'; position: absolute; top: 8px; right: 10px;
  color: var(--tiffany-dark); font-weight: 700; font-size: 0.9rem;
}
.service-icon  { font-size: 2rem; }
.service-name  { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.service-price { font-size: 1.1rem; font-weight: 700; color: var(--tiffany-dark); }
.add-btn {
  margin-top: 8px; width: 100%;
  background: var(--tiffany-dark); color: white;
  border: none; border-radius: 8px; padding: 7px 10px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.add-btn:hover { background: #1a8f88; }
.qty-controls { margin-top: 8px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--tiffany-dark); background: white;
  color: var(--tiffany-dark); font-size: 1.1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.qty-btn:hover { background: var(--tiffany-dark); color: white; }
.qty-val { font-size: 1.05rem; font-weight: 700; color: var(--tiffany-dark); min-width: 20px; text-align: center; }
/* Cart box */
.cart-box {
  background: white; border-radius: 14px; padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-bottom: 0;
}
.cart-title { font-size: 1rem; font-weight: 700; color: var(--tiffany-dark); margin-bottom: 12px; }
.cart-item  { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.88rem; color: var(--text); }
.cart-divider { border: none; border-top: 1px solid #e2e8f0; margin: 10px 0; }
.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: #718096; padding: 3px 0; }
.cart-discount-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: #10b981; font-weight: 600; padding: 3px 0; }
.cart-total-final  { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 800; color: var(--tiffany-dark); padding: 8px 0 0; }
.promo-hint { text-align: center; font-size: 0.78rem; color: #f59e0b; background: #fffbeb; border-radius: 8px; padding: 7px 10px; margin-top: 10px; font-weight: 600; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: #4a5568; margin-bottom: 6px; }
.field input {
  width: 100%; padding: 12px 14px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.95rem; transition: border-color 0.2s;
  outline: none; background: #fafafa;
}
.field input:focus { border-color: var(--tiffany); background: white; }
.field input.invalid { border-color: #ef4444 !important; background: #fff8f8; }
.field input.valid   { border-color: #10b981 !important; background: #f0fdf9; }
.field-hint { font-size: 0.75rem; color: #a0aec0; margin-top: 4px; }
.error-msg { font-size: 0.78rem; color: #ef4444; margin-top: 4px; display: none; }
.error-msg.show { display: block; }
.address-row { display: flex; gap: 8px; }
.address-row .addr-via { flex: 1 1 auto; }
.address-row .addr-civico { flex: 0 0 80px; }

.slot-label { font-size: 0.85rem; font-weight: 600; color: #4a5568; margin-bottom: 10px; }
.slot-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 18px; }
.slot-btn {
  border: 2px solid #e2e8f0; border-radius: 10px;
  padding: 10px 6px; cursor: pointer; text-align: center;
  background: #fafafa; transition: border-color 0.2s, background 0.2s;
}
.slot-btn:hover    { border-color: var(--tiffany-mid); background: var(--tiffany-light); }
.slot-btn.selected { border-color: var(--tiffany); background: var(--tiffany-light); }
.slot-time { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.slot-desc { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

.divider { border: none; border-top: 1px solid #e2e8f0; margin: 18px 0; }

.btn-row { display: flex; gap: 10px; margin-top: 8px; }

.privacy-check-wrap {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--tiffany-light);
  border: 2px solid var(--tiffany-mid);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.privacy-check-wrap:has(#privacyCheck:checked) {
  border-color: var(--tiffany-dark);
}
.privacy-check-wrap.error-border { border-color: #ef4444; background: #fff5f5; }
.privacy-check-wrap input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--tiffany-dark);
  margin-top: 2px; cursor: pointer;
}
.privacy-check-wrap label {
  font-size: 0.88rem; color: #4a5568; line-height: 1.5; cursor: pointer;
}
.privacy-check-wrap label a {
  color: var(--tiffany-dark); font-weight: 600; text-decoration: underline;
}
.privacy-check-err {
  font-size: 0.78rem; color: #ef4444;
  margin-bottom: 10px; display: none; padding-left: 4px;
}
.privacy-check-err.show { display: block; }
.btn {
  flex: 1; padding: 14px; border-radius: 12px; border: none;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: opacity 0.2s, transform 0.2s;
}
.btn-primary {
  background: var(--gradient-tiffany);
  color: white;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:disabled {
  opacity: 0.75; cursor: not-allowed; transform: none;
  background: var(--gradient-tiffany);
}
.btn-secondary { background: #e2e8f0; color: #4a5568; }
.btn-secondary:hover { background: #cbd5e0; }

@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid #f0f4f8; font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-key  { color: var(--muted); font-weight: 500; }
.summary-val  { font-weight: 600; text-align: right; max-width: 60%; }
.summary-price{ font-size: 1.3rem; font-weight: 700; color: var(--tiffany-dark); text-align: right; }

.success-screen { text-align: center; padding: 16px 0; }
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
  animation: pop 0.4s ease-out;
}
@keyframes pop {
  0%   { transform: scale(0.6); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.success-sub   { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: white;
  padding: 12px 24px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; margin-top: 20px; transition: opacity 0.2s;
}
.whatsapp-btn:hover { opacity: 0.9; }
.new-order-btn {
  display: block; margin-top: 12px;
  background: none; border: none;
  color: var(--tiffany-dark); font-size: 0.9rem;
  font-weight: 600; cursor: pointer; text-decoration: underline;
}

.step-panel { display: none; }
.step-panel.active { display: block; }

/* ── CHI SIAMO (overlay) ── */
.about-wrapper { max-width: 860px; margin: 0 auto; }
.about-hero {
  background: var(--gradient-tiffany);
  border-radius: 24px; padding: 56px 40px;
  color: white; text-align: center; margin-bottom: 40px;
}
.about-hero h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.about-hero p  { font-size: 1rem; opacity: 0.92; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px; margin-bottom: 40px;
}
.value-card {
  background: var(--tiffany-light);
  border: 1px solid var(--tiffany-mid);
  border-radius: 16px; padding: 28px 22px;
}
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3    { font-size: 1rem; font-weight: 700; color: var(--tiffany-dark); margin-bottom: 8px; }
.value-card p     { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.contact-strip {
  background: var(--bg); border: 1px solid var(--tiffany-mid);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.contact-strip h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.contact-strip p  { font-size: 0.88rem; color: var(--muted); }
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.contact-item span:first-child { font-size: 1.1rem; }

/* ── LUOGHI RAGGIUNTI ── */
.luoghi-wrapper { max-width: 860px; margin: 0 auto; }
.luoghi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 36px 0 24px;
}
.luogo-card {
  background: var(--white);
  border: 2px solid var(--tiffany-mid);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.luogo-card:hover {
  border-color: var(--tiffany-dark);
  background: var(--tiffany-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42,163,155,0.15);
}
.luogo-pin { font-size: 1.1rem; }
#luoghi .section-title { color: white; }
#luoghi .section-sub   { color: rgba(255,255,255,0.8); }
.luoghi-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ── PRIVACY MODAL ── */
.privacy-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.privacy-overlay.open { display: flex; }
.privacy-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 760px; width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: modalIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.privacy-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--tiffany-light); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.1rem; color: var(--tiffany-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.privacy-modal-close:hover { background: var(--tiffany-mid); }
.privacy-wrapper h2 {
  font-size: 1.8rem; font-weight: 900;
  color: var(--tiffany-dark); margin-bottom: 8px;
}
.privacy-wrapper .privacy-sub {
  color: var(--muted); font-size: 0.9rem; margin-bottom: 40px;
}
.privacy-block { margin-bottom: 32px; }
.privacy-block h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--tiffany-light);
}
.privacy-block p, .privacy-block li {
  font-size: 0.92rem; color: #4a5568; line-height: 1.75;
}
.privacy-block ul { padding-left: 20px; margin-top: 6px; }
.privacy-block li { margin-bottom: 4px; }
.privacy-highlight {
  background: var(--tiffany-light);
  border-left: 4px solid var(--tiffany-dark);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px; margin-top: 10px;
  font-size: 0.9rem; color: var(--tiffany-dark);
}
/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { color: white; font-size: 0.95rem; }
.cookie-text p {
  font-size: 0.82rem; color: #a0aec0;
  margin-top: 4px; line-height: 1.5;
}
.cookie-text a { color: var(--tiffany); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--gradient-tiffany);
  color: white; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.88; }
.cookie-btn-decline {
  background: transparent;
  color: #a0aec0; border: 1px solid #4a5568; cursor: pointer;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: #a0aec0; color: white; }
@media (max-width: 480px) {
  #cookie-banner { padding: 16px 20px; }
  .cookie-btns { width: 100%; justify-content: flex-end; }
}

/* ── WHATSAPP FLOTTANTE ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 500;
  display: flex; align-items: center; gap: 0;
  transition: gap 0.3s cubic-bezier(0.16,1,0.3,1);
}
.wa-float:hover { gap: 10px; }
.wa-float-label {
  background: #1a1a1a; color: white;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 50px;
  white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.wa-float:hover .wa-float-label {
  opacity: 1; transform: translateX(0);
}
.wa-float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-float-btn::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float.lifted { bottom: 100px; }
@media (max-width: 900px) {
  /* Sempre sopra la barra carrello (62px) */
  .wa-float { bottom: 78px; right: 16px; }
  .wa-float.lifted { bottom: 78px; }
}
@media (max-width: 480px) {
  .wa-float-label { display: none; }
  .wa-float-btn { width: 52px; height: 52px; }
}

/* ── FOOTER ── */
footer {
  background: var(--tiffany-dark);
  color: rgba(255,255,255,0.85);
  text-align: center; padding: 24px;
  font-size: 0.85rem;
}
footer strong { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Navbar */
  nav { padding: 0 16px; height: 56px; }
  .mobile-menu { top: 56px; }
  .nav-links a:not(.nav-cta) { font-size: 0.78rem; padding: 6px 8px; }
  .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
  .hamburger { display: flex; }

  /* Hero — colonna su tablet, immagine al centro */
  .hero {
    flex-direction: column; padding: 40px 24px 48px;
    text-align: center; min-height: auto; gap: 24px;
  }
  .hero-left { max-width: 100%; min-width: 0; }
  .hero p { margin-left: auto; margin-right: auto; max-width: 480px; }
  .hero-btns { justify-content: center; }
  .hero-right {
    display: flex; justify-content: center;
    width: 100%; max-width: 100%;
  }
  .hero-img {
    width: 100%; max-width: 500px;
    border-radius: 12px;
  }

  /* Sezioni generali */
  .features, .services-preview, #come-funziona, #chi-siamo { padding: 48px 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Come funziona */
  .steps-how { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .step-how { padding: 24px 12px; }
  .step-how:not(:last-child)::after { display: none; }
  .step-num { width: 48px; height: 48px; font-size: 1.1rem; }

  /* Servizi */
  .price-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .price-card { padding: 16px 10px; }

  /* Problema/Soluzione */
  .ps-wrapper { grid-template-columns: 1fr; gap: 24px; }
  #problema-soluzione { padding: 56px 20px; }
  .ps-block { padding: 28px 20px; }
  .ps-img { max-height: 180px; }

  /* Luoghi */
  .luoghi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .luogo-card { padding: 12px 14px; font-size: 0.9rem; }

  /* Contatti */
  .contact-strip { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }
  .contact-info { width: 100%; }

  /* Cookie banner */
  #cookie-banner { padding: 14px 16px; flex-direction: column; gap: 12px; }
  .cookie-text { min-width: 0; width: 100%; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }

  /* Privacy modal */
  .privacy-overlay { padding: 12px; }
  .privacy-modal { padding: 28px 20px; max-height: 90vh; }

  /* Form — tablet */
  input, select, textarea { font-size: 16px !important; }
  .form-container { max-width: 100%; }
  .service-card { padding: 14px 10px; }
  .add-btn { min-height: 42px; padding: 10px; }
  .qty-btn { width: 34px; height: 34px; font-size: 1.15rem; }
  .slot-btn { min-height: 58px; padding: 12px 6px; }
  .slot-time { font-size: 0.82rem; }
  .step-labels { display: none; }
  .steps { padding-bottom: 10px; }
  .cart-box { padding: 16px; }
  .promo-popup { padding: 34px 28px 30px; }
  .promo-pct { font-size: 3.8rem; }

  /* Spazio per la sticky bar fissa */
  body { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  /* Navbar */
  nav { height: 52px; padding: 0 12px; }
  .mobile-menu { top: 52px; }
  .nav-logo { font-size: 1.3rem; }
  .nav-links a.hide-mobile { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 0.8rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Come funziona */
  .steps-how { grid-template-columns: 1fr; gap: 16px; }
  .step-how { padding: 20px 12px; }
  .step-how h3 { font-size: 0.95rem; }
  .step-how p { font-size: 0.82rem; }

  /* Servizi */
  .price-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .price-card { padding: 12px 8px; border-radius: 10px; }
  .price-card .icon { font-size: 1.6rem; }
  .price-card .name { font-size: 0.75rem; }
  .price-card .price { font-size: 1rem; }

  /* Form */
  .card { padding: 18px; }
  .field input { padding: 10px 12px; font-size: 16px !important; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service-card { padding: 10px 8px; border-radius: 10px; }
  .service-icon { font-size: 1.7rem; }
  .service-name { font-size: 0.78rem; }
  .service-price { font-size: 0.95rem; }
  .add-btn { font-size: 0.75rem; padding: 8px 6px; min-height: 36px; }
  .qty-btn { width: 30px; height: 30px; font-size: 1rem; }
  .qty-controls { gap: 6px; }
  .slot-grid { gap: 6px; }
  .slot-btn { padding: 10px 4px; min-height: 52px; }
  .slot-time { font-size: 0.78rem; }
  .slot-desc { font-size: 0.68rem; }
  .step-labels { display: none; }
  .steps { padding-bottom: 10px; }
  .summary-key { font-size: 0.82rem; }
  .summary-val { font-size: 0.82rem; max-width: 56%; }
  .summary-price { font-size: 1.1rem; }
  .cart-box { padding: 14px 14px; }
  .promo-popup { padding: 28px 18px 24px; }
  .promo-pct { font-size: 3rem; }
  .promo-label { font-size: 1.1rem; }
  .promo-sub { font-size: 0.82rem; margin-bottom: 20px; }
  .promo-cta { padding: 13px; font-size: 0.9rem; }

  /* Luoghi */
  .luoghi-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .luogo-card { padding: 10px; font-size: 0.82rem; }

  /* Contatti */
  .contact-strip { padding: 16px 14px; }
  .contact-item { font-size: 0.85rem; }

  /* Footer */
  footer { padding: 20px 16px; font-size: 0.78rem; line-height: 2; }

  /* Problema/Soluzione */
  #problema-soluzione { padding: 48px 16px; }
  .ps-block { padding: 22px 16px; }
}

@media (max-width: 360px) {
  .card { padding: 12px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-modal { padding: 20px 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: row; text-align: left; gap: 10px; padding: 12px; }
  .service-icon { font-size: 1.5rem; flex-shrink: 0; }
  .service-name { font-size: 0.82rem; }
  .service-price { font-size: 0.95rem; }
  .add-btn { font-size: 0.78rem; white-space: nowrap; }
}
/* ── SERVIZI AZIENDE PAGE ── */
.sa-page {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: var(--bg);
  overflow-y: auto;
  animation: saIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
.sa-page.open { display: block; }
@keyframes saIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.sa-topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tiffany-light);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sa-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  color: var(--tiffany-dark); font-weight: 700; font-size: 0.9rem;
  padding: 8px 0; transition: opacity 0.2s;
}
.sa-back:hover { opacity: 0.7; }
.sa-topbar-logo {
  font-size: 1.4rem; font-weight: 800; letter-spacing: 1px;
  color: var(--tiffany-dark);
}
.sa-topbar-logo span { color: var(--tiffany); }
.sa-topbar-cta {
  background: var(--gradient-tiffany); color: white;
  border: none; cursor: pointer; padding: 9px 20px;
  border-radius: 24px; font-weight: 700; font-size: 0.88rem;
  text-decoration: none; transition: opacity 0.2s;
}
.sa-topbar-cta:hover { opacity: 0.88; }

.sa-hero {
  background: var(--gradient-main);
  padding: 72px 48px 80px;
  text-align: center; color: white;
}
.sa-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}
.sa-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 16px;
}
.sa-hero p {
  font-size: 1rem; opacity: 0.88; line-height: 1.7;
  max-width: 620px; margin: 0 auto 32px;
}
.sa-hero-cards {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 8px;
}
.sa-hero-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px; padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; color: white;
}
.sa-hero-card:hover { background: rgba(255,255,255,0.25); }
.sa-hero-card .card-icon { font-size: 1.6rem; }
.sa-hero-card strong { display: block; font-size: 0.95rem; font-weight: 700; }
.sa-hero-card span   { font-size: 0.78rem; opacity: 0.8; }

.sa-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.sa-section + .sa-section { border-top: 1px solid var(--tiffany-light); }
.sa-section.reverse { direction: rtl; }
.sa-section.reverse > * { direction: ltr; }

.sa-text {
  padding: 64px 48px 64px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.sa-section.reverse .sa-text { padding: 64px 0 64px 48px; }
.sa-tag {
  display: inline-block;
  background: var(--tiffany-light);
  color: var(--tiffany-dark);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--tiffany-mid);
  width: fit-content;
}
.sa-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; line-height: 1.2;
  color: var(--text); margin-bottom: 16px;
}
.sa-text h2 em { color: var(--tiffany-dark); font-style: normal; }
.sa-text p {
  font-size: 0.95rem; color: #4a5568;
  line-height: 1.8; margin-bottom: 12px;
}
.sa-list {
  list-style: none; margin: 16px 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.sa-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text);
}
.sa-list li::before {
  content: '✓';
  color: var(--tiffany-dark); font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.sa-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-tiffany); color: white;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.92rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(42,163,155,0.3);
  width: fit-content; transition: opacity 0.2s, transform 0.2s;
}
.sa-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.sa-img {
  display: flex; align-items: center; justify-content: center;
  background: var(--tiffany-light);
  overflow: hidden;
}
.sa-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.sa-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--tiffany-dark);
  background: linear-gradient(135deg, var(--tiffany-light), var(--tiffany-mid));
  min-height: 480px;
}
.sa-img-placeholder .ph-icon { font-size: 3rem; opacity: 0.5; }
.sa-img-placeholder p { font-size: 0.82rem; opacity: 0.6; font-weight: 600; }

.sa-divider {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px;
}
.sa-divider hr {
  border: none; border-top: 2px solid var(--tiffany-light);
}

.sa-footer {
  background: var(--gradient-main);
  padding: 56px 48px;
  text-align: center; color: white; margin-top: 40px;
}
.sa-footer h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.sa-footer p  { font-size: 0.95rem; opacity: 0.88; margin-bottom: 28px; }

/* ── MODULO CONTATTO AZIENDE ── */
.sa-contact {
  background: var(--white);
  padding: 80px 48px;
  border-top: 1px solid var(--tiffany-light);
}
.sa-contact-inner { max-width: 860px; margin: 0 auto; }
.sa-contact-header { text-align: center; margin-bottom: 48px; }
.sa-contact-header h2 { font-size: 1.8rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.sa-contact-header p  { color: var(--muted); font-size: 0.95rem; }

.sa-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sa-form-grid .full { grid-column: 1 / -1; }
.sa-field { display: flex; flex-direction: column; gap: 6px; }
.sa-field label {
  font-size: 0.85rem; font-weight: 600; color: #4a5568;
}
.sa-field input,
.sa-field select,
.sa-field textarea {
  padding: 12px 14px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.95rem; font-family: inherit;
  background: #fafafa; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.sa-field input:focus,
.sa-field select:focus,
.sa-field textarea:focus { border-color: var(--tiffany); background: white; }
.sa-field input.invalid,
.sa-field select.invalid,
.sa-field textarea.invalid { border-color: #ef4444 !important; background: #fff8f8; }
.sa-field input.valid,
.sa-field select.valid,
.sa-field textarea.valid   { border-color: #10b981 !important; background: #f0fdf9; }
.sa-field textarea { resize: vertical; min-height: 110px; }
.sa-field .sa-err {
  font-size: 0.78rem; color: #ef4444; display: none;
}
.sa-field .sa-err.show { display: block; }

.sa-radio-group {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.sa-radio-label {
  display: flex; align-items: center; gap: 8px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  padding: 10px 18px; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  flex: 1; min-width: 160px;
}
.sa-radio-label:has(input:checked) {
  border-color: var(--tiffany); background: var(--tiffany-light); color: var(--tiffany-dark);
}
.sa-radio-label input { accent-color: var(--tiffany-dark); }

.sa-submit-row { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sa-submit-btn {
  background: var(--gradient-tiffany); color: white;
  border: none; cursor: pointer; padding: 14px 36px;
  border-radius: 50px; font-weight: 800; font-size: 0.98rem;
  box-shadow: 0 4px 16px rgba(42,163,155,0.3);
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.sa-submit-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-2px); }
.sa-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.sa-form-note { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.sa-success {
  display: none; text-align: center; padding: 48px 20px;
}
.sa-success.show { display: block; }
.sa-success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
  animation: pop 0.4s ease-out;
}
.sa-success h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.sa-success p  { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 900px) {
  .sa-topbar { padding: 0 16px; height: 56px; }
  .sa-topbar-logo { font-size: 1.2rem; }
  .sa-hero { padding: 48px 20px 56px; }
  .sa-section { grid-template-columns: 1fr; padding: 0; }
  .sa-section.reverse { direction: ltr; }
  .sa-img { order: -1; min-height: 260px; }
  .sa-img-placeholder { min-height: 260px; }
  .sa-text { padding: 40px 20px; }
  .sa-section.reverse .sa-text { padding: 40px 20px; }
  .sa-footer { padding: 48px 20px; }
  .sa-divider { padding: 0 20px; }
  .sa-contact { padding: 56px 20px; }
  .sa-form-grid { grid-template-columns: 1fr; }
  .sa-form-grid .full { grid-column: 1; }
}
@media (max-width: 480px) {
  .sa-hero-cards { flex-direction: column; align-items: stretch; }
  .sa-hero-card { justify-content: center; }
  .sa-radio-group { flex-direction: column; }
}
/* ── STICKY CART BAR (mobile) ── */
.cart-sticky {
  display: flex; /* sempre visibile su mobile — nascosta su desktop sotto */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--tiffany-dark); color: white;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  align-items: center; justify-content: space-between; gap: 12px;
  min-height: 62px;
}
@media (min-width: 901px) {
  .cart-sticky { display: none; }
  body { padding-bottom: 0 !important; }
}
.cart-sticky-info    { flex: 1; min-width: 0; overflow: hidden; }
.cart-sticky-empty   { font-size: 0.88rem; opacity: 0.7; }
.cart-sticky-count   { font-size: 0.72rem; opacity: 0.8; }
.cart-sticky-total   { font-size: 1.05rem; font-weight: 800; white-space: nowrap; }
.cart-sticky-discount{ font-size: 0.7rem; color: #a7f3d0; margin-top: 1px; }
.cart-sticky-btn {
  background: white; color: var(--tiffany-dark);
  border: none; border-radius: 10px; padding: 10px 18px;
  font-weight: 800; font-size: 0.9rem; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: opacity 0.2s;
}
.cart-sticky-btn:disabled          { opacity: 0.4; cursor: not-allowed; }
.cart-sticky-btn:not(:disabled):active { opacity: 0.85; }
/* Estende il colore tiffany sotto la barra per coprire il gap
   che appare su mobile quando la chrome del browser si nasconde durante lo scroll */
.cart-sticky::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 120px;
  background: var(--tiffany-dark);
  pointer-events: none;
}

/* ── PROMO POPUP ── */
.promo-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.promo-overlay.show { opacity: 1; pointer-events: all; }
.promo-popup {
  background: linear-gradient(135deg, #1a8f88 0%, #2aa39b 50%, #81D8D0 100%);
  border-radius: 20px; padding: 40px 36px 36px;
  max-width: 400px; width: 100%; text-align: center; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.promo-overlay.show .promo-popup { transform: translateY(0) scale(1); }
.promo-close {
  position: absolute; top: 14px; right: 16px;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%; font-size: 1rem;
  color: white; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.promo-close:hover { background: rgba(255,255,255,0.35); }
.promo-tag {
  display: inline-block; background: rgba(255,255,255,0.2);
  color: white; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.promo-pct {
  font-size: 4.5rem; font-weight: 900; color: white; line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,0.15); margin-bottom: 6px;
}
.promo-label { font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 6px; }
.promo-sub   { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.5; }
.promo-cta {
  display: block; width: 100%;
  background: white; color: var(--tiffany-dark);
  border: none; border-radius: 12px; padding: 14px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.promo-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.promo-dismiss {
  display: block; margin-top: 12px; font-size: 0.78rem;
  color: rgba(255,255,255,0.7); cursor: pointer; text-decoration: underline;
  background: none; border: none;
}

/* ── RECENSIONI GOOGLE ── */
.reviews-section {
  padding: 56px 32px;
}
.reviews-inner {
  max-width: 960px; margin: 0 auto;
}
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.reviews-title-row {
  display: flex; align-items: center; gap: 10px;
}
.reviews-title {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
}
.reviews-summary {
  display: flex; align-items: center; gap: 10px;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 50px; padding: 8px 18px;
}
.reviews-score {
  font-size: 1.5rem; font-weight: 900; color: var(--text);
}
.reviews-stars { font-size: 1.1rem; color: #f59e0b; }
.reviews-count { font-size: 0.82rem; color: var(--muted); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 28px;
}

.review-card {
  background: var(--bg); border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

.review-top {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-tiffany);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: white;
  flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--text); line-height: 1.3; }
.review-time   { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.review-stars  { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.review-text   {
  font-size: 0.85rem; color: #4b5563; line-height: 1.65;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Skeleton loader */
.review-skeleton {
  border-radius: 16px; min-height: 160px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(90deg, #f3f4f6 25%, #e9eaec 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.reviews-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--tiffany-dark);
  border: 2px solid var(--tiffany); border-radius: 50px;
  padding: 12px 28px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.reviews-cta:hover { background: var(--tiffany); color: white; }

@media (max-width: 900px) {
  .reviews-section { padding: 40px 20px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-summary { align-self: flex-start; }
}

/* ── MAPPA DOVE SIAMO ── */
.map-section {
  padding: 56px 32px;
  background: var(--bg);
}
.map-inner {
  max-width: 960px; margin: 0 auto;
}
.map-title {
  font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 6px;
}
.map-sub {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 20px;
}
.map-frame {
  width: 100%; height: 380px; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 900px) {
  .map-section { padding: 40px 20px; }
  .map-frame { height: 300px; }
}
@media (max-width: 480px) {
  .map-frame { height: 240px; }
}

/* ══════════════════════════════════════════════════════════
 * AUTH — Modale login/registrazione
 * Compatibile con Google OAuth, Apple OAuth, email+password
 * ══════════════════════════════════════════════════════════ */

.auth-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.auth-overlay.open { display: flex; }

.auth-box {
  background: white;
  border-radius: 20px;
  max-width: 420px; width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: modalIn 0.3s cubic-bezier(0.16,1,0.3,1);
  max-height: 90vh; overflow-y: auto;
}

.auth-close {
  position: absolute; top: 14px; right: 16px;
  background: var(--tiffany-light); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1rem; color: var(--tiffany-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.auth-close:hover { background: var(--tiffany-mid); }

.auth-logo {
  font-size: 1.4rem; font-weight: 800; letter-spacing: 1px;
  color: var(--tiffany-dark); margin-bottom: 12px;
}
.auth-logo span  { color: var(--tiffany); }
.auth-title      { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.auth-sub        { font-size: 0.83rem; color: var(--muted); margin-bottom: 22px; }

/* Social buttons */
.auth-social-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px 20px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  background: white; font-size: 0.9rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.auth-social-btn:hover     { border-color: var(--tiffany); background: var(--tiffany-light); }
.auth-social-btn:disabled  { opacity: 0.5; cursor: not-allowed; }
.auth-apple-btn            { color: #000; }

/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; color: var(--muted); font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }

/* Form */
.auth-field          { position: relative; margin-bottom: 12px; }
.auth-field input {
  width: 100%; padding: 11px 14px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.92rem; outline: none; background: #fafafa;
  transition: border-color 0.2s;
}
.auth-field input:focus { border-color: var(--tiffany); background: white; }
.auth-pw-wrap input     { padding-right: 44px; }
.auth-pw-toggle {
  position: absolute; right: 12px; top: 13px;
  background: none; border: none; cursor: pointer;
  font-size: 0.9rem; color: var(--muted); padding: 2px;
  line-height: 1;
}
.auth-err {
  display: none; font-size: 0.75rem; color: #ef4444;
  margin-top: 3px; padding-left: 2px;
}

.auth-forgot-link {
  background: none; border: none; cursor: pointer;
  color: var(--tiffany-dark); font-size: 0.8rem; font-weight: 600;
  padding: 0; margin-bottom: 14px; display: block; text-align: right;
}
.auth-submit {
  width: 100%; padding: 13px;
  background: var(--gradient-tiffany); color: white;
  border: none; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  margin-bottom: 14px; transition: opacity 0.2s;
}
.auth-submit:hover    { opacity: 0.9; }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.auth-toggle-row { text-align: center; font-size: 0.83rem; color: var(--muted); }
.auth-toggle-link {
  background: none; border: none; cursor: pointer;
  color: var(--tiffany-dark); font-weight: 700; font-size: 0.83rem;
  margin-left: 4px; text-decoration: underline;
}

.auth-feedback {
  border-radius: 10px; padding: 11px 14px;
  font-size: 0.83rem; line-height: 1.5; margin-top: 12px;
}
.auth-feedback-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.auth-feedback-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.auth-feedback-info    { background: var(--tiffany-light); color: var(--tiffany-dark); border: 1px solid var(--tiffany-mid); }

@media (max-width: 480px) {
  .auth-box { padding: 28px 20px; }
}

/* ── Navbar: login button + user avatar ── */
.nav-login-btn {
  background: none;
  border: 1.5px solid var(--tiffany-mid);
  border-radius: 20px; padding: 6px 16px;
  font-size: 0.83rem; font-weight: 600; color: var(--tiffany-dark);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-login-btn:hover { background: var(--tiffany-light); border-color: var(--tiffany); }

.nav-user            { position: relative; }
.nav-avatar-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient-tiffany); border: none; cursor: pointer;
  font-size: 0.72rem; font-weight: 800; color: white; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
}
.nav-avatar-btn:hover { opacity: 0.88; }

.nav-user-dropdown {
  display: none;
  position: absolute; right: 0; top: calc(100% + 8px);
  background: white; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid #e2e8f0;
  min-width: 180px; padding: 6px 0;
  z-index: 200;
  animation: modalIn 0.2s cubic-bezier(0.16,1,0.3,1);
}
.nav-user-dropdown.open { display: block; }
.nav-user-name {
  font-size: 0.83rem; font-weight: 700; color: var(--text);
  padding: 8px 16px 6px;
  border-bottom: 1px solid #f0f4f8; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 180px;
}
.nav-dropdown-link {
  display: block; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-size: 0.86rem; color: var(--text);
  padding: 9px 16px; font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-link:hover  { background: var(--tiffany-light); }
.nav-dropdown-hr          { border: none; border-top: 1px solid #f0f4f8; margin: 4px 0; }
.nav-dropdown-logout      { color: #ef4444; }
.nav-dropdown-logout:hover{ background: #fef2f2; }

/* ── Mobile menu: auth section ── */
.mob-auth-link {
  display: block; text-decoration: none; color: var(--text);
  font-weight: 600; font-size: 1rem;
  padding: 13px 16px; border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mob-auth-link:hover   { background: var(--tiffany-light); color: var(--tiffany-dark); }
.mob-user-info         { padding: 8px 16px 4px; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.mob-logout-link       { color: #ef4444 !important; }
.mob-logout-link:hover { background: #fef2f2 !important; }

/* ── I miei ordini (sa-page overlay) ── */
.ordini-wrapper  { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }
.ordini-title    { font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.ordini-sub      { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; }

.ordine-card {
  background: white; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 18px 20px; margin-bottom: 14px;
  transition: box-shadow 0.2s;
}
.ordine-card:hover     { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.ordine-header         { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ordine-date           { font-size: 0.8rem; color: var(--muted); }
.ordine-stato          { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.ordine-servizio       { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.ordine-footer         { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.ordine-prezzo         { font-size: 1.05rem; font-weight: 800; color: var(--tiffany-dark); }
.ordine-slot           { font-size: 0.75rem; color: var(--muted); }

.ordine-skeleton {
  height: 100px; border-radius: 16px; margin-bottom: 14px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e9eaec 50%, #f3f4f6 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
}
.ordini-empty {
  text-align: center; color: var(--muted);
  padding: 48px 20px; font-size: 0.95rem; line-height: 1.7;
}
.ordini-empty a        { color: var(--tiffany-dark); font-weight: 700; }
.ordini-new-btn-wrap   { text-align: center; margin-top: 28px; }

@media (max-width: 480px) {
  .ordini-wrapper { padding: 32px 16px 80px; }
}

/* ── Password strength indicator ── */
.auth-strength-wrap {
  margin: -4px 0 12px;
}
.auth-strength-bar {
  height: 4px; border-radius: 4px;
  background: #e2e8f0; overflow: hidden; margin-bottom: 4px;
}
.auth-strength-fill {
  height: 100%; border-radius: 4px;
  width: 0; transition: width 0.3s ease, background 0.3s ease;
}
.auth-strength-label {
  font-size: 0.72rem; font-weight: 600;
  transition: color 0.3s;
}

/* ── Resend confirmation email ── */
.auth-resend-btn {
  display: block; width: 100%;
  background: none; border: 1.5px dashed var(--tiffany-mid);
  border-radius: 10px; padding: 10px 14px;
  font-size: 0.82rem; color: var(--tiffany-dark); font-weight: 600;
  cursor: pointer; text-align: center;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 14px;
}
.auth-resend-btn:hover { background: var(--tiffany-light); border-color: var(--tiffany); }

/* ── Toast notifications ── */
.toast-container {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999; display: flex; flex-direction: column;
  align-items: center; gap: 10px; pointer-events: none;
}
.toast {
  background: #1a202c; color: white;
  padding: 12px 22px; border-radius: 24px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  opacity: 0; transform: translateY(14px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 320px; text-align: center;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast-success { background: #1a202c; }
.toast-error   { background: #dc2626; }
.toast-info    { background: var(--tiffany-dark); }

@media (max-width: 480px) {
  .toast-container { bottom: 16px; }
  .toast { font-size: 0.83rem; padding: 11px 18px; }
}

/* ── Il mio profilo (overlay) ── */
.profilo-wrapper { max-width: 560px; margin: 0 auto; padding: 48px 24px 80px; }

.profilo-field-group {
  margin-bottom: 18px;
}
.profilo-field-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.profilo-field-group input {
  width: 100%; padding: 12px 14px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.92rem; outline: none; background: #fafafa;
  transition: border-color 0.2s;
}
.profilo-field-group input:focus { border-color: var(--tiffany); background: white; }

.profilo-save-btn { margin-top: 8px; margin-bottom: 0; }

.profilo-account-section {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.profilo-account-label {
  font-size: 0.75rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.profilo-account-email {
  font-size: 0.92rem; color: var(--text); font-weight: 600; margin-bottom: 16px;
  word-break: break-all;
}
.profilo-logout-btn {
  background: none; border: 1.5px solid #fca5a5;
  border-radius: 10px; padding: 10px 18px;
  color: #dc2626; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.profilo-logout-btn:hover { background: #fef2f2; }

@media (max-width: 480px) {
  .profilo-wrapper { padding: 32px 16px 80px; }
}
