/* ------------------------------------------------------------
   CSS RESET & NORMALIZE
------------------------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAF6F3;
  color: #3C5A4B;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------
   VARIABLES (fallbacks for old browsers too)
------------------------------------------------------------ */
:root {
  --brand-primary: #3C5A4B;
  --brand-secondary: #E7A660;
  --brand-accent: #FFFFFF;
  --brand-bg: #FAF6F3;
  --pastel-green: #DCF1DF;
  --pastel-yellow: #FFF4DC;
  --pastel-pink: #FFEDEE;
  --pastel-blue: #E5F1FA;
  --pastel-lavender: #F2ECFF;
  --pastel-orange: #FFF3E1;
  --text-main: #3C5A4B;
  --text-soft: #5A7369;
  --text-invert: #FFFFFF;
  --shadow-card: 0 4px 22px 0 rgba(60, 90, 75, 0.08), 0 2px 6px 0 rgba(60,90,75,0.05);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: 0.18s cubic-bezier(.8,.25,.15,1);
}

/* Fallbacks for older browsers */
body {
  background: #FAF6F3;
  color: #3C5A4B;
}

/* ------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  color: var(--text-soft);
}
p.subheadline {
  font-size: 1.125rem;
  margin-bottom: 28px;
}
strong { color: var(--brand-primary); font-weight: 700; }

/* Typography scale for mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
  p, li { font-size: 0.98rem; }
}

/* ------------------------------------------------------------
   LAYOUT HELPERS
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}
/* ------------------------------------------------------------
   HEADER + NAVIGATION
------------------------------------------------------------ */
header {
  background: var(--brand-bg);
  border-bottom: 1px solid #EBE4D8;
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  position: relative;
}
.main-nav > a img {
  height: 44px;
  transition: filter 0.2s;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav ul li a {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--pastel-green);
  color: var(--brand-secondary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  background: var(--brand-secondary);
  color: var(--text-invert);
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 1px 12px 0 rgba(231,166,96,0.10);
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), box-shadow 0.25s;
}
.cta-button:hover, .cta-button:focus {
  background: #f0d5ba;
  color: var(--brand-primary);
  box-shadow: 0 2px 20px 0 rgba(60,90,75,0.13);
}

/* Mobile burger menu button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 22;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pastel-green);
  color: var(--brand-secondary);
}

/* Responsive: NAV */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle {display: block;}
}

/* ------------------------------------------------------------
   MOBILE MENU OVERLAY
------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 246, 237, .96);
  box-shadow: 0 8px 62px 0 rgba(60,90,75,0.19);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.3s cubic-bezier(.77,0,.175,1);
  will-change: transform, opacity;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 24px 0 0 24px;
  background: transparent;
  color: var(--brand-primary);
  font-size: 2.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.14s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-green);
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 36px;
  width: 100vw;
  padding-left: 38px;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--brand-primary);
  padding: 12px 0;
  border-radius: 8px;
  min-width: 180px;
  transition: background 0.14s, color 0.16s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-pink);
  color: var(--brand-secondary);
  padding-left: 14px;
}

/* Hide scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* ------------------------------------------------------------
   HERO / CALL TO ACTION / MAIN HIGHLIGHTS
------------------------------------------------------------ */
.hero, .about-hero, .catalog-hero, .services-hero, .consulting-hero, .thank-you, .contact-hero {
  background: linear-gradient(120deg, var(--pastel-green) 80%, var(--pastel-yellow) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 2px 24px 0 rgba(60,90,75,0.06);
  padding: 52px 0 52px 0;
  margin-bottom: 56px;
}
.hero h1, .about-hero h1, .catalog-hero h1, .services-hero h1, .consulting-hero h1, .thank-you h1, .contact-hero h1 {
  color: var(--brand-primary);
}
.hero .cta-button {
  margin-top: 12px;
}

.cta {
  background: var(--pastel-blue);
  padding: 46px 0;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.cta h2 {
  margin-bottom: 16px;
  color: var(--brand-primary);
}
.cta .cta-button {
  margin-top: 8px;
}

/* ------------------------------------------------------------
   FLEXBOX LAYOUTS & CARD COMPONENTS
------------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.13s, box-shadow 0.20s;
  min-width: 250px;
  max-width: 370px;
}
.card:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(60,90,75,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}
/* FEATURES lists on homepage/catalog/consulting */
.features, .feature-grid, .service-list, .category-list, .value-list, .team-list, .feature-list, .service-card-grid, .product-cards, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.features li, .feature-grid li, .service-list li, .category-list li, .value-list li, .feature-list li, .service-card-grid li, .product-cards li, .faq-list li {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
  flex: 1 1 230px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.features li img, .feature-grid li img, .service-list li img, .service-card-grid li img, .value-list li img, .feature-list li img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  border-radius: 12px;
  background: var(--pastel-blue);
  box-shadow: 0 1px 6px 0 rgba(60,90,75,0.06);
}
.features li:hover, .feature-grid li:hover, .service-list li:hover, .service-card-grid li:hover, .product-cards li:hover {
  box-shadow: 0 8px 30px 0 rgba(60,90,75,0.10);
  transform: translateY(-2px) scale(1.01);
}
.category-list li span {
  color: var(--brand-secondary);
}
@media (max-width: 1024px) {
  .features li, .feature-grid li, .service-list li, .category-list li, .value-list li, .feature-list li, .service-card-grid li, .product-cards li, .faq-list li {
    flex: 1 1 100%;
    margin-bottom: 22px;
    min-width: 180px;
  }
}
@media (max-width: 640px) {
  .features li, .feature-grid li, .service-list li, .category-list li, .value-list li, .feature-list li, .service-card-grid li, .product-cards li, .faq-list li {
    padding: 16px 11px;
    font-size: 0.96rem;
  }
}

/* ------------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------------ */
.testimonials {
  padding: 40px 0;
  background: linear-gradient(120deg, var(--pastel-pink) 85%, var(--pastel-yellow) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 22px 0 rgba(60,90,75,0.09);
  max-width: 350px;
  min-width: 220px;
  color: var(--brand-primary);
  font-size: 1rem;
  border-left: 6px solid var(--brand-secondary);
  transition: box-shadow 0.13s, transform 0.13s;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-style: italic;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.97em;
  color: var(--text-soft);
  margin-top: 2px;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 14px 34px 0 rgba(60,90,75,0.15);
  transform: translateY(-2px) scale(1.03);
}
.trust-signals {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}
.trust-signals img {
  width: 54px;
  height: 54px;
  background: var(--pastel-green);
  border-radius: 50%;
  box-shadow: 0 1px 8px 0 rgba(60,90,75,0.06);
  object-fit: cover;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .trust-signals { justify-content: flex-start; gap: 10px; }
}

/* ------------------------------------------------------------
   AVAILABILITY BADGE (Catalogo)
------------------------------------------------------------ */
.availability-badge {
  display: inline-block;
  padding: 5px 14px;
  margin: 10px 0;
  font-size: 0.98em;
  font-weight: 600;
  background: var(--pastel-green);
  color: var(--brand-primary);
  border-radius: 24px;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--brand-secondary);
}

/* ------------------------------------------------------------
   INFO-TEXT, LEGAL TEXT, SECTIONS
------------------------------------------------------------ */
.legal-text, .info-block, .contact-form, .contact-details, .map, .booking-form, .faq {
  background: var(--pastel-lavender);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 22px;
}
.legal-text h2, .info-block h2, .contact-form h2, .booking-form h2, .faq h2 {
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--brand-primary);
  font-size: 1.27rem;
}
.text-section, .timeline, .terms-list, .faq-list {
  margin-top: 8px;
}
.timeline li, .terms-list li, .faq-list li {
  margin-bottom: 12px;
  padding-left: 0.3em;
  font-size: 1rem;
  color: var(--text-soft);
}

/* Booking Steps */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: bookingstep;
  margin-bottom: 12px;
}
.booking-steps li {
  position: relative;
  padding-left: 32px;
}
.booking-steps li:before {
  counter-increment: bookingstep;
  content: counter(bookingstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 1px 6px 0 rgba(60,90,75,0.05);
}

/* ------------------------------------------------------------
   PRICING BADGES
------------------------------------------------------------ */
.service-price {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 14px;
  background: var(--pastel-yellow);
  color: var(--brand-primary);
  border-radius: 20px;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--brand-secondary);
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
footer {
  background: var(--pastel-blue);
  padding: 38px 0 24px 0;
  border-top: 1px solid #EDE5D3;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--brand-primary);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 10px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-yellow);
  color: var(--brand-secondary);
}
.footer-info p {
  color: var(--text-soft);
  font-size: 0.96rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 550px) {
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    margin-bottom: 10px;
  }
  .footer-info p {font-size: 0.92rem;}
}

/* ------------------------------------------------------------
   PRIVACY NOTE UNDER FORMS
------------------------------------------------------------ */
.privacy-note {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.93rem;
}
.privacy-note a { text-decoration: underline; color: var(--brand-secondary); }

/* ------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 42px;
  }
}
@media (max-width: 860px) {
  .card-container, .content-grid, .features, .feature-grid, .service-list, .category-list, .value-list, .team-list, .feature-list, .service-card-grid, .product-cards, .faq-list, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero, .about-hero, .catalog-hero, .services-hero, .consulting-hero, .thank-you, .contact-hero {
    padding: 32px 0 32px 0;
    margin-bottom: 26px;
    border-radius: 0 0 16px 16px;
  }
  .section, .legal-text, .info-block, .contact-form, .contact-details, .map, .booking-form, .faq {
    padding: 22px 5px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .card {min-width:180px;}
}

/* ------------------------------------------------------------
   FORM ELEMENTS (for future/provided forms)
------------------------------------------------------------ */
input[type="text"], input[type="email"], textarea, select {
  border: 1.5px solid var(--pastel-blue);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--pastel-lavender);
  color: var(--brand-primary);
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  box-shadow: 0 1px 5px 0 rgba(60,90,75,0.04);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-secondary);
  background: var(--pastel-blue);
}

/* ------------------------------------------------------------
   COOKIES BANNER + COOKIE PREFERENCES MODAL
------------------------------------------------------------ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--pastel-pink);
  border-top: 2px solid var(--pastel-yellow);
  box-shadow: 0 -2px 22px 0 rgba(60,90,75,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 12px 18px 16px;
  z-index: 250;
  font-size: 1rem;
  color: var(--brand-primary);
  min-height: 56px;
  animation: cookie-banner-fade-in 0.56s ease;
}
@keyframes cookie-banner-fade-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--pastel-green);
  color: var(--brand-primary);
  box-shadow: 0 1px 6px rgba(60,90,75,0.10);
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-consent-banner button.accept {
  background: var(--brand-secondary);
  color: var(--text-invert);
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #e6bd89;
  color: var(--brand-primary);
}
.cookie-consent-banner button.reject {
  background: var(--pastel-pink);
  color: var(--brand-primary);
  border: 1px solid var(--brand-secondary);
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
  background: var(--pastel-yellow);
  color: var(--brand-secondary);
}
.cookie-consent-banner button.settings {
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border: 1px solid var(--brand-secondary);
}
.cookie-consent-banner button.settings:hover,
.cookie-consent-banner button.settings:focus {
  background: var(--pastel-green);
  color: var(--brand-secondary);
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(20,24,17,0.38);
  z-index: 251;
  animation: fadeInBg 0.2s;
}
@keyframes fadeInBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%) scale(1);
  background: var(--brand-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 64px rgba(60,90,75,0.12),0 1px 10px rgba(60,90,75,0.08);
  z-index: 255;
  width: 95vw;
  max-width: 400px;
  padding: 32px 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scaleIn 0.22s cubic-bezier(.5,1.4,.9,.8);
}
@keyframes scaleIn {
  from { transform: translate(-50%, -60%) scale(0.9); opacity: 0; }
  to   { transform: translate(-50%, -55%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.17rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--pastel-blue);
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-modal .toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--pastel-blue);
  border-radius: 12px;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
  margin-left: 10px;
}
.cookie-modal .toggle-switch.active {
  background: var(--brand-secondary);
}
.cookie-modal .toggle-switch::before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: var(--brand-accent);
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-modal .toggle-switch.active::before {
  left: 17px;
}
.cookie-modal .essential {
  color: var(--brand-secondary);
  font-weight: 600;
}
.cookie-modal .buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .buttons button {
  flex: 1 1 0;
  border-radius: 8px;
  padding: 8px 0;
  background: var(--pastel-green);
  color: var(--brand-primary);
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .buttons button.save {
  background: var(--brand-secondary);
  color: var(--text-invert);
}
.cookie-modal .buttons button.save:hover,
.cookie-modal .buttons button.save:focus {
  background: #e6bd89;
  color: var(--brand-primary);
}
.cookie-modal .buttons button.cancel:hover {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}

/* ------------------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
------------------------------------------------------------ */
.cta-button, .main-nav ul li a, .mobile-menu-toggle,
.mobile-menu-close, .mobile-nav a,
.cookie-consent-banner button, .cookie-modal .buttons button {
  transition: background 0.17s, color 0.14s, box-shadow 0.16s, transform 0.15s;
}
.cta-button:active,
.main-nav ul li a:active,
.mobile-menu-toggle:active,
.mobile-menu-close:active,
.cookie-consent-banner button:active,
.cookie-modal .buttons button:active {
  transform: scale(0.97);
}

/* Subtle card animations */
.card, .features li, .product-cards li, .service-card-grid li, .testimonial-card {
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:active, .features li:active, .product-cards li:active, .service-card-grid li:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* ------------------------------------------------------------
   COLOR OVERRIDES FOR ACCESSIBILITY
------------------------------------------------------------ */
.testimonials .testimonial-card,
section.testimonials .testimonial-card p, /* ensure readable in slider */
.legal-text, .legal-text h2, .info-block, .info-block h2,
.contact-form, .booking-form, .faq, .faq h2, .contact-details, .map {
  color: var(--brand-primary);
}

/* ------------------------------------------------------------
   UTILITIES
------------------------------------------------------------ */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ------------------------------------------------------------
   CUSTOM SCROLLBARS (optional: soften on desktop only)
------------------------------------------------------------ */
@media (hover: hover) and (pointer: fine) {
  ::-webkit-scrollbar {
    width: 8px; height: 10px; background: var(--pastel-lavender); border-radius: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--pastel-green);
    border-radius: 8px;
  }
}

/* ------------------------------------------------------------
   END OF CSS
------------------------------------------------------------ */
