/* ==========================================================================
   EURESIS SITO WEB - LIGHT THEME DESIGN SYSTEM (OFFICIAL MEDICINE SUITE)
   ========================================================================== */

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

/* Skip Navigation - Accessibilità */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary, #0d9488);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10001;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 0;
}

:root {
  --bg-light: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-light: #ccfbf1;
  --primary-dark: #115e59;
  --primary-glow: rgba(13, 148, 136, 0.15);
  
  --accent: #10b981;
  --accent-light: #d1fae5;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  --border-color: #e2e8f0;
  --border-active: #0d9488;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  background: var(--bg-light);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-nowrap {
  white-space: nowrap !important;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  display: block;
}

.logo-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Remove mobile menu logic, use Mentor style */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
}

@media (min-width: 992px) {
  .nav-links { display: flex; }
}

/* On small screens, optimize nav-actions to prevent wrapping */
@media (max-width: 500px) {
  .nav-brand span {
    display: none; /* Nasconde il testo Euresis per lasciare spazio ai bottoni */
  }
  .nav-actions {
    gap: 0.3rem;
  }
  .btn-login {
    padding: 0.35rem 0.5rem;
    font-size: 0.8rem;
  }
  .btn-primary {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  .nav-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--primary-glow);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  text-align: center;
  background: radial-gradient(100% 100% at 50% 0%, rgba(204, 251, 241, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--primary-light);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.section-padding {
  padding: 5rem 0;
}

.features-section {
  padding: 5rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* PWA Banner (Light Theme) */
.l-pwa {
  padding: 4rem 0;
}

.l-pwa-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.l-pwa-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.l-pwa-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.l-pwa-guides {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.l-pwa-guide-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
}

.l-pwa-guide-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.l-pwa-steps {
  list-style: none;
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Pricing Section (Light Theme) */
.pricing-section {
  padding: 5rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.billing-toggle span.active {
  color: var(--text-main);
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
}

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: .3s;
}

input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(24px); }

/* Pricing Rows Layout (In Riga) */
.pricing-rows-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 980px;
  margin: 3rem auto 0;
}

.pricing-row-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-row-card:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-row-card.popular {
  border-color: var(--primary);
  background: #f0fdfa;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.12);
}

.popular-tag {
  position: absolute;
  top: -11px;
  right: 2rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-row-card .plan-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
}

.pricing-row-card .plan-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.plan-limit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-row-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  min-width: 120px;
  justify-content: flex-end;
}

.pricing-row-card .price-amount {
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
  line-height: 1 !important;
}

.pricing-row-card .price-period {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
}

@media (max-width: 768px) {
  .pricing-row-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  .pricing-row-card .plan-price {
    justify-content: flex-start;
  }
  .pricing-row-card .plan-action {
    width: 100%;
  }
  .pricing-row-card .plan-action a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.price-amount {
  font-size: 3.25rem !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
  line-height: 1 !important;
}

.price-period {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.w-100 { width: 100%; }

.plan-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Page Guida Specific CSS */
.guide-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
}

.guide-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.guide-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guide-step-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.guide-card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .guide-card-body { grid-template-columns: 1fr 1fr; }
}

.guide-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;

  color: var(--text-muted);
  font-size: 0.95rem;
}

/* UI Card Leggibile per AI Suggerimenti (Non JSON Raw) */
.guide-preview-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.preview-header {
  background: var(--bg-subtle);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0.05em;
}

.ai-card-wrapper {
  border-color: rgba(13, 148, 136, 0.3);
}

.ai-header {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.ai-ui-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
}

.ai-section {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.red-flag-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.diff-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.exam-box {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  color: #0f766e;
}

.ai-section-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

/* Footer Legal Links */
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}

/* ============================================================
   Legal Pages (Privacy, Terms, Cookie Policy)
   ============================================================ */
.legal-header {
  background: var(--bg-dark, #0d1117);
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.legal-header nav {
  display: flex;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  color: #e0e0e0;
  line-height: 1.7;
}
.legal-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.legal-date {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.legal-content h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.legal-content ul {
  padding-left: 20px;
  margin: 8px 0;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 0.9rem;
}
.cookie-table th {
  background: rgba(13, 148, 136, 0.15);
  color: var(--primary);
  padding: 10px 12px;
  text-align: left;
  border-bottom: 2px solid rgba(13, 148, 136, 0.3);
}
.cookie-table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   Cookie Banner GDPR
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(13, 148, 136, 0.3);
  padding: 16px 24px;
  z-index: 10000;
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-content p {
  flex: 1;
  min-width: 300px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-content a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap !important;
}
.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #0b8074;
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-reject:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ============================================================
   Accessibilità: Riduzione animazioni per utenti sensibili
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
