
:root {
  --red: #DC2626;
  --red-dark: #991B1B;
  --orange: #F97316;
  --orange-light: #FB923C;
  --yellow: #FBBF24;
  --yellow-bright: #FCD34D;
  --cream: #FFFAF3;
  --ink: #1A1A1A;
  --ink-soft: #4B4B4B;
  --line: rgba(0,0,0,0.08);
  --green: #16A34A;
  --green-glow: #22C55E;
  --shadow-sm: 0 2px 8px rgba(220,38,38,0.08);
  --shadow-md: 0 8px 24px rgba(220,38,38,0.12);
  --shadow-lg: 0 16px 40px rgba(220,38,38,0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
  padding-bottom: 100px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(252,211,77,0.10) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(249,115,22,0.07) 0%, transparent 40%),
    radial-gradient(circle, rgba(220,38,38,0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  pointer-events: none;
  z-index: -1;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 70%, #FBBF24 100%);
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(220,38,38,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  box-shadow: inset 0 -3px 0 rgba(220,38,38,0.2);
}

.logo-text {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.logo-text small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 3px;
  letter-spacing: 0.4px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 7px 12px 7px 10px;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.lamps {
  display: flex;
  gap: 4px;
}

.lamp {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-glow);
  box-shadow: 0 0 8px var(--green-glow), 0 0 16px var(--green-glow);
  animation: pulse-lamp 1.6s ease-in-out infinite;
}

.lamp:nth-child(2) { animation-delay: 0.3s; }

.lamp.closed {
  background: var(--red);
  box-shadow: 0 0 8px rgba(220,38,38,0.8), 0 0 16px rgba(220,38,38,0.5);
  animation: pulse-lamp-closed 2.4s ease-in-out infinite;
}

@keyframes pulse-lamp-closed {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.65; }
}

@keyframes pulse-lamp {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.status-text { line-height: 1.1; }
.status-text strong { display: block; font-size: 13px; }
.status-text span { font-size: 10px; opacity: 0.9; font-weight: 500; }

/* ---------- DISCOUNT BANNER ---------- */
.discount-banner {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}

.discount-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(252,211,77,0.15) 50%, transparent 100%);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.discount-inner {
  position: relative;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.discount-flash {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  animation: flash-blink 1s ease-in-out infinite;
}

@keyframes flash-blink {
  0%, 100% { background: var(--yellow); transform: scale(1); }
  50% { background: var(--orange); transform: scale(1.05); }
}

.discount-text {
  font-size: 14px;
  font-weight: 600;
}

.discount-text b {
  color: var(--yellow-bright);
  font-weight: 800;
}

.appointment-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}

.appointment-time::before {
  content: '⏰';
  font-size: 14px;
}

.appt-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-date {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

/* ---------- HERO ---------- */
.hero {
  padding: 44px 16px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(252,211,77,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 100%, rgba(249,115,22,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(220,38,38,0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: orb-float 18s ease-in-out infinite;
}

.hero-orb-1 {
  top: -60px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
}

.hero-orb-2 {
  top: 30px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  animation-delay: -6s;
}

.hero-orb-3 {
  bottom: -40px;
  left: 35%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(28px, -22px) scale(1.06); }
  66% { transform: translate(-18px, 24px) scale(0.94); }
}

.hero > *:not(.hero-orb):not(::before) { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(220,38,38,0.2);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 6px 20px rgba(220,38,38,0.10);
  position: relative;
  z-index: 1;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulse-lamp 1.6s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(30px, 7.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.hero h1 .highlight {
  background: linear-gradient(120deg, var(--red) 0%, var(--orange) 60%, var(--yellow-bright) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(252,211,77,0.4), transparent);
  border-radius: 8px;
  filter: blur(3px);
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 28px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: linear-gradient(180deg, white 0%, rgba(255,250,243,0.95) 100%);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 1px 3px rgba(220,38,38,0.04),
    0 8px 22px rgba(220,38,38,0.10);
  border: 1px solid rgba(220,38,38,0.08);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.stat-card strong {
  display: block;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card span {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  display: block;
  margin-top: 5px;
  letter-spacing: 0.3px;
}

/* Flashing brand button */
.brands-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 30px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 8px 24px rgba(220,38,38,0.4);
  animation: brands-pulse 1.4s ease-in-out infinite;
  transition: transform 0.15s;
}

.brands-cta:active { transform: scale(0.96); }

.brands-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 3px solid var(--yellow);
  opacity: 0;
  animation: ring-pulse 1.4s ease-out infinite;
}

@keyframes brands-pulse {
  0%, 100% {
    box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 8px 24px rgba(220,38,38,0.4), 0 0 0 0 rgba(252,211,77,0.6);
  }
  50% {
    box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 32px rgba(220,38,38,0.55), 0 0 0 14px rgba(252,211,77,0);
  }
}

@keyframes ring-pulse {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

.brands-cta-icon {
  width: 30px;
  height: 30px;
  background: white;
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ---------- SECTIONS ---------- */
section.block {
  padding: 32px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(249,115,22,0.08);
  border-radius: 100px;
}

.section-title {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 700;
  font-size: clamp(26px, 6vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  border-radius: 3px;
  margin: 14px auto 0;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 500;
}

/* ---------- APPLIANCE GRID ---------- */
.appliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 540px) {
  .appliance-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 820px) {
  .appliance-grid { grid-template-columns: repeat(4, 1fr); }
}

.appliance-card {
  background:
    radial-gradient(circle at 50% -20%, rgba(252,211,77,0.18) 0%, transparent 65%),
    white;
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(220,38,38,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 1px 3px rgba(0,0,0,0.04),
    0 6px 16px rgba(220,38,38,0.06);
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}

.appliance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.appliance-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 4px 8px rgba(0,0,0,0.05),
    0 16px 36px rgba(220,38,38,0.18);
  border-color: rgba(249,115,22,0.3);
}

.appliance-card:hover::before { transform: scaleX(1); }
.appliance-card:active { transform: scale(0.97); }

.appliance-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4D1 50%, rgba(252,211,77,0.35) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 6px rgba(220,38,38,0.06);
  overflow: hidden;
}
.appliance-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.appliance-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.appliance-arrow {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ---------- COVERAGE ---------- */
.coverage-block {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1810 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  margin: 0 16px;
  position: relative;
  overflow: hidden;
}

.coverage-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.25) 0%, transparent 60%);
}

.coverage-block .section-head { position: relative; }
.coverage-block .section-title { color: white; }
.coverage-block .section-eyebrow { color: var(--yellow); }
.coverage-block .section-sub { color: rgba(255,255,255,0.7); }

.province-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.province-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  color: white;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.province-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  color: white;
}

.province-chip:active { transform: scale(0.95); }

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(252,211,77,0.06) 0%, transparent 50%),
    white;
  border: 1px solid rgba(220,38,38,0.06);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 1px 3px rgba(0,0,0,0.03),
    0 6px 16px rgba(220,38,38,0.06);
  transition: all 0.25s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 28px rgba(220,38,38,0.12);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 12px rgba(220,38,38,0.3);
}

.why-card h3 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(220,38,38,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.faq-item:hover { border-color: rgba(249,115,22,0.25); }
.faq-item[open] {
  box-shadow: 0 12px 28px rgba(220,38,38,0.12);
  border-color: rgba(249,115,22,0.4);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  background: var(--cream);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- BRAND DETAIL SCREEN ---------- */
.brand-screen {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 100;
  overflow-y: auto;
  animation: slide-in 0.25s ease-out;
}

.brand-screen.active { display: block; }

@keyframes slide-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.brand-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white;
  padding: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.brand-header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.back-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.back-btn:active { transform: scale(0.92); }

.brand-header-title {
  flex: 1;
}

.brand-header-title small {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.brand-header-title strong {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-content {
  padding: 24px 16px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-intro {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.brand-intro h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
}

.brand-intro p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 540px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 820px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}

.brand-tile {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(220,38,38,0.28);
  position: relative;
  overflow: hidden;
}

.brand-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.brand-tile span { position: relative; z-index: 1; }

.brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(220,38,38,0.45);
}

.brand-tile:hover::before { opacity: 1; }

.brand-tile:active { transform: scale(0.96); }

.brand-cta-block {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.2) 0%, transparent 70%);
}

.brand-cta-block > * { position: relative; }

.brand-cta-block h3 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 700;
}

.brand-cta-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-size: 14px;
}

.brand-cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
}

.btn:active { transform: scale(0.96); }

.btn-call {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white;
}

.btn-wa {
  background: #25D366;
  color: white;
}

/* ---------- FLOATING ACTIONS ---------- */
.floating-actions {
  position: fixed;
  bottom: 18px;
  right: 14px;
  display: flex;
  gap: 10px;
  z-index: 90;
  align-items: center;
}

.fab-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 26px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 10px 28px rgba(220,38,38,0.5);
  animation: fab-flash 1.1s ease-in-out infinite;
  white-space: nowrap;
}

.fab-call::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 100px;
  border: 3px solid var(--yellow);
  opacity: 0;
  animation: fab-ring 1.1s ease-out infinite;
  pointer-events: none;
}

.fab-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, transparent 0%, rgba(252,211,77,0.35) 100%);
  opacity: 0;
  animation: fab-glint 1.1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fab-flash {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.3) inset,
      0 10px 28px rgba(220,38,38,0.5),
      0 0 0 0 rgba(252,211,77,0.55);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.3) inset,
      0 14px 36px rgba(220,38,38,0.75),
      0 0 0 16px rgba(252,211,77,0);
  }
}

@keyframes fab-ring {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

@keyframes fab-glint {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.fab-call:active { transform: scale(0.96); animation-play-state: paused; }

.fab-call .fab-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.fab-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 8px 22px rgba(37,211,102,0.45);
  font-size: 22px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.fab-wa:active { transform: scale(0.94); }

.fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 32px 16px 32px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-brand h4 {
  font-family: 'Bricolage Grotesque', serif;
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- HERO IMAGE BANNER ---------- */
.appliance-hero {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 0 18px 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 6px 18px rgba(220,38,38,0.10);
  border: 1px solid rgba(220,38,38,0.06);
  background: var(--cream);
  position: relative;
}

.appliance-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.appliance-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

/* ---------- COMUNI / CITY CALL BUTTONS ---------- */
.comuni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 540px) {
  .comuni-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 720px) {
  .comuni-grid { grid-template-columns: repeat(4, 1fr); }
}

.comune-btn {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  padding: 14px 10px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(220,38,38,0.3);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.comune-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.comune-btn > * { position: relative; z-index: 1; }

.comune-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(220,38,38,0.45);
}

.comune-btn:hover::before { opacity: 1; }
.comune-btn:active { transform: scale(0.96); }

.comune-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.comune-call {
  font-size: 11px;
  opacity: 0.92;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- DETAIL SCREEN EXTRAS ---------- */
.detail-section {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.detail-h3 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-h3::before {
  content: '';
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--red), var(--orange));
  border-radius: 2px;
}

.problem-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.problem-list li {
  padding: 10px 12px 10px 38px;
  background: var(--cream);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  line-height: 1.4;
}

.problem-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 540px) {
  .step-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
}

.step-card .step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 8px;
  font-size: 13px;
}

.step-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: 700;
}

.step-card span {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.3;
}

.detail-note {
  background: linear-gradient(135deg, #FFF8E6 0%, #FFF0D6 100%);
  border-color: rgba(249,115,22,0.2);
}

.detail-note p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.detail-note p strong { color: var(--ink); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Comuni list with search */
.comuni-search-wrap {
  margin: 14px 0 18px;
}
.comuni-search {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.comuni-search:focus {
  border-color: #d63031;
  box-shadow: 0 0 0 4px rgba(214,48,49,0.12);
}
.comuni-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 480px;
  overflow-y: auto;
  padding: 4px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .comuni-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .comuni-list { grid-template-columns: repeat(4, 1fr); }
}
.comuni-list-item {
  display: block;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.25;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  hyphens: auto;
}
.comuni-list-item:hover {
  border-color: #d63031;
  color: #d63031;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(214,48,49,0.12);
}
.comuni-list-item:active {
  transform: scale(0.97);
}
.comuni-list-item.hidden { display: none; }
.comuni-empty {
  text-align: center;
  padding: 24px;
  color: #999;
  font-size: 14px;
}
/* ========== PROMO TICKER (banda scorrevole rosso/viola) ========== */
.promo-ticker {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #DC2626 0%, #9333EA 25%, #DC2626 50%, #9333EA 75%, #DC2626 100%);
  background-size: 200% 100%;
  animation: promo-bg-shift 6s linear infinite;
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-bottom: 2px solid rgba(255,255,255,0.25);
}
@keyframes promo-bg-shift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.promo-track {
  display: inline-flex;
  white-space: nowrap;
  animation: promo-scroll 32s linear infinite;
  will-change: transform;
}
.promo-text {
  display: inline-block;
  padding-right: 0;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  text-shadow:
    0 0 8px rgba(0,0,0,0.5),
    0 2px 4px rgba(0,0,0,0.6),
    0 1px 0 rgba(0,0,0,0.7);
}
@keyframes promo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .promo-text { font-size: 13px; }
  .promo-ticker { padding: 8px 0; }
}
/* Pausa l'animazione al passaggio del dito (accessibilità) */
@media (prefers-reduced-motion: reduce) {
  .promo-track { animation: none; }
  .promo-ticker { animation: none; }
}

/* ========== FLASHING MID BANNER ========== */
.flash-banner-wrap {
  margin: 24px 12px;
  padding: 0;
}
.flash-banner {
  background: #DC2626;
  color: #FFFFFF !important;
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    0 6px 22px rgba(220,38,38,0.55),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: flash-color 1.6s ease-in-out infinite;
  letter-spacing: 0.3px;
  text-shadow:
    0 0 10px rgba(0,0,0,0.4),
    0 2px 4px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.3);
}
.flash-banner strong {
  color: #FFF200;
  text-shadow:
    0 0 12px rgba(255,242,0,0.6),
    0 2px 4px rgba(0,0,0,0.6);
}
.flash-banner .flash-emoji {
  font-size: 22px;
  flex-shrink: 0;
  animation: flash-emoji 1.6s ease-in-out infinite;
}
.flash-banner .flash-text {
  flex: 1;
}
.flash-banner strong {
  font-weight: 800;
}
@keyframes flash-color {
  0%   { background: #DC2626; box-shadow: 0 6px 22px rgba(220,38,38,0.6); }
  33%  { background: #F59E0B; box-shadow: 0 6px 22px rgba(245,158,11,0.6); }
  66%  { background: #9333EA; box-shadow: 0 6px 22px rgba(147,51,234,0.6); }
  100% { background: #DC2626; box-shadow: 0 6px 22px rgba(220,38,38,0.6); }
}
@keyframes flash-emoji {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18) rotate(-4deg); }
}
@media (max-width: 480px) {
  .flash-banner { font-size: 14px; padding: 14px 14px; gap: 8px; }
  .flash-banner .flash-emoji { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .flash-banner, .flash-banner .flash-emoji { animation: none; }
}

/* ========== FLASHING BANNER 2 (Tecnici / Phone CTA) ========== */
.flash-banner-2-wrap {
  display: block;
  margin: 24px 12px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.flash-banner-2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #DC2626 100%);
  background-size: 200% 200%;
  animation: flash2-bg 4s ease-in-out infinite, flash2-pulse 1.5s ease-in-out infinite;
  color: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(147,51,234,0.35);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.18);
}
.flash-banner-2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  animation: flash2-shine 3.5s linear infinite;
  pointer-events: none;
}
@keyframes flash2-bg {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes flash2-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(147,51,234,0.35); transform: scale(1); }
  50%      { box-shadow: 0 8px 28px rgba(220,38,38,0.55); transform: scale(1.015); }
}
@keyframes flash2-shine {
  0%   { transform: translate(-30%, -30%) rotate(0deg); }
  100% { transform: translate(30%, 30%) rotate(360deg); }
}
.flash-banner-2-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  text-shadow:
    0 0 12px rgba(0,0,0,0.5),
    0 2px 4px rgba(0,0,0,0.6);
}
.flash-banner-2-top .flash-icon {
  font-size: 24px;
}
.flash-banner-2-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  opacity: 1;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  text-shadow:
    0 0 10px rgba(0,0,0,0.5),
    0 2px 4px rgba(0,0,0,0.6);
}
.flash-banner-2-bottom strong {
  color: #FFF200;
  font-weight: 900;
  text-shadow:
    0 0 12px rgba(255,242,0,0.6),
    0 2px 4px rgba(0,0,0,0.7);
}
.flash-pulse-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: flash2-dot 1s ease-in-out infinite;
  box-shadow: 0 0 10px #4ade80;
}
@keyframes flash2-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}
.flash-banner-2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #DC2626;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 17px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  animation: flash2-cta 1.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes flash2-cta {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.flash-phone-icon { font-size: 18px; }
.flash-phone-num { font-weight: 800; }
@media (max-width: 480px) {
  .flash-banner-2 { padding: 16px 16px; }
  .flash-banner-2-top { font-size: 15px; }
  .flash-banner-2-bottom { font-size: 13px; }
  .flash-banner-2-cta { font-size: 16px; padding: 11px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .flash-banner-2,
  .flash-banner-2::before,
  .flash-pulse-dot,
  .flash-banner-2-cta { animation: none; }
}

/* ========== STARS BANNER (slow gentle flash) ========== */
.stars-banner-wrap {
  margin: 28px 12px 20px;
}
.stars-banner {
  background: linear-gradient(135deg, #F59E0B 0%, #DC2626 50%, #9333EA 100%);
  background-size: 200% 200%;
  color: #FFFFFF;
  padding: 24px 18px;
  border-radius: 18px;
  text-align: center;
  box-shadow:
    0 6px 22px rgba(245,158,11,0.55),
    inset 0 1px 0 rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.4);
  animation: stars-glow 3.5s ease-in-out infinite, stars-bg 6s ease-in-out infinite;
}
@keyframes stars-bg {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes stars-glow {
  0%, 100% {
    box-shadow:
      0 6px 22px rgba(245,158,11,0.5),
      inset 0 1px 0 rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
  }
  50% {
    box-shadow:
      0 8px 30px rgba(220,38,38,0.7),
      inset 0 1px 0 rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.7);
  }
}
.stars-row {
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  line-height: 1;
}
.stars-row .star {
  display: inline-block;
  animation: star-twinkle 3s ease-in-out infinite;
}
.stars-row .star:nth-child(1) { animation-delay: 0s; }
.stars-row .star:nth-child(2) { animation-delay: 0.4s; }
.stars-row .star:nth-child(3) { animation-delay: 0.8s; }
.stars-row .star:nth-child(4) { animation-delay: 1.2s; }
.stars-row .star:nth-child(5) { animation-delay: 1.6s; }
@keyframes star-twinkle {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.18); filter: brightness(1.3); }
}
.stars-text {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
  color: #FFFFFF;
  text-shadow:
    0 0 12px rgba(0,0,0,0.4),
    0 2px 4px rgba(120,53,15,0.8),
    0 1px 0 rgba(120,53,15,0.9);
  letter-spacing: 0.2px;
}
.stars-subtext {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 1;
  text-shadow:
    0 0 10px rgba(0,0,0,0.4),
    0 2px 3px rgba(120,53,15,0.7);
}
@media (max-width: 480px) {
  .stars-row { font-size: 24px; letter-spacing: 3px; }
  .stars-text { font-size: 15px; }
  .stars-subtext { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .stars-banner, .stars-row .star { animation: none; }
}

/* ========== MENU BOTTONE ROSSO + TENDINA ========== */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: none;
  border-radius: 100px;
  padding: 9px 14px 9px 12px;
  color: #DC2626;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s;
}
.menu-btn:active { transform: scale(0.95); }
.menu-btn-icon {
  font-size: 18px;
  line-height: 1;
}
.menu-btn-arrow {
  font-size: 13px;
  transition: transform 0.25s;
  line-height: 1;
}
.menu-btn.open .menu-btn-arrow { transform: rotate(180deg); }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.nav-overlay.show { display: block; }

/* Tendina dal top */
.nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  z-index: 99;
  transform: translateY(-120%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  max-height: calc(90vh - 70px);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.nav-drawer.open { transform: translateY(0); }

/* Header tendina */
.nav-drawer-header {
  background: linear-gradient(135deg, #DC2626 0%, #F97316 70%, #FBBF24 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer-title {
  color: white;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 700;
  font-size: 17px;
}
.nav-drawer-title small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.88;
  margin-top: 2px;
}
.nav-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

/* Griglia sezioni */
.nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

/* Sezione con titolo espandibile */
.nav-section {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-section:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.06); }

.nav-section-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}
.nav-section-btn:active { background: rgba(220,38,38,0.05); }
.nav-section-btn.active { background: rgba(220,38,38,0.06); }

.nav-section-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.nav-section-label2 {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1A1A1A;
  line-height: 1.2;
}
.nav-section-label2 small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.nav-section-chev {
  color: #DC2626;
  font-size: 13px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-section-btn.active .nav-section-chev { transform: rotate(90deg); }

/* Pannello espanso — occupa tutta la larghezza */
.nav-panel {
  display: none;
  grid-column: 1 / -1;
  background: #FFF8F6;
  border-top: 1px solid rgba(220,38,38,0.1);
  padding: 12px 14px 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.nav-panel.open { display: flex; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid rgba(220,38,38,0.18);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #1A1A1A;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-pill:active { background: #DC2626; color: white; border-color: #DC2626; }

/* Riga contatti full-width */
.nav-contacts {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 2px solid rgba(220,38,38,0.1);
}
.nav-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220,38,38,0.3);
  -webkit-tap-highlight-color: transparent;
}
.nav-cta-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  background: #16A34A;
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22,163,74,0.25);
  -webkit-tap-highlight-color: transparent;
}
/* ========== SEZIONI CONTENUTO EXTRA PAGINE INTERNE ========== */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 8px;
}
.info-card {
  background: linear-gradient(135deg, #fff 0%, #FFF8F6 100%);
  border: 1.5px solid rgba(220,38,38,0.12);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.info-card-icon { font-size: 22px; margin-bottom: 6px; }
.info-card-val {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 20px;
  color: #DC2626;
  line-height: 1;
  display: block;
}
.info-card-lbl {
  font-size: 11px;
  color: #666;
  font-weight: 600;
  margin-top: 3px;
  display: block;
}

.garanzia-box {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  border-radius: 16px;
  padding: 16px;
  color: white;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.garanzia-box-icon { font-size: 28px; flex-shrink: 0; }
.garanzia-box-text { font-size: 14px; font-weight: 600; line-height: 1.4; }
.garanzia-box-text strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 2px; }

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tips-list li {
  background: #FFF8F6;
  border-left: 3px solid #DC2626;
  border-radius: 0 10px 10px 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.4;
}
.tips-list li strong { color: #DC2626; }

/* ===== AGGIUNTE SITO PHP ===== */

/* BREADCRUMB */
.breadcrumb {
  padding: 10px 16px;
  font-size: 12px;
  color: #999;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a { color: #DC2626; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* PAGE HERO INNER (pagine interne) */
.page-hero-inner {
  padding: 32px 16px 24px;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, #FFF8F6 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #DC2626;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(220,38,38,0.2);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(220,38,38,0.08);
}
.page-hero-inner h1 {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(26px, 6.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 15px;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 8px;
}
.page-hero-intro {
  font-size: 15px;
  color: #4B4B4B;
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO HOME */
.page-hero {
  padding: 44px 16px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #FFF8F6 100%);
}
.page-hero h1 {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(30px, 7.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

/* COMUNI GRID */
.comuni-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 540px) { .comuni-list-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) { .comuni-list-grid { grid-template-columns: repeat(4, 1fr); } }

.comuni-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: white;
  border: 1.5px solid rgba(220,38,38,0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.comuni-chip:active { background: #DC2626; color: white; border-color: #DC2626; }

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* APPLIANCE CARD as link */
a.appliance-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.province-chip, a.brand-tile {
  text-decoration: none;
  color: inherit;
}

/* ===== FIX GRAFICA PHP ===== */

/* Blocca overflow ovunque */
.page-hero, .page-hero-inner, section, .block {
  overflow: hidden;
}

/* Nascondi hero-orb nelle pagine PHP (non servono) */
.hero-orb { display: none; }

/* Fix immagini nelle appliance-card */
.appliance-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(249,115,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  flex-shrink: 0;
}
.appliance-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Fix appliance-hero immagine grande */
.appliance-hero {
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
}
.appliance-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Fix page-hero overflow */
.page-hero {
  overflow: hidden !important;
  position: relative;
}

/* Padding bottom body normale */
body { padding-bottom: 120px; }

/* ===== FIX IMMAGINI CARD ===== */
.appliance-icon {
  width: 90px !important;
  height: 90px !important;
  border-radius: 18px !important;
  margin: 0 auto 12px !important;
}
.appliance-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
}

/* ===== FAB FISSI IN BASSO ===== */
.fab-call {
  position: fixed !important;
  bottom: 20px !important;
  left: 16px !important;
  right: 80px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px !important;
  z-index: 200;
}
.fab-wa {
  position: fixed !important;
  bottom: 20px !important;
  right: 16px !important;
  left: auto !important;
  width: 56px !important;
  height: 56px !important;
  z-index: 200;
}

/* ===== FIX MENU DRAWER POSIZIONE ===== */
.nav-drawer {
  top: 0 !important;
  transform: translateY(-110%) !important;
  max-height: 92vh !important;
  z-index: 200 !important;
}
.nav-drawer.open {
  transform: translateY(0) !important;
}
.nav-overlay {
  z-index: 199 !important;
}
/* Nasconde il nav-contacts WhatsApp button che sbuca */
.nav-contacts {
  position: relative;
  z-index: 1;
}
/* Fix menu btn non taglia */
.header-inner {
  overflow: visible !important;
}

/* ===== FIX OVERFLOW GLOBALE ===== */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
.promo-ticker {
  overflow: hidden !important;
}

/* ===== FIX HEADER + MENU BOTTONE ===== */
.header { padding: 10px 12px !important; }
.header-inner {
  gap: 8px !important;
  flex-wrap: nowrap !important;
}
.logo-text {
  font-size: 14px !important;
}
.logo-text small { font-size: 10px !important; }
.logo-mark { width: 36px !important; height: 36px !important; font-size: 18px !important; }
.status-badge {
  padding: 5px 8px !important;
  font-size: 11px !important;
  flex-shrink: 0;
}
.status-text strong { font-size: 11px !important; }
.status-text span { font-size: 9px !important; }
.menu-btn {
  padding: 8px 10px !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* Rimuovi FAB call duplicato — teniamo solo WhatsApp FAB verde */
.fab-call {
  display: none !important;
}

/* ===== MENU DRAWER AGGIORNATO ===== */
.nav-call-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 14px;
  padding: 15px;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(220,38,38,0.35);
  animation: fab-flash 1.4s ease-in-out infinite;
}

/* Sezioni full width nel menu */
.nav-section-full {
  grid-column: 1 / -1 !important;
  border-right: none !important;
}
.nav-grid {
  display: flex !important;
  flex-direction: column !important;
}

/* ===== CTA FINALE CHIAMA ===== */
.final-cta-block {
  margin: 0 16px 24px;
  padding: 24px 16px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2d1b1b 100%);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-cta-label {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
}
.final-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(220,38,38,0.4);
  animation: fab-flash 1.4s ease-in-out infinite;
}
.final-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #16A34A;
  color: white;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

/* ===== FOOTER CTA ROW ===== */
.footer-cta-row {
  display: flex;
  gap: 10px;
  padding: 20px 16px 0;
}
.footer-btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220,38,38,0.3);
}
.footer-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #16A34A;
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}

/* ===== ACCORDION PROVINCE+COMUNI ===== */
.prov-accordion {
  border: 1.5px solid rgba(220,38,38,0.12);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  background: white;
}
.prov-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1A1A1A;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.prov-accordion-btn:active { background: rgba(220,38,38,0.04); }
.prov-count {
  font-size: 12px;
  font-weight: 500;
  color: #999;
}
.prov-chev {
  margin-left: auto;
  color: #DC2626;
  font-size: 18px;
  transition: transform 0.2s;
}
.prov-accordion-btn.open .prov-chev { transform: rotate(90deg); }
.prov-accordion-body {
  display: none;
  padding: 4px 12px 14px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.prov-accordion-body.open {
  display: grid;
}
@media (min-width: 540px) {
  .prov-accordion-body { grid-template-columns: repeat(3, 1fr); }
}
