/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; transition: background 0.3s, color 0.3s; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== LIGHT THEME (default) ========== */
:root {
  --green-900: #1a3a2a;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-300: #74c69d;
  --green-100: #d8f3dc;
  --green-50: #f0faf3;
  --wood-900: #3e2723;
  --wood-700: #5d4037;
  --wood-500: #795548;
  --wood-300: #a1887f;
  --wood-100: #d7ccc8;
  --wood-50: #efebe9;
  --bg-primary: #fafaf7;
  --bg-secondary: #ffffff;
  --bg-card: #fafaf7;
  --text-primary: #2d2d2d;
  --text-secondary: #5a5a5a;
  --border-light: rgba(0,0,0,0.06);
  --header-bg: rgba(255,255,255,0.95);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --input-bg: #fafaf7;
  --input-border: #e0e0e0;
  --input-focus-bg: #ffffff;
}

/* ========== DARK THEME ========== */
[data-theme="dark"] {
  --green-900: #b7e4c7;
  --green-700: #52b788;
  --green-500: #74c69d;
  --green-300: #40916c;
  --green-100: #1b4332;
  --green-50: #0d2818;
  --wood-50: #2a2118;
  --wood-100: #3e3028;
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-card: #252525;
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --border-light: rgba(255,255,255,0.08);
  --header-bg: rgba(18,18,18,0.95);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --input-bg: #2a2a2a;
  --input-border: #444;
  --input-focus-bg: #333;
}

body { background: var(--bg-primary); color: var(--text-primary); }

/* ========== UTILITIES ========== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--green-500); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-900); margin-bottom: 1rem; line-height: 1.2;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  transition: all 0.3s ease; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========== HEADER ========== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light); transition: box-shadow 0.3s, background 0.3s;
}
header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 42px; height: 42px; background: var(--green-700); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-900); }
.logo-sub { font-size: 0.7rem; color: var(--text-secondary); letter-spacing: 1px; text-transform: uppercase; }
.header-right { display: flex; align-items: center; gap: 1rem; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; position: relative;
}
nav a:hover { color: var(--green-700); }
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--green-500); transition: width 0.3s;
}
nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.4rem; background: var(--green-700); color: #fff !important;
  border-radius: 50px; font-size: 0.9rem !important;
}
.nav-cta:hover { background: var(--green-500); }
.nav-cta::after { display: none; }

/* Theme toggle */
.theme-toggle {
  background: var(--bg-card); border: 1.5px solid var(--border-light);
  border-radius: 50px; width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--text-secondary); font-size: 1.1rem;
}
.theme-toggle:hover { background: var(--green-100); color: var(--green-700); border-color: var(--green-300); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { transition: opacity 0.3s; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun, :root:not([data-theme]) .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon, :root:not([data-theme]) .theme-toggle .icon-moon { display: inline; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav {
    position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-secondary);
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    transform: translateY(-110%); transition: transform 0.3s ease, visibility 0.3s ease; box-shadow: var(--shadow-lg);
    z-index: 999; visibility: hidden; pointer-events: none;
  }
  nav.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav-cta { width: 100%; text-align: center; }
  .nav-backdrop {
    display: none; position: fixed; inset: 0; z-index: 998;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(2px);
  }
  .nav-backdrop.active { display: block; }
}

/* ========== HERO ========== */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(165deg, #1a3a2a 0%, #2d6a4f 50%, #40916c 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); padding: 0.5rem 1rem;
  border-radius: 50px; font-size: 0.85rem; margin-bottom: 1.5rem; backdrop-filter: blur(5px);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.15; margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2rem; max-width: 500px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-image-placeholder {
  width: 100%; aspect-ratio: 4/3; background: rgba(255,255,255,0.1);
  border-radius: var(--radius); border: 2px dashed rgba(255,255,255,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; font-size: 0.9rem; opacity: 0.7;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.hero-stat-label { font-size: 0.85rem; opacity: 0.7; }

@media (max-width: 768px) {
  .hero { padding: 7rem 0 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-visual { display: block; order: -1; }
  .hero-visual img { aspect-ratio: 16/9; width: 100%; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ========== SERVICES ========== */
.services { padding: 6rem 0; background: var(--bg-secondary); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 2rem;
  transition: all 0.3s ease; border: 1px solid var(--border-light);
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-300);
}
.service-icon {
  width: 56px; height: 56px; background: var(--green-100); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-900); margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.service-tag {
  display: inline-block; margin-top: 1rem; padding: 0.3rem 0.8rem;
  background: var(--green-100); color: var(--green-700); border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
}

/* ========== ABOUT ========== */
.about { padding: 6rem 0; background: var(--bg-primary); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-placeholder {
  width: 100%; aspect-ratio: 4/3; background: var(--wood-50); border-radius: var(--radius);
  border: 2px dashed var(--wood-100); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; color: var(--text-secondary); font-size: 0.9rem;
}

/* ========== ABOUT CAROUSEL ========== */
.about-carousel {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.8s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; font-size: 0.85rem; font-family: 'Inter', sans-serif;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px); border: none; color: #fff; font-size: 2rem; cursor: pointer;
  padding: 0.4rem 0.8rem; border-radius: 8px; opacity: 0; transition: opacity 0.3s;
  z-index: 2;
}
.about-carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(255,255,255,0.35); }
.carousel-btn-prev { left: 0.75rem; }
.carousel-btn-next { right: 0.75rem; }
.carousel-dots {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 2;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: #fff; transform: scale(1.2); }
@media (max-width: 768px) {
  .carousel-btn { opacity: 1; font-size: 1.5rem; padding: 0.3rem 0.6rem; }
  .carousel-slide-caption { font-size: 0.75rem; padding: 0.7rem 1rem; }
}

.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-feature-icon {
  width: 36px; height: 36px; min-width: 36px; background: var(--green-100);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.about-feature-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--green-900); }
.about-feature-text p { font-size: 0.8rem; margin: 0; }

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

/* ========== ACTIVE NAV ========== */
nav a.active { color: var(--green-700) !important; font-weight: 600; }
nav a.active::after { width: 100% !important; }

/* ========== TRUST BANNER ========== */
.trust { padding: 4rem 0; background: #1a3a2a; color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.trust-icon { font-size: 2rem; margin-bottom: 0.25rem; }
.trust-value { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.trust-label { font-size: 0.85rem; opacity: 0.7; }

/* ========== ZONE ========== */
.zone { padding: 6rem 0; background: var(--bg-secondary); }
.zone-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.zone-list { margin-top: 1.5rem; }
.zone-list li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--green-100);
  display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary);
}
.zone-list li span { color: var(--green-500); font-weight: 600; }
.zone-map-container {
  width: 100%; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--green-100); box-shadow: var(--shadow-md);
}
#map { width: 100%; height: 450px; }
.zone-legend {
  padding: 1rem 1.25rem; background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem;
}
.zone-legend-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); }
.zone-legend-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid; }
.zone-legend-dot.center { background: #2d6a4f; border-color: #2d6a4f; }
.zone-legend-dot.radius { background: rgba(45,106,79,0.15); border-color: #2d6a4f; }
.zone-legend-dot.free { background: rgba(116,198,157,0.3); border-color: #74c69d; }
@media (max-width: 768px) {
  .zone-content { grid-template-columns: 1fr; }
  #map { height: 350px; }
}

/* ========== CONTACT ========== */
.contact { padding: 6rem 0; background: var(--bg-primary); }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: var(--bg-secondary); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-info {
  background: #1a3a2a; color: #fff; padding: 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info > p { opacity: 0.85; line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-detail-text span { display: block; font-size: 0.8rem; opacity: 0.6; margin-bottom: 0.35rem; }
.contact-detail-text a, .contact-detail-text p { font-weight: 500; font-size: 1rem; margin: 0; opacity: 1; }
.contact-badges { display: flex; gap: 0.75rem; margin-top: 2rem; }
.contact-badge { padding: 0.4rem 0.8rem; background: rgba(255,255,255,0.1); border-radius: 50px; font-size: 0.8rem; }
.contact-form { padding: 3rem; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-900); margin-bottom: 0.5rem; }
.contact-form > p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 2rem; }
@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { padding: 2rem 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-badges { flex-wrap: wrap; }
}

/* ========== FORM STYLES ========== */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-primary); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; background: var(--input-bg); color: var(--text-primary);
}
input.input-valid  { border-color: #40916c !important; box-shadow: 0 0 0 3px rgba(64,145,108,0.15) !important; }
input.input-error  { border-color: #e74c3c !important; box-shadow: 0 0 0 3px rgba(231,76,60,0.12) !important; }
.phone-helper { font-size: 0.78rem; margin-top: 4px; min-height: 1.1em; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green-500); background: var(--input-focus-bg);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--green-700); color: #fff; border: none;
  border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: inherit; margin-top: 0.5rem;
}
.form-submit:hover { filter: brightness(1.15); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--green-700); }

/* ========== FOOTER ========== */
footer { background: #1a3a2a; color: #fff; padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 1rem; opacity: 0.7; font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.5; margin-bottom: 1.25rem; }
.footer-links a { display: block; padding: 0.4rem 0; opacity: 0.75; font-size: 0.95rem; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; opacity: 0.5;
}
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ========== MOBILE GLOBAL SPACING ========== */
@media (max-width: 768px) {
  .services { padding: 3.5rem 0; }
  .about    { padding: 3.5rem 0; }
  .trust    { padding: 2.5rem 0; }
  .zone     { padding: 3.5rem 0; }
  .contact  { padding: 3.5rem 0; }
  .services-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .trust-grid { gap: 1.5rem; }
  .trust-value { font-size: 1.3rem; }
  .zone-legend { gap: 1rem; font-size: 0.8rem; }
}

/* ========== COOKIE BANNER ========== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-secondary); border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12); padding: 1.25rem 1.5rem;
  display: none; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-family: "Outfit", sans-serif; animation: slideUpBanner .4s ease;
}
@keyframes slideUpBanner { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#cookie-banner.visible { display: flex; }
.cookie-banner-text {
  flex: 1; min-width: 260px; font-size: .88rem;
  color: var(--text-secondary); line-height: 1.6;
}
.cookie-banner-text strong { color: var(--text-primary); }
.cookie-banner-text a { color: var(--green-700); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  padding: .6rem 1.4rem; background: var(--green-700); color: #fff; border: none;
  border-radius: 50px; font-size: .88rem; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--green-500); }
.cookie-btn-refuse {
  padding: .6rem 1.25rem; background: transparent; color: var(--text-secondary);
  border: 1.5px solid var(--border-light); border-radius: 50px; font-size: .88rem;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.cookie-btn-refuse:hover { border-color: var(--text-secondary); color: var(--text-primary); }
