/* 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,
main, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4ECE7;
  color: #313139;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #313139;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A68D68;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: none;
}
strong, b {
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #313139;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; }
.subheadline {
  color: #55585F;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.policy-text h2, .gdpr-text h2, .cookie-text h2, .terms-text h2 {
  margin-top: 32px;
  font-size: 1.2rem;
}

/* LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(49,49,57,0.06);
}
/* Minimum 20px between cards/sections ensured by margin/gap on containers */

/*==== HEADER ====*/
header {
  background: #fff;
  border-bottom: 1px solid #EFEFEF;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img {
  max-height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  color: #313139;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #A68D68;
  transition: width 0.25s;
  margin: 0 auto;
  border-radius: 4px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}
.main-nav a.btn-primary {
  padding: 10px 22px;
  border-radius: 24px;
  background: #313139;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(49,49,57,0.09);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: #A68D68;
  color: #fff;
  box-shadow: 0 4px 18px rgba(49,49,57,0.13);
}

/*==== MOBILE NAV ====*/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  font-size: 2.2rem;
  color: #313139;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-left: 16px;
  z-index: 40;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A68D68;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(49,49,57,0.98);
  color: #fff;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.69,.05,.38,.85);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0 0;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  z-index: 61;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A68D68;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 58px 28px;
  width: calc(100vw - 56px);
  max-width: 400px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A68D68;
  color: #313139;
}

/* VISIBILITY CONTROLS FOR NAVIGATION */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/*==== HERO, CTA, SECTION DEFAULTS ====*/
.hero {
  background: #F4ECE7;
  padding: 60px 0 40px;
}
.hero .container {
  align-items: center;
  min-height: 350px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 20px;
}
.contact-cta, .cta {
  background: #fff;
  margin-bottom: 0;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(49,49,57,0.08);
}
.contact-cta .content-wrapper, .cta .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.text-section {
  font-size: 1rem;
  color: #313139;
  text-align: left;
  margin-bottom: 20px;
}
.text-section.neutral-placeholder {
  background: #f2f3f9;
  color: #504F58;
  border-radius: 8px;
  padding: 16px 24px;
  font-style: italic;
}
.map-embed {
  margin-top: 24px;
}
.map-placeholder {
  border-radius: 8px;
  background: #EDEDED;
  min-height: 140px;
  color: #8B8E99;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  font-size: 1.1rem;
}

/*==== FEATURES ====*/
.features { margin-bottom: 60px; padding: 40px 0; background: #F4ECE7; }
.features .container { }
.features .content-wrapper { }
.feature-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 8px;
}
.feature-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(49,49,57,0.07);
  padding: 32px 24px 26px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-list li:hover, .feature-list li:focus-within {
  box-shadow: 0 10px 32px rgba(166,141,104,0.12), 0 2px 10px rgba(49,49,57,0.12);
}
.feature-list img {
  width: 48px; height: 48px; margin-bottom: 8px;
}

/*==== SERVICES PREVIEW ====*/
.services-preview .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 20px 0;
}
.services-preview .service-list li {
  flex: 1 1 220px;
  min-width: 180px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 10px rgba(49,49,57,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-preview .service-list li:hover, .services-preview .service-list li:focus-within {
  box-shadow: 0 8px 26px rgba(49,49,57,0.10);
}
.services-preview .btn-primary {
  align-self: center;
}

/*==== TESTIMONIALS ====*/
.testimonials-preview, .testimonials {
  background: #F4ECE7;
  padding: 40px 0 32px;
}
.testimonials-preview .testimonial-card,
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(49,49,57,0.09);
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #313139;
  min-height: 74px;
  transition: box-shadow 0.2s, border 0.2s;
  border-left: 6px solid #A68D68;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 32px rgba(166,141,104,0.11), 0 2px 10px rgba(49,49,57,0.10);
}
.testimonial-card p {
  flex: 1 1 80%;
  margin-bottom: 0;
  color: #313139;
}
.testimonial-card strong {
  min-width: 140px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #A68D68;
  margin-left: 10px;
  text-align: right;
}
.ratings-overview {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  margin-top: 12px;
  color: #313139;
  box-shadow: 0 1px 8px rgba(49,49,57,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1rem;
  gap: 8px;
}
.ratings-overview strong {
  color: #A68D68;
}

/*==== SERVICE GRID on servizi.html ====*/
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.service-category {
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px 20px 20px;
  box-shadow: 0 2px 8px rgba(49,49,57,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-category h2 {
  font-size: 1.25rem;
  color: #A68D68;
  margin-bottom: 12px;
}
.service-category h3 {
  font-size: 1.1rem;
  color: #313139;
}

/* ==== FAQ ==== */
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 0 0;
}
.faq-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(49,49,57,0.07);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #313139;
}
.faq-list p {
  font-size: 1rem;
  color: #55585F;
}

/*==== PRICING ====*/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(49,49,57,0.05);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #EFF1F4;
}
.pricing-table th {
  background: #F4ECE7;
  color: #313139;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td:last-child {
  color: #A68D68;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-note {
  color: #55585F;
  font-size: 0.95rem;
  background: #f9f9fb;
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 18px;
}

/*==== GALLERY ====*/
.feature-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 22px 0;
}
.feature-highlights li {
  flex: 1 1 200px;
  min-width: 160px;
  background: #fff;
  padding: 18px 18px 12px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(49,49,57,0.045);
  font-size: 1.05rem;
  color: #313139;
}
.service-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.service-previews li {
  flex: 1 1 160px;
  min-width: 130px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 12px 10px 12px;
  box-shadow: 0 1px 8px rgba(49,49,57,0.05);
  margin-bottom: 20px;
  font-size: 1rem;
}
.service-previews h4 {
  color: #A68D68;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/*==== LEGAL TEXT BLOCKS ====*/
.legal .policy-text, .legal .gdpr-text, .legal .terms-text, .legal .cookie-text {
  color: #313139;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(49,49,57,0.06);
  padding: 26px 22px 24px 22px;
  font-size: 1.05rem;
}
.legal ul {
  margin-bottom: 12px;
  margin-top: 8px;
}
.legal ul li {
  margin-bottom: 7px;
  color: #504F58;
}

/*==== CONFIRMATION MESSAGE ====*/
.confirmation .thank-you-message {
  background: #F4ECE7;
  border-radius: 10px;
  color: #313139;
  padding: 28px 20px;
  margin: 18px 0 16px 0;
  font-size: 1.13rem;
  text-align: center;
}

/*==== BUTTON STYLES ====*/
.btn-primary {
  display: inline-block;
  background: #313139;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  margin: 8px 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(49,49,57,0.10);
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A68D68;
  color: #fff;
  box-shadow: 0 6px 24px rgba(166,141,104,0.18);
}

/*==== FOOTER ====*/
footer {
  background: #1D1D23;
  color: #F4ECE7;
  padding: 40px 0 20px 0;
  border-top: 3px solid #A68D68;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #F4ECE7;
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
  opacity: 0.95;
  padding: 7px 0;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #A68D68; opacity: 1; }
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.96rem;
  color: #F4ECE7;
  opacity: 0.86;
}
.footer-branding img {
  width: 48px;
  margin-bottom: 6px;
}

/*==== FLEX/GAP UTILITY CLASSES FOR LAYOUTS ====*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 1px 8px rgba(49,49,57,0.09);
  border-radius: 14px;
  padding: 24px 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*==== RESPONSIVE DESIGN (MOBILE FIRST) ====*/
@media (max-width: 1024px) {
  .feature-list, .features .content-wrapper, .service-grid, .feature-highlights, .service-previews, .services-preview .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .service-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 875px) {
  .container {
    max-width: 96vw;
  }
  .feature-list li, .service-category, .feature-highlights li, .service-previews li {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .section, .hero, .contact-cta, .cta, .features {
    padding: 26px 4vw;
  }
  .content-wrapper, .container {
    padding: 0 1vw;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 10px;
  }
  .mobile-nav { margin: 38px 12px; }
}
@media (max-width: 520px) {
  .hero { padding: 30px 0 24px 0; }
  .main-nav { gap: 7px; }
  .container { max-width: 100vw; padding: 0 6px; }
  .section, .features, .contact-cta, .cta {
    padding: 16px 2vw;
    margin-bottom: 30px;
  }
  .feature-list li, .service-category, .feature-highlights li, .service-previews li, .faq-list li, .card {
    padding: 14px 10px;
  }
}

/*==== ANIMATIONS & EFFECTS ====*/
.btn-primary, .main-nav a.btn-primary {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.13s;
}
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(166,141,104,0.13);
}
.card, .service-category, .testimonial-card {
  transition: box-shadow 0.21s, border 0.19s, transform 0.12s;
}
.card:active, .service-category:active, .testimonial-card:active {
  transform: scale(0.99);
}
input, textarea, select {
  border-radius: 6px;
  border: 1px solid #E1E3EA;
  padding: 9px 10px;
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
  min-width: 0;
  background: #fff;
  margin-bottom: 18px;
  transition: border 0.2s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #A68D68;
  box-shadow: 0 4px 16px rgba(49,49,57,0.07);
  outline: none;
}

/*==== COOKIE CONSENT BANNER ====*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #313139;
  color: #fff;
  z-index: 80;
  box-shadow: 0 -2px 24px rgba(49,49,57,0.10);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: transform 0.36s cubic-bezier(.74,.01,.54,1.02), opacity 0.28s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-text {
  max-width: 500px;
  font-size: 1rem;
  margin-right: 30px;
  color: #fff;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner .cookie-btn {
  border-radius: 22px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #A68D68;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.accept:hover,
.cookie-consent-banner .cookie-btn.accept:focus {
  background: #313139;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #fff;
  color: #313139;
  border: 1.6px solid #A68D68;
}
.cookie-consent-banner .cookie-btn.reject:hover,
.cookie-consent-banner .cookie-btn.reject:focus {
  background: #A68D68;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #313139;
  color: #fff;
  border: 1.4px solid #A68D68;
}
.cookie-consent-banner .cookie-btn.settings:hover,
.cookie-consent-banner .cookie-btn.settings:focus {
  background: #A68D68;
  color: #fff;
}

/*==== COOKIE MODAL ====*/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(49,49,57,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.25s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #313139;
  padding: 38px 34px 32px 34px;
  border-radius: 18px;
  max-width: 440px;
  box-shadow: 0 14px 38px rgba(49,49,57,0.23);
  position: relative;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h2 {
  color: #313139;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  right: 18px; top: 15px;
  background: none;
  color: #313139;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-content .close-cookie-modal:hover {
  color: #A68D68;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #313139;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #A68D68;
  width: 18px; height: 18px;
  margin-right: 5px;
}
.cookie-category.essential label {
  color: #8D8C96;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-footer .cookie-btn {
  padding: 9px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px 12px 10px;
  }
  .cookie-consent-banner .cookie-text {
    margin-right: 0;
    max-width: 90vw;
  }
  .cookie-modal-content {
    padding: 18px 10px 16px 10px;
    max-width: 98vw;
    gap: 16px;
  }
}

/*==== ACCESSIBILITY ====*/
:focus-visible { outline: 2px solid #A68D68; outline-offset: 2px; }

/*==== UTILITY CLASSES ====*/
.d-flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.w-100 { width: 100%; }

/* End of style.css */