/* ========================================================
   CSS Reset & Normalize (mobile-first, flexbox only)
   ======================================================== */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  line-height: 1.5;
  background-color: #212529;
  color: #F7F4EF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(135deg, rgba(38,70,83,0.98) 65%, rgba(40,40,40,0.97) 100%);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: #E76F51; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #ff8f6a; }

/* Typography (Industrial Modern) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F7F4EF;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li { font-family: 'Roboto', Arial, sans-serif; font-weight: 400; color: #ECE6DE; font-size: 1rem; margin-bottom: 18px; }
strong { color: #F7F4EF; font-weight: 700; }
ul, ol { margin-left: 22px; }
hr {
  border: none;
  border-top: 1px solid #3e4951;
  margin: 32px 0;
}

.newsletter-form a {
  color: white;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(38,70,83,0.85);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(30,34,38,0.10), 0 1.5px 6px 0 #1b232f33;
}

/* Flex: Card & Feature Containers (MANDATORY Patterns) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #23272b;
  border: 1.5px solid #434c51;
  border-radius: 16px;
  box-shadow: 0 3px 11px 0 rgba(30,34,38,0.11);
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.23s, border-color 0.23s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card:hover, .card:focus-within {
  border-color: #E76F51;
  box-shadow: 0 7px 22px 0 rgba(231,111,81,0.13), 0 2px 5px 0 #42424235;
  z-index: 2;
}
.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: #F7F4EF;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(38,70,83,0.09);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.16s;
  border-left: 6px solid #E76F51;
}
.testimonial-card p {
  color: #222;
  margin-right: 12px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 18px 0 rgba(38,70,83,0.16);
  border-left: 6px solid #264653;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* General Spacing (MANDATORY) */
section:not(:last-child) {
  margin-bottom: 60px;
}

/* Navigation Header */
header {
  background: #23272b;
  border-bottom: 2.5px solid #32383c;
  box-shadow: 0 2px 7px 0 #23272b22;
  position: relative;
  width: 100%;
  z-index: 11;
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: #F7F4EF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.21s, border-color 0.23s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #E76F51;
  border-bottom: 2px solid #E76F51;
}
header .btn-primary {
  margin-left: 18px;
}

/* Brand Logo */
header img[alt="Saveurs de Nantes"] {
  max-height: 50px;
  margin-right: 15px;
  background: transparent;
}

/* Burger/Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #23272b;
  color: #E76F51;
  border: none;
  font-size: 2.1rem;
  padding: 10px 19px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-items: center;
  justify-content: center;
  z-index: 21;
  outline: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2e3237;
  color: #ff8f6a;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23272b;
  z-index: 99;
  padding: 0 0 40px 0;
  transform: translateX(-110vw);
  transition: transform 0.39s cubic-bezier(.28,.93,.32,.95);
  opacity: 0;
  pointer-events: none;
  box-shadow: 8px 0 32px 0 #222c3014;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #E76F51;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 25px 0 0;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 111;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #ff8f6a;
}
.mobile-nav {
  display: flex !important; 
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  padding-left: 45px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #F7F4EF;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 0 7px 0;
  border-bottom: 2px solid transparent;
  width: fit-content;
  transition: color 0.18s, border-color 0.20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E76F51;
  border-bottom: 2px solid #E76F51;
}

/* Responsive Header/Nav adjustments */
@media (max-width: 992px) {
  header .container { flex-wrap: wrap; gap: 8px; }
  header nav { gap: 15px; }
  header nav a { font-size: 0.97rem; }
}
@media (max-width: 768px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu { display: flex; }
}


/* Buttons */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 12px 32px;
  background: #E76F51;
  border: 0;
  border-radius: 8px;
  color: #F7F4EF;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.13s;
  text-transform: uppercase;
  box-shadow: 0 2px 7px 0 #2b2e2e33;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-bottom: 4px;
  text-align: center;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #264653;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 23px #E76F5140;
}
.btn-secondary {
  background: none;
  color: #E76F51;
  border: 2px solid #E76F51;
  box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E76F51;
  color: #fff;
  border-color: #E76F51;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 13px #E76F5130;
}

/* HERO + Features */
.tagline {
  color: #E76F51;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.29rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.features-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid > div {
  background: #23272b;
  border-radius: 14px;
  border: 1.5px solid #454e54;
  padding: 26px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 10px 0 #18222412;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, border-color 0.17s;
  margin-bottom: 20px;
  gap: 6px;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 7px 21px #26262619;
  border-color: #E76F51;
  z-index: 2;
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
  filter: grayscale(0.1) contrast(1.1);
}

/* Recipe Lists / Blog Lists */
.recipe-list, .categories-filter, .filters-by-type {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  list-style: none;
}
.recipe-list li, .blog-highlights article {
  background: #23272b;
  border-radius: 10px;
  border: 1.5px solid #3e4951;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #26323811;
  padding: 22px 18px 16px 22px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.recipe-list li:hover, .blog-highlights article:hover, .recipe-list li:focus-within, .blog-highlights article:focus-within {
  border-color: #E76F51;
  box-shadow: 0 7px 21px #E76F5130;
}
.recipe-list a, .blog-highlights a {
  color: #E76F51;
  font-weight: bold;
}
.recipe-list a:hover, .blog-highlights a:hover {
  color: #F7F4EF;
}

/* CTA Section */
.cta-section {
  background: #E76F51;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px 0 #E76F5130;
  text-align: left;
}
.cta-section h2,.cta-section h3 { color: #fff; }
.cta-section .btn-primary {
  background: #fff;
  color: #E76F51;
  border: none;
  margin-top: 14px;
  transition: background 0.16s, color 0.16s;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #222;
  color: #fff;
}

/* Footer */
footer {
  background: #23272b;
  border-top: 2.5px solid #32383c;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 0 14px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F7F4EF;
}
.footer-menu a {
  color: #ECE6DE;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #E76F51;
}
.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #F7F4EF;
  font-size: 1rem;
  margin-bottom: 20px;
}
.contact-info-footer img {
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
  width: 17px; height: 17px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-bottom: 5px;
}
.social-links a img { filter: grayscale(0.1) contrast(1.03); opacity: 0.85; transition: opacity 0.20s, filter 0.20s; }
.social-links a:hover img, .social-links a:focus img { opacity: 1; filter: none; }


/* Chefs Profiles */
.chefs-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.chef-profile {
  background: #23272b;
  border-radius: 11px;
  border: 1.5px solid #3e4951;
  padding: 23px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 7px #26262612;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chef-profile .chef-specialty {
  color: #E76F51;
  font-size: 0.95rem;
  font-family: 'Montserrat';
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.02em;
}


/* Testimonial Slider */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}


/* Blog Features */
.blog-highlights, .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  align-items: stretch;
  margin-bottom: 14px;
}
.blog-highlights article, .blog-grid article {
  background: #23272b;
  border-radius: 10px;
  border: 1.5px solid #3e4951;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 2px 8px #26323811;
  padding: 19px 16px 14px 16px;
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

/* Search/filter bar */
.search-filter, .search-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.search-filter input, .search-bar input {
  flex: 1 1 200px;
  background: #222729;
  border: 1.2px solid #333942;
  border-radius: 7px;
  height: 46px;
  color: #F7F4EF;
  font-size: 1rem;
  padding: 0 14px;
  outline: none;
  transition: border 0.15s, box-shadow 0.14s;
}
.search-filter input:focus, .search-bar input:focus {
  border-color: #E76F51;
  box-shadow: 0 2px 9px #E76F513b;
}
.filters-by-type span, .categories-filter span {
  padding: 7px 19px;
  border-radius: 8px;
  background: #23272b;
  border: 1.3px solid #474950;
  color: #EEE5DD;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  margin-bottom: 7px;
  margin-right: 8px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.17s, background 0.17s;
}
.filters-by-type span:hover, .categories-filter span:hover {
  color: #E76F51;
  border-color: #E76F51;
  background: #252A2D;
}

/* legal pages */
.legal {
  background: rgba(38,70,83,0.92);
  border-radius: 13px;
  box-shadow: 0 2px 13px #2646531a;
  padding: 28px 17px;
}
.legal h1, .legal h2 { color: #E76F51; }

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.04rem;
  margin-bottom: 8px;
}

/*************** Responsive Flex / Typography ***************/
@media (max-width: 1100px) {
  .container { max-width: 980px; }
  .features-grid, .chefs-profiles, .blog-highlights, .blog-grid, .testimonial-slider, .card-container, .content-grid {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .container { max-width: 760px; }
  .features-grid, .chefs-profiles, .blog-highlights, .blog-grid, .testimonial-slider, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 98%; padding-left: 12px; padding-right: 12px; }
  .features-grid,
  .chefs-profiles,
  .blog-highlights,
  .blog-grid,
  .testimonial-slider,
  .card-container,
  .content-grid,
  .recipe-list
  {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper, .cta-section {
    padding: 0;
    border-radius: 11px;
    box-shadow: none;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 6px;
    border-radius: 10px;
  }
  .footer-menu, .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-info-footer {
    font-size: 0.98rem;
  }
  .testimonial-card,
  .features-grid > div,
  .card,
  .chefs-profiles > .chef-profile,
  .recipe-list li,
  .blog-highlights article,
  .blog-grid article {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .search-filter, .search-bar {
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu .mobile-nav {
    padding-left: 22px;
  }
}

/*************** Cookie Consent Banner ***************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 200;
  background: #23272b;
  color: #F7F4EF;
  border-top: 2px solid #E76F51;
  box-shadow: 0 -3px 18px #434c5130;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  gap: 20px;
  height: auto;
  min-height: 80px;
  animation: cookie-banner-in 0.5s cubic-bezier(.19,.7,.32,1.04);
}
@keyframes cookie-banner-in {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 2 1 300px;
  font-size: 0.98rem;
  color: #F7F4EF;
  line-height: 1.45;
}
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-banner .btn-accept, .cookie-banner .btn-reject, .cookie-banner .btn-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 10px 22px;
  cursor: pointer;
  word-break: keep-all;
  letter-spacing: 0.005em;
  border: none;
  transition: background 0.17s, color 0.15s, border 0.17s;
}
.cookie-banner .btn-accept {
  background: #E76F51;
  color: #fff;
  border: none;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #264653;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: none;
  border: 2px solid #E76F51;
  color: #E76F51;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #E76F51;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #42525d;
  color: #fff;
  border: 2px solid #42525d;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #23272b;
  color: #E76F51;
  border: 2px solid #E76F51;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 18px 7px;
    font-size: 0.96rem;
  }
  .cookie-banner-message { font-size: 0.94rem; }
  .cookie-banner-btns { gap: 10px; }
}

/*************** Cookie Modal ***************/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,25,26,0.68);
  z-index: 222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.31s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #23272b;
  color: #F7F4EF;
  border-radius: 17px;
  max-width: 440px;
  width: 94vw;
  box-shadow: 0 8px 42px #2a2a2f77;
  padding: 36px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.44s cubic-bezier(.36,1.03,.47,1.09);
}
@keyframes cookie-modal-in {
  from { transform: translateY(44px) scale(0.91); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: #E76F51;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-family: 'Montserrat';
  font-size: 1.02rem;
  font-weight: 500;
  color: #F7F4EF;
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 13px;
  position: relative;
  background: #42525d;
  cursor: pointer;
  margin-right: 7px;
  border: 1.3px solid #264653;
  transition: background 0.14s, border 0.14s;
  display: inline-block;
}
.cookie-toggle[data-checked="true"] { background: #E76F51; border-color: #E76F51; }
.cookie-toggle span {
  content: '';
  display: block;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.22s;
}
.cookie-toggle[data-checked="true"] span { left: 20px; }
.cookie-category[data-required="true"] .cookie-toggle {
  background: #bfbfc2;
  border-color: #bfbfc2;
  cursor: not-allowed;
}
.cookie-category[data-required="true"] label {
  color: #bbb;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  background: #E76F51;
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal-actions button:last-child {
  background: #23272b;
  color: #E76F51;
  border: 2px solid #E76F51;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #264653;
  color: #fff;
}
.cookie-modal-actions button:last-child:hover, .cookie-modal-actions button:last-child:focus {
  background: #E76F51;
  color: #fff;
}
@media (max-width: 430px) {
  .cookie-modal {
    padding: 16px 6px 14px 6px;
    border-radius: 9px;
  }
}

/*************** Miscellaneous ***************/
::-webkit-scrollbar {
  width: 12px;
  background: #22292f;
}
::-webkit-scrollbar-thumb {
  background: #32383c;
  border-radius: 4px;
}

abbr, acronym { border-bottom: 1px dotted #333; cursor: help; }
blockquote, q { quotes: "\201C" "\201D" "\2018" "\2019"; font-style: italic;}
blockquote:before, q:before { content: open-quote; }
blockquote:after, q:after { content: close-quote; }

/*************** Utilities ***************/
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }

/*************** Accessibility ***************/
:focus {
  outline: 2px solid #E76F51;
  outline-offset: 2px;
}

/************* Hide JS-only elements by default *************/
.cookie-banner, .cookie-modal-overlay, .mobile-menu {
  display: none;
}
.cookie-banner.active, .cookie-modal-overlay.active, .mobile-menu.active {
  display: flex;
}

/* END CSS */
