/* ================================================== */
/* 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, 
main, 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;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', serif;
  background: #FAFAF8;
  color: #1B3A4B;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
main {
  flex: 1 0 auto;
}
a {
  color: #1B3A4B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #47627a;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
img {
  max-width: 100%;
  display: inline-block;
  height: auto;
}
hr {
  border: none;
  border-top: 1px solid #dedede;
  margin: 32px 0;
}

/* ================================================== */
/* BRAND COLOR VARIABLES (with fallbacks) */
/* ================================================== */
:root {
  --primary: #1B3A4B;
  --primary-dark: #16303e;
  --secondary: #87C38F;
  --secondary-dark: #699e72;
  --accent: #F7F7F7;
  --white: #fff;
  --black: #101820;
  --gray-100: #F2F2F1;
  --gray-200: #e9edea;
  --gray-300: #ced9d2;
  --gray-400: #b7c3b9;
  --shadow: 0 6px 24px rgba(27, 58, 75, 0.08), 0 1.5px 4px 0px rgba(27,58,75,0.05);
}

/* ================================================== */
/* TYPOGRAPHY - Elegant Classic Aesthetic */
/* ================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.17;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.26;
}
h4 {
  font-size: 1.08rem;
  font-weight: 700;
}
p, li, span, label, input, button, strong, em {
  font-family: 'Roboto', Georgia, serif;
  color: var(--primary);
  font-weight: 400;
}
p, .content-wrapper > ul, .content-wrapper > ol {
  margin-bottom: 18px;
}
blockquote {
  font-family: 'Montserrat', serif;
  font-size: 1.25rem;
  padding-left: 22px;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  margin: 24px 0 24px 10px;
}
strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.08rem;
  }
}

/* ================================================== */
/* GENERAL STRUCTURE & CONTAINERS */
/* ================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 990px) {
  .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  .content-wrapper {
    max-width: 99vw;
    padding: 0;
  }
}

/* ================================================== */
/* HEADER LAYOUT */
/* ================================================== */
header {
  background: var(--accent);
  border-bottom: 1px solid var(--gray-200);
  padding-top: 10px;
  padding-bottom: 10px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header img {
  height: 46px;
  width: auto;
  vertical-align: middle;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  padding: 7px 0;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  position: relative;
}
header nav a.cta {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 32px;
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-left: 20px;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(27, 58, 75, 0.16);
}
header nav a:hover, header nav a:focus {
  color: var(--secondary-dark);
  background: var(--gray-200);
}

/* Hamburger Button */
.mobile-menu-toggle {
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: none;
  margin-left: 12px;
  outline: none;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--secondary);
}

@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================================================== */
/* MOBILE MENU - OVERLAY NAVIGATION */
/* ================================================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 0 64px 0px rgba(27,58,75,0.16);
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  animation: mobileMenuFadeIn 0.44s cubic-bezier(.16,1,.29,0.99);
}
@keyframes mobileMenuFadeIn {
  0% { opacity: 0; }
  60% { opacity: 1; }
  100% { opacity: 1; }
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1010;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 86px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  color: var(--primary);
  font-size: 1.22rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 18px;
  display: block;
  transition: background 0.16s, color 0.16s;
  min-width: 220px;
  text-align: center;
  margin-bottom: 2px;
}
.mobile-nav a.cta,
.mobile-nav a[href*='menue'] {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  margin-top: 15px;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gray-200);
  color: var(--primary-dark);
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================================================== */
/* SECTION SPACING (MANDATORY PATTERNS) */
/* ================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px){
  section {
    margin-bottom: 38px;
    padding: 20px 0 28px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(27,58,75,0.11);
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--gray-100);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(27,58,75,0.10);
  padding: 24px 26px;
  min-width: 230px;
  transition: box-shadow 0.16s, background 0.16s;
}
.card:hover, .card:focus-within {
  background: var(--secondary);
  box-shadow: 0 4px 18px rgba(27,58,75,0.16);
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(27,58,75,0.10);
  flex-wrap: wrap;
  min-height: 68px;
  transition: background 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  background: var(--secondary);
  box-shadow: 0 6px 20px rgba(135,195,143,0.12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Gap and alignment for default ul li when used as cards */
.content-wrapper > ul, .content-wrapper > ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Blog Post List / Category Filters */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-post-list > div {
  flex: 1 1 320px;
  background: var(--gray-100);
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(27,58,75,0.06);
  padding: 18px 24px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0px;
}
.category-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.category-filters button {
  background: var(--secondary);
  border: none;
  border-radius: 8px;
  color: var(--primary);
  font-family: 'Montserrat', serif;
  padding: 6px 16px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  cursor: pointer;
  margin-right: 4px;
}
.category-filters button:hover, .category-filters button:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27,58,75,0.09);
}

/* Highlighted Article */
.highlighted-article {
  background: var(--secondary);
  border-radius: 12px;
  padding: 10px 16px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

/* Recipe Tabs and Filters */
.recipe-tabs {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.recipe-tabs span {
  font-family: 'Montserrat', serif;
  border-radius: 8px;
  background: var(--gray-200);
  color: var(--primary);
  padding: 6px 18px;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 3px;
}
.recipe-tabs span.active,
.recipe-tabs span:hover {
  background: var(--secondary);
  color: var(--primary);
}
.recipe-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.recipe-filters button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 6px;
  border: none;
  padding: 5px 13px;
  font-size: 0.98rem;
  cursor: pointer;
  margin-right: 3px;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  transition: background 0.16s, color 0.16s;
}
.recipe-filters button:hover, .recipe-filters button:focus {
  background: var(--primary);
  color: var(--white);
}

/* FAQ & Sample Menu */
.faq, .sample-menu {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 14px 26px;
  margin-bottom: 16px;
}

/* ================================================== */
/* BUTTONS (GLOBAL + CTA) */
/* ================================================== */
.cta, .content-wrapper a.cta, .content-wrapper button.cta, .cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.11rem;
  border-radius: 32px;
  padding: 14px 44px;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  outline: none;
  line-height: 1.08;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(27, 58, 75, 0.18);
}
button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27,58,75,0.10);
}

/* ================================================== */
/* LIST ICONS IN CONTENT */
/* ================================================== */
li > img {
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}

/* ================================================== */
/* FOOTER STYLING */
/* ================================================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 52px 0 22px 0;
  font-size: 1.0rem;
  border-radius: 44px 44px 0 0/16px 16px 0 0;
  box-shadow: 0px -2px 20px rgba(27,58,75,0.08);
  margin-top: 32px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
footer a, footer a:visited {
  color: var(--white);
  opacity: 0.88;
}
footer a:hover, footer a:focus {
  color: var(--secondary);
  opacity: 1;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  background-color: #e9edea;
}
.footer-contact span img {
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-copyright {
  margin-top: 22px;
  font-size: 0.98rem;
  opacity: 0.8;
}
@media (max-width: 600px){
  footer {
    padding: 32px 0 14px 0;
    border-radius: 18px 18px 0 0/10px 10px 0 0;
    font-size: 0.95rem;
  }
  footer .container {
    gap: 17px;
    padding: 0 3px;
  }
  .footer-contact span {
    font-size: 0.98rem;
  }
}

/* ================================================== */
/* COOKIE CONSENT BANNER & MODAL */
/* ================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0px -4px 32px 0px rgba(27,58,75,0.08);
  z-index: 2020;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw 20px 6vw;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.35s, opacity 0.3s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner .cookie-text {
  max-width: 540px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', serif;
  padding: 8px 22px;
  font-size: 1.01rem;
  border-radius: 22px;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(135,195,143,0.09);
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner button.reject {
  background: var(--gray-400);
  color: var(--primary);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner button.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.3px solid var(--gray-300);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 650px){
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 12px 12px 10px;
    border-radius: 14px 14px 0 0/8px 8px 0 0;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-text{
    max-width: 98vw;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
    margin-top: 4px;
  }
}

/* Cookie Modal Preferences */
.cookie-modal {
  position: fixed;
  z-index: 2050;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: rgba(27,58,75,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  animation: fadeInCookieModal 0.23s linear;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  80% { opacity: 0.97; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  padding: 34px 28px 28px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 48px 0px rgba(27,58,75,0.17);
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.cookie-modal-content h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}
.cookie-modal-content .category-label {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
}
.cookie-modal-content input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.3px solid var(--gray-300);
  border-radius: 4px;
  margin-right: 7px;
  background: var(--accent);
  position: relative;
  transition: border 0.14s, background 0.14s;
}
.cookie-modal-content input[type="checkbox"]:checked {
  background: var(--secondary);
  border-color: var(--secondary-dark);
}
.cookie-modal-content input[type="checkbox"]:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin: 2px auto;
  border-radius: 2px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.12s;
}
.cookie-modal-content input[type="checkbox"]:checked:after {
  opacity: 1;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal-content button {
  padding: 8px 20px;
  font-size: 0.98rem;
  border-radius: 12px;
  font-family: 'Montserrat', serif;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 26px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: var(--secondary-dark);
}

/* ================================================== */
/* RESPONSIVE LAYOUTS (FLEXBOX ONLY) */
/* ================================================== */
@media (max-width: 1080px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .blog-post-list {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .card, .blog-post-list > div {
    padding: 14px 8px;
    border-radius: 10px;
  }
  .card-container { gap: 13px; }
}

/* ================================================== */
/* UTILITIES & MICRO-INTERACTIONS */
/* ================================================== */
.shadow {
  box-shadow: var(--shadow);
}
.rounded {
  border-radius: 16px;
}

/* Subtle fade-in for cards/sections */
@media (prefers-reduced-motion: no-preference) {
  section, .card, .testimonial-card {
    animation: fadeinSection 0.8s cubic-bezier(.22,1,.36,1) both;
  }
}
@keyframes fadeinSection {
  from { opacity: 0; transform: translateY(33px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Images inside sections/cards (not logos) */
section img:not([alt*="Frostige Balance"]):not([alt*="logo"]), .card img, .testimonial-card img {
  border-radius: 6px;
  box-shadow: 0 2px 7px rgba(135,195,143,.05);
  background: var(--accent);
}

/* ================================================== */
/* CLASSIC ELEGANCE ENHANCEMENTS */
/* ================================================== */
section, .card, .testimonial-card, .faq, .sample-menu {
  border: 1.4px solid var(--gray-200);
}
.content-wrapper > ul > li, .content-wrapper > ol > li {
  padding-left: 4px;
}

/* Subtle shadow for elevation */
.card, .testimonial-card {
  box-shadow: var(--shadow);
}

/* Testimonials readable (dark on light) */
.testimonial-card p, .testimonial-card span {
  color: var(--primary);
  font-size: 1.10rem;
}
.testimonial-card span {
  font-weight: 500;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card img[alt*="Stern"], .testimonial-card img[alt*="star"] {
  height: 21px;
  margin-right: 1px;
  margin-left: 0;
}

/* Section h2 as primary divider, large gap */
.content-wrapper h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  padding-bottom: 2px;
  border-bottom: 2.5px solid var(--secondary);
  display: inline-block;
}

/* ================================================== */
/* OVERRIDE NESTED FLEX FOR LISTS THAT ARE NON-LAYOUT */
/* ================================================== */
ul, ol {
  display: block;
  flex-direction: initial;
  gap: initial;
}

/* ================================================== */
/* MISCELLANEOUS */
/* ================================================== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 8px;
}

/* Focus indicators for accessibility */
:focus {
  outline: 2px dashed var(--secondary-dark);
  outline-offset: 2px;
}

/* Avoid element overlaps by adequate spacings */
section + section, .card + .card, .testimonial-card + .testimonial-card, .faq + .sample-menu {
  margin-top: 24px;
}

/* Adequate z-index stacking */
header {
  z-index: 10;
  position: relative;
}
.mobile-menu, .cookie-banner, .cookie-modal { z-index: 2000; }

/* Hide elements offscreen for accessibility when closed */
[hidden] {display: none !important;}

/* END CSS */
