/* ===================================================
   CSS RESET & BASELINE NORMALIZATION
   =================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F8F8;
  color: #1B2845;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ===================================================
   FONT IMPORTS & BASE TYPOGRAPHY
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.09;
  color: #1B2845;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 12px;
  text-shadow: 0 2px 24px #FDB74133;
}
h2 {
  font-size: 2rem; /* 32px */
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1B2845;
  margin-bottom: 10px;
}
strong, b {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #DF294A;
}

/* ===================================================
   CONTAINER & SPACING
   =================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(27, 40, 69, 0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 40px;
  }
}

/* =====================
   DYNAMIC FLEX LAYOUTS
   ===================== */
.card-container, .brand-grid, .brand-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .brand-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F8F8F8;
  padding: 24px 26px;
  border-radius: 18px;
  min-width: 250px;
  max-width: 420px;
  box-shadow: 0 2px 18px 0 rgba(27,40,69,0.08), 0 0 0 3px #FDB74140;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 38px 0 #1b284560, 0 0 0 5px #FDB74190;
  transform: translateY(-6px) scale(1.025);
}
.testimonial-card p {
  color: #1B2845;
  font-size: 1.06rem;
}
.testimonial-card span {
  font-weight: 700;
  color: #DF294A;
  font-size: 0.97rem;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF8E7;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(253, 183, 65, 0.09);
  padding: 24px 18px 18px 18px;
  min-width: 220px;
  max-width: 360px;
  margin-bottom: 20px;
  border-left: 5px solid #FDB741;
  transition: background 0.25s, box-shadow 0.25s;
}
.feature:hover {
  background: #FFF4C0;
  box-shadow: 0 4px 36px 0 #FDB74140, 0 0 0 6px #FFF3DA;
}
.feature img {
  width: 44px;
  height: 44px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(27, 40, 69, 0.10);
  padding: 28px 20px;
  transition: box-shadow 0.25s, outline 0.2s;
}
.card:hover {
  box-shadow: 0 4px 28px 0 #1B284540;
  outline: 2px solid #DF294A;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #1B2845;
  color: #FFF;
  border-radius: 14px;
  padding: 10px 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  box-shadow: 0 1px 10px 0 #FDB74180;
}
.brand-item img {
  width: 30px;
}

.brand-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.brand-list li {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #FDB74130;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

@media (max-width: 768px) {
  .brand-list ul {
    flex-direction: column;
    gap: 10px;
  }
  .brand-item, .brand-list li { font-size: 1rem; }
}

.ratings, .ratings-summary {
  background: #1B2845;
  color: #FDB741;
  padding: 11px 24px;
  border-radius: 26px;
  font-weight: 900;
  display: inline-block;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
}

.numbers-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.numbers-stats > div {
  background: #FDB741;
  color: #1B2845;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 1.15rem;
  box-shadow: 0 1px 12px 0 rgba(253,183,65,0.25);
}

/* =============================
   BUTTONS & LINKS – BOLD, DYNAMIC
   ============================= */
.btn-primary {
  background: #DF294A;
  color: #FFF;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1.2px;
  font-size: 1.10rem;
  text-transform: uppercase;
  padding: 14px 44px;
  display: inline-block;
  margin-top: 14px;
  box-shadow: 0 2px 18px 0 #DF294A33;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
}
.btn-primary:active {
  background: #A61730;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FDB741;
  color: #1B2845;
  box-shadow: 0 4px 36px 0 #FDB74173;
  transform: scale(1.04);
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 12px 20px;
    font-size: 0.98rem;
  }
}

.btn-secondary {
  background: #1B2845;
  color: #FDB741;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 12px 36px;
  margin-top: 14px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px 0 #1B284533;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FDB741;
  color: #1B2845;
}

a {
  transition: color 0.16s, border-color 0.16s;
}
nav a:not(.btn-primary) {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 14px;
  margin: 0 4px;
  color: #1B2845;
  border-radius: 8px;
  transition: color 0.18s, background 0.2s;
  position: relative;
}
nav a:not(.btn-primary):hover, nav a:not(.btn-primary):focus {
  background: #FDB741;
  color: #1B2845;
}

/* ===================================================
   HEADER, NAVIGATION & LOGO
   =================================================== */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 24px 0 rgba(27,40,69,0.09);
  z-index: 51;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 0;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  height: 72px;
  padding-left: 16px;
  transition: transform 0.18s;
}
.logo img {
  height: 42px;
  width: auto;
  margin-right: 11px;
}
header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}
@media (max-width: 1080px) {
  header nav {
    gap: 0px;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: #FDB741;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: #1B2845;
    font-size: 2rem;
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 14px;
    border: none;
    z-index: 101;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #DF294A;
    color: #FFF;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #1B2845;
  color: #FDB741;
  font-family: 'Montserrat', Arial, sans-serif;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.57,1.26,.62,1), box-shadow 0.2s;
  z-index: 999;
  box-shadow: 0 0 38px 12px #1B284580;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 17px;
  background: none;
  color: #FDB741;
  font-size: 2.2rem;
  border: none;
  z-index: 1001;
  font-weight: 900;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFF;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #FDB741 !important;
  font-weight: 900;
  font-size: 1.37rem;
  padding: 8px 18px;
  border-radius: 10px;
  transition: background 0.18s, color 0.10s;
  margin: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FDB741;
  color: #DF294A !important;
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #1B2845;
  color: #FDB741;
  padding: 36px 0 24px 0;
  text-align: center;
  position: relative;
  z-index: 5;
}
footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
footer nav a {
  color: #FDB741 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  background: #FDB741;
  color: #1B2845 !important;
}
.company-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #FFF;
  opacity: 0.92;
}

/* ===================================================
   CONTACT INFO, ADDRESS, ICONS
   =================================================== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 10px 14px;
  background: #FFF;
  border-radius: 9px;
  box-shadow: 0 1px 8px 0 #1B284515;
  color: #1B2845;
}
.contact-info img {
  width: 22px;
  height: 22px;
}
@media (max-width: 650px) {
  .contact-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.address-details, .map-section, .transport-info {
  font-size: 1rem;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 1px 12px 0 #1B284515;
  margin-bottom: 20px;
  padding: 18px 16px;
}
.map-section {
  background: #FDB74110;
  font-weight: 700;
}

/* ===================================================
   LISTS, TIMELINES, TIPS, FAQ
   =================================================== */
ul, ol {
  margin: 0 0 10px 20px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 12px;
  font-size: 1rem;
  color: #1B2845;
}
ul li::before {
  content: '• ';
  color: #DF294A;
  font-weight: 900;
  position: absolute;
  left: -12px;
  top: 0;
}
ol li::before {
  display: none;
}
.history-timeline li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  color: #DF294A;
  background: #FDB74118;
  padding: 7px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.tip-list li, .faq li {
  background: #FFF;
  border-left: 4px solid #FDB741;
  padding: 7px 14px 7px 18px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}
.faq li strong {
  color: #DF294A;
}

.popular-brands ul li {
  background: #FFF8E7;
  border-radius: 10px;
  color: #1B2845;
  padding: 8px 14px;
  margin-bottom: 7px;
}

/* ===================================================
   SECTION & RESPONSIVE SPACING
   =================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 24px 5px;
    margin-bottom: 36px;
  }
}
.card, .feature, .testimonial-card, .brand-item, .brand-list li {
  margin-bottom: 20px;
}

/* ===== Scrollbar Styling (high energy accent!) ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #FDB741; border-radius: 6px; }
::-webkit-scrollbar-track { background: #F8F8F8; }

/* ===================================================
   GUARANTEE INFO (USLUGI PAGE)
   =================================================== */
.guarantee-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #FFFCEB;
  color: #DF294A;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.07rem;
  box-shadow: 0 1px 8px 0 #FDB74120;
  margin-top: 18px;
}
.guarantee-info img {
  width: 34px;
  height: 34px;
}

/* =================================================
   CALLOUT, ALERTS, INFO BLOCKS
   ================================================= */
.callout-to-services {
  background: #DF294A0A;
  border-left: 8px solid #DF294A;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 #DF294A14;
  padding: 19px 24px;
  margin-bottom: 18px;
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1050;
  background: #1B2845;
  color: #FDB741;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 20px 20px 20px;
  box-shadow: 0 -5px 32px 0 #1B284580;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.34s ease;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-message {
  max-width: 660px;
  font-size: 1.04rem;
  color: #FDB741;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: #FDB741;
  color: #1B2845;
  padding: 10px 22px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #DF294A;
  color: #FFF;
  box-shadow: 0 2px 10px 0 #DF294A33;
}
.cookie-banner .cookie-settings {
  background: #FFF;
  color: #DF294A;
}
.cookie-banner .cookie-settings:hover {
  background: #FDB741;
  color: #1B2845;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    padding: 18px 6px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #1B2845cc;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #FFF;
  color: #1B2845;
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 #1B284580;
  padding: 36px 32px;
  min-width: 340px;
  max-width: 94vw;
  min-height: 190px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn 0.38s cubic-bezier(.57,1.26,.62,1);
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: #DF294A;
  font-size: 1.53rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.cookie-modal .cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FFF8E7;
  padding: 10px 18px;
  border-radius: 10px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  color: #1B2845;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #FDB741;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category .category-desc {
  font-size: 0.97rem;
  color: #1B2845DD;
  margin-left: 6px;
}
.cookie-modal .category-essential label {
  color: #DF294A;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 17px;
  background: none;
  color: #DF294A;
  font-size: 2.1rem;
  border: none;
  z-index: 1001;
  font-weight: 900;
  transition: color 0.2s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #1B2845;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 24px;
  background: #FDB741;
  color: #1B2845;
  transition: background 0.19s, color 0.19s;
  border: none;
}
.cookie-modal .cookie-actions button:hover {
  background: #DF294A;
  color: #FFF;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 4vw;
    min-width: 0;
  }
}

/* ===================================================
   RESPONSIVE GLOBAL ADJUSTMENTS
   =================================================== */
@media (max-width: 1000px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  p, .feature, .card, .testimonial-card { font-size: 0.98rem; }
  .containers { max-width: 98vw; }
}
@media (max-width: 650px) {
  .container { padding: 0 3vw; }
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.13rem; }
  .card, .feature, .testimonial-card { font-size: 0.92rem; padding: 18px 10px; }
}
@media (max-width: 360px) {
  h1, h2, h3 { font-size: 1rem; }
  .card, .feature, .testimonial-card { font-size: 0.90rem; }
}

/* ===================================================
   MICRO-INTERACTIONS (SHADOW / HIGHLIGHT)
   =================================================== */
.card, .feature, .testimonial-card, .brand-item, .cookie-banner {
  transition: box-shadow 0.25s, background 0.2s, color 0.18s, transform 0.14s;
}
.card:focus-within, .feature:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px 0 #FDB74199;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #FDB741;
}

.btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #FDB741AA;
  outline-offset: 2px;
}

/* Spacing between content elements */
.card, .feature, .testimonial-card, .brand-item, .brand-list li, .content-grid > *, .feature-grid > *, .testimonials > *, .brand-grid > * {
  margin-bottom: 20px;
}

/* Prevent unwanted overlap */
.card, .testimonial-card, .feature {
  z-index: 1;
}

/* Utility classes */
.text-section {
  margin-top: 8px;
  margin-bottom: 18px;
}

/* Hide visually for accessibility (sr only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HIGH ENERGY EFFECTS */
@media (hover: hover) and (pointer: fine) {
  .btn-primary, .card, .feature, .testimonial-card, .brand-item {
    will-change: box-shadow, transform;
  }
  .btn-primary:hover {
    animation: shake 0.22s linear 1;
  }
  @keyframes shake {
    10% { transform: translateX(-2px); }
    30% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    100% { transform: none; }
  }
}

/* Z-INDEX STACKING */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  z-index: 1050;
}

/* END OF STYLE.CSS */
