/* ========== CSS RESET & BASE TYPOGRAPHY ========== */
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222A23;
  background-color: #f7f7f4;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
a {
  color: #377F3D;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #194d35;
  text-decoration: underline;
}

/* ========== CSS CUSTOM PROPERTIES - EARTH TONES & BRAND ======= */
:root {
  --brand-primary: #19324B;
  --brand-secondary: #7FC3D9;
  --brand-accent: #F2F2F2;
  --nature-deepgreen: #377F3D;
  --nature-midgreen: #75A964;
  --nature-beige: #f7f7f4;
  --nature-tan: #DFD5CA;
  --nature-brown: #8D7656;
  --nature-darkbrown: #4B4226;
  --nature-shadow: rgba(64, 96, 64, 0.10);
}

/* ========== UTILITIES & LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: var(--nature-beige);
  box-shadow: 0 10px 24px var(--nature-shadow);
}
@media (max-width: 992px) {
  .section {
    padding: 32px 12px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 24px 0;
    border-radius: 16px;
  }
}

/* Flex Containers Required by Spec */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--nature-shadow);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 6px var(--nature-shadow);
  margin-bottom: 20px;
  min-height: 80px; /* improve appearance on flex-wrap */
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Services grid (Services page + Homepage overview) */
.services-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--nature-shadow);
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 325px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .15s, transform .15s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 4px 20px rgba(39, 74, 43, 0.21);
  transform: translateY(-3px) scale(1.025);
}

@media (max-width: 1024px) {
  .services-grid, .services-list {
    gap: 14px;
  }
  .service-card, .card {
    min-width: 210px;
    flex-basis: 250px;
  }
}
@media (max-width: 768px) {
  .services-grid, .services-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .service-card, .card {
    width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 8px;
}
h2 {
  font-size: 1.4rem;
  margin-top: 8px;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}
p, ul, ol, li {
  color: #363F2F;
  font-size: 1rem;
}
p {
  margin-bottom: 10px;
}
strong {
  color: var(--nature-darkbrown);
  font-weight: 700;
}
ul, ol {
  margin-bottom: 14px;
  padding-left: 1.1em;
}
li {
  margin-bottom: 8px;
  list-style: disc inside;
  color: #355730;
}
ul li img {
  width: 22px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 8px;
  box-shadow: 0 1px 1.5px var(--nature-shadow);
}
.text-section ul, .content-wrapper ul {
  padding-left: 22px;
  margin: 0 0 8px 0;
}

/* Review average (testimonials) */
.review-average {
  color: var(--nature-deepgreen);
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 0.015em;
  margin: 12px 0 0 0;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--brand-accent);
  border-bottom: 2.5px solid var(--brand-secondary);
  box-shadow: 0 5px 20px var(--nature-shadow);
  position: sticky;
  top: 0; left: 0;
  z-index: 111;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  width: 180px;
  min-width: 80px;
  margin-right: 38px;
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--brand-primary);
  font-weight: 600;
  transition: background .18s, color .18s;
}
nav a:hover, nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cta-btn {
  background: linear-gradient(90deg, var(--nature-midgreen) 60%, var(--brand-secondary) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: 30px;
  font-weight: 700;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0 2px 10px rgba(37,80,34,.07);
  cursor: pointer;
  transition: background .18s, box-shadow .19s, transform .15s;
  border: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #3aa246 60%, #338a95 100%);
  color: #fff;
  box-shadow: 0 5px 18px rgba(37,80,34,.13);
  transform: scale(1.037);
}
.cta-link {
  font-weight: 700;
  color: var(--brand-primary);
  padding: 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  position: relative;
  transition: color .18s;
}
.cta-link:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../assets/icons/icon-arrow-right.svg') no-repeat center/contain;
  margin-left: 4px;
}
.cta-link:hover, .cta-link:focus { color: var(--nature-deepgreen); }

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--nature-deepgreen);
  color: #fff;
  font-size: 2rem;
  padding: 8px 26px 8px 12px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  z-index: 1000;
  transition: background .12s, color .12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  color: #194d35;
}
@media (max-width: 1024px) {
  header .container {
    flex-wrap: nowrap;
  }
  nav {
    gap: 13px;
  }
}
@media (max-width: 950px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: auto;
  }
}

/* ========== MOBILE MENU & OVERLAY ========== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248,255,245,0.98);
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.86,0,.07,1);
  z-index: 888;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 4px 32px #93ad9340;
}
.mobile-menu-close {
  background: var(--nature-deepgreen);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  position: absolute;
  right: 28px;
  top: 22px;
  z-index: 890;
  cursor: pointer;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 36px 30px;
}
.mobile-nav a {
  color: var(--brand-primary);
  background: transparent;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12em;
  font-weight: 600;
  transition: background .18s, color .16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
@media (max-width: 510px) {
  .mobile-nav {
    padding: 22px 10px;
  }
  .mobile-nav a {
    font-size: 1em;
    padding: 9px 10px;
  }
  .mobile-menu-close {
    right: 10px;
    top: 15px;
  }
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(140deg, #e0e9da 58%, #f9faf6 100%);
  padding: 68px 0 53px 0;
  box-shadow: 0 5px 30px #c6d2be40;
  border-radius: 0 0 34px 34px;
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-section h1 {
  color: var(--nature-deepgreen);
  font-size: 2.1rem;
  line-height: 1.14;
  margin-bottom: 10px;
}
.hero-section p {
  color: #365839;
  font-size: 1.1em;
  margin-bottom: 18px;
}
.hero-section .cta-btn {
  margin-top: 8px;
  font-size: 1.02em;
  box-shadow: 0 4px 14px #689b5045;
}
@media (min-width: 768px) {
  .hero-section h1 { font-size: 2.8rem; }
}
@media (max-width: 768px){
  .hero-section {
    padding: 32px 0 30px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 40px;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  border-left: 6px solid var(--nature-midgreen);
  font-size: 1.09em;
  background: #fff;
  color: #1A1E12;
  box-shadow: 0 2px 14px var(--nature-shadow);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.testimonial-card p {
  color: #26402c;
  margin: 0;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-size: .99em;
  margin-left: 12px;
}

/* ========== ABOUT & PAGE HEADINGS ========== */
.text-section h1,
.text-section > h1 {
  font-size: 2.1rem;
  color: var(--nature-deepgreen);
  margin-bottom: 0.2em;
}
.text-section ul {
  margin: 0 0 10px 0;
}
.text-section {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.text-section h2 {
  color: var(--nature-midgreen);
  font-size: 1.25rem;
}
@media (min-width: 700px) {
  .text-section h1 { font-size: 2.6rem; }
  .text-section h2 { font-size: 1.7rem; }
}

/* ========== CONTACT, FOOTER & ICONS ========== */
.contact-icons, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.contact-icons span, .contact-details span {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: var(--brand-primary);
  gap: 7px;
}
.contact-icons img, .contact-details img {
  width: 25px;
}
.business-hours, .map-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
  padding: 8px 0 8px 0;
  color: var(--nature-darkbrown);
}
.cta-section {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

footer {
  margin-top: 60px;
  background: #e1e8e1;
  border-top: 3px solid var(--brand-secondary);
  box-shadow: 0 0px 22px #dce7db6b;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 28px 20px;
  flex-wrap: wrap;
}
footer img {
  width: 58px;
  display: inline-block;
  margin-right: 10px;
}
footer span {
  display: inline-block;
  color: var(--nature-darkbrown);
  font-size: .99em;
  margin: 2px 7px 2px 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
footer nav a {
  color: var(--brand-primary);
  font-size: .98em;
  text-decoration: underline dotted;
  font-weight: 600;
  opacity: .89;
}
footer nav a:hover, footer nav a:focus { color: var(--nature-deepgreen); }
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 12px;
  }
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list > div {
  background: #f2f6ed;
  border-radius: 14px;
  box-shadow: 0 1px 7px var(--nature-shadow);
  padding: 18px;
  margin-bottom: 14px;
  transition: box-shadow .16s;
}
.faq-list > div:hover {
  box-shadow: 0 3px 16px #a3bcab39;
}
.faq-list h3 {
  color: var(--nature-deepgreen);
  font-size: 1.05em;
}
.faq-list p {
  font-size: .98em;
  color: #3B5242;
  margin-top: 4px;
}

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px #85a57e28;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 22px;
  z-index: 1850;
  padding: 22px 10px;
  border-top: 3px solid var(--nature-midgreen);
  animation: slidein-cb .42s cubic-bezier(.58,.15,.46,1.11);
}
@keyframes slidein-cb {
  0% { transform: translateY(120%); opacity: 0; }
  95% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  color: #38542c;
  font-size: 1em;
  line-height: 1.4;
}
.cookie-banner .cookie-btn {
  background: var(--nature-midgreen);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  margin-left: 7px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  transition: background .17s, box-shadow .17s;
  box-shadow: 0 1.5px 6px rgba(63,99,54,.09);
}
.cookie-banner .cookie-btn.reject {
  background: #eee6ba;
  color: #836F29;
}
.cookie-banner .cookie-btn.settings {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus { background: #4B8553; color: #fff; }
.cookie-banner .cookie-btn.reject:hover { background: #e6dac3; color: #95810a; }
.cookie-banner .cookie-btn.settings:hover { background: #4893ac; }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 18px 4px;
  }
  .cookie-banner .cookie-btn { margin-left: 0; margin-right: 6px; }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 310px;
  max-width: 94vw;
  background: #fff;
  border: 2.5px solid var(--nature-midgreen);
  border-radius: 18px;
  box-shadow: 0 7px 60px 0 #67816333;
  z-index: 2500;
  padding: 37px 20px 27px 32px;
  animation: fadeinmodal .3s cubic-bezier(.58,.17,.56,1.23);
}
@keyframes fadeinmodal {
  0% { transform: translate(-50%,70%); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translate(-50%,-50%); opacity: 1;}
}
.cookie-modal h2 {
  color: var(--nature-deepgreen);
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 700;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05em;
  margin-bottom: 13px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--nature-midgreen);
  width: 18px; height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 6px 18px;
  font-size: .98em;
}
.cookie-modal .always-on {
  color: #b5b59e;
  font-size: 0.93em;
  margin-left: 4px;
}
.cookie-modal .close {
  position: absolute;
  top: 19px; right: 22px;
  background: var(--nature-midgreen);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  transition: background .14s;
  line-height: 1;
}
.cookie-modal .close:hover { background: var(--brand-secondary); }

@media (max-width: 600px) {
  .cookie-modal {
    padding: 24px 4px 17px 10px;
    min-width: 200px;
    font-size: .97em;
  }
  .cookie-modal h2 { font-size: 1em; }
}

/* ========== BUTTONS, LINKS, MICROINTERACTIONS ========== */
button, .cta-btn, .cta-link,
.cookie-btn {
  cursor: pointer;
  outline: none;
  transition: background .18s, color .16s, box-shadow .14s, transform .17s;
}
button:focus-visible, .cta-btn:focus-visible,
.cta-link:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ========== CARDS (GENERIC) ========== */
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 6px var(--nature-shadow);
  transition: box-shadow .16s, transform .15s;
}
.card:hover, .card:focus-visible {
  box-shadow: 0 7px 24px #3d6a3e29;
  transform: translateY(-4px) scale(1.03);
}

/* ========== REVIEW PLATFORMS (recensioni) ========== */
.review-platforms {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.review-platforms img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e7e7db;
  box-shadow: 0 1.5px 9px #a1c1a125;
  transition: box-shadow .16s, transform .15s;
}
.review-platforms img:hover {
  box-shadow: 0 4px 24px #87b18a44;
  transform: scale(1.13);
}

/* ========== GENERIC SPACING & COLORS ========== */
main > section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  main > section { margin-bottom: 36px; }
}

/* ========== NATURAL TEXTURES, SHAPES & ORGANIC ELEMENTS ========== */
.section, .card, .service-card, .testimonial-card, .faq-list > div {
  border-radius: 18px 28px 24px 22px / 30px 12px 22px 24px;
  /* organic border radius */
}

/* Add subtle leaf/wood pattern - just a hint, not visual pollution */
.section {
  background:
    repeating-linear-gradient(145deg, #e6eee5fc, #f3f9f2fc 18px, transparent 28px, transparent 54px),
    var(--nature-beige);
}

/* Accent separation for organic look */
section:not(.hero-section) h2 {
  position: relative;
  padding-bottom: 3px;
}
section:not(.hero-section) h2:after {
  content: '';
  display: block;
  height: 4px;
  width: 48px;
  border-radius: 8px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--nature-midgreen) 68%, var(--brand-secondary) 100%);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  html {
    font-size: 96.7%;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .content-wrapper { gap: 14px; }
  .container { padding-left: 10px; padding-right: 10px; }
  footer .container { padding: 14px 6px; gap: 7px; }
  .review-platforms img { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
  .cta-btn, .cookie-btn { font-size: .97em; padding: 8px 12px; }
  nav a { font-size: .99em; padding: 6px 8px; }
  .testimonials .testimonial-card { flex-direction: column; gap: 7px; }
  .review-platforms { gap: 6px; }
}

/* ========== ANIMATIONS & MICROINTERACTIONS ========== */
.card, .service-card, .testimonial-card, .faq-list > div {
  transition: box-shadow .14s, transform .12s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .faq-list > div:hover {
  box-shadow: 0 14px 34px 0 #49784822;
  transform: translateY(-2px) scale(1.025);
}

.cta-btn, .cta-link, .cookie-btn {
  transition: background .16s, color .15s, box-shadow .13s, transform .15s;
}

.cta-btn:active { transform: scale(.99); }

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 2px dashed var(--brand-secondary);
  outline-offset: 2px;
}

/* ========== HIDE SCROLL WHEN MOBILE MENU/COOKIE MODAL ACTIVE ========== */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* ========== Z-INDEX LAYERING ========== */
header {
  z-index: 111;
}
.mobile-menu { z-index: 888; }
.mobile-menu-close { z-index: 890; }
.cookie-banner { z-index: 1850; }
.cookie-modal { z-index: 2500; }

/* ========== END ========== */
