/* ==== 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, 
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 {
  line-height: 1.5;
  background: #20252b;
  color: #FDF6EE;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #D4A132;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffbe2;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}
button:focus, a:focus, input:focus {
  outline: 2px solid #D4A132;
  outline-offset: 2px;
}
section, main, aside, nav, header, footer {
  display: block;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
  color: #FDF6EE;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.1rem; }

p, li, label, input, select {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #e4e7ea;
}

strong { font-weight: bold; color: #FDF6EE; }

/* ==== CONTAINERS & STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35,66,87, 0.95);
  border-radius: 16px;
  box-shadow: 0 3px 32px 0 rgba(17,23,26,.19);
}
.content-wrapper:last-child {
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #272c34;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,66,87,.14);
  transition: transform .2s, box-shadow .22s;
  padding: 24px 20px;
}
.card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 5px 32px rgba(212,161,50,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  margin-bottom: 20px;
  background: #FDF6EE;
  color: #2b3441;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(35,66,87,0.11);
  font-size: 1.02rem;
}
.testimonial-card p { color: #234257; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== MAIN NAVIGATION ==== */
header {
  width: 100%;
  background: #23282d;
  border-bottom: 2px solid #222a34;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 78px;
  padding: 0 18px;
}
header img[alt="Speedy Truck Rezepte"] {
  height: 54px;
  margin-right: 32px;
}

nav.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
nav.main-nav a {
  color: #FDF6EE;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  transition: background 0.17s, color 0.17s;
  border-radius: 5px;
  position: relative;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.08rem;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #313944;
  color: #D4A132;
}
nav.main-nav .cta-primary {
  background: #D4A132;
  color: #234257;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .14s, color .14s, transform .13s;
  box-shadow: 0 2px 8px rgba(212,161,50,0.19);
}
nav.main-nav .cta-primary:hover, nav.main-nav .cta-primary:focus {
  background: #fffbe2;
  color: #234257;
  transform: translateY(-2px) scale(1.04);
}

button.mobile-menu-toggle {
  background: #313944;
  color: #D4A132;
  font-size: 2.3rem;
  border: none;
  border-radius: 6px;
  padding: 7px 17px 10px 17px;
  margin-left: 16px;
  display: none;
  align-items: center;
  cursor: pointer;
  transition: background .16s, color .15s;
  z-index: 111;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: #D4A132;
  color: #23282d;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23282d;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.6,.01,0,1);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  box-shadow: 6px 0 48px #0007;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #D4A132;
  font-size: 2.1rem;
  border: none;
  margin: 24px 0 24px 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: color .15s;
  z-index: 2010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFFBE2;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
  padding-left: 48px;
}
nav.mobile-nav a {
  color: #FDF6EE;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 0;
  border-radius: 7px;
  transition: background .14s, color .15s;
  font-family: 'Merriweather', Georgia, serif;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  background: #313944;
  color: #D4A132;
}

@media (max-width:1024px) {
  header .container { flex-direction: row; gap: 0; }
  nav.main-nav {
    gap: 10px;
  }
}
@media (max-width:900px) {
  .container { max-width: 98vw; }
  nav.main-nav { gap: 4px; }
}
@media (max-width:768px) {
  nav.main-nav { display: none; }
  button.mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper,
  .section { padding: 34px 7px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.3rem; }
}

/* ==== FLEXBOX LAYOUTS ==== */
.features ul, .features .feature-list,
.listings .recipe-list, .recipe-teasers,
.recipe-snippets, .recipe-list-by-region {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features ul li, .recipe-teasers article, .recipe-snippets article, .recipe-list article, .recipe-list-by-region article {
  background: #272c34;
  border-radius: 12px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 1px 8px rgba(35,66,87,0.11);
  flex: 1 1 220px;
  margin-bottom: 0;
  min-width: 250px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.features ul li:hover, .recipe-teasers article:hover, .recipe-snippets article:hover, .recipe-list article:hover, .recipe-list-by-region article:hover {
  transform: translateY(-5px) scale(1.023);
  box-shadow: 0 5px 26px rgba(212,161,50,0.16);
}

.quicklinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 4px 0;
}

.daily-inspiration {
  margin-top: 18px;
  color: #D4A132;
  font-size: 1.08rem;
  font-style: italic;
}

@media (max-width:900px) {
  .features ul, .features .feature-list,
  .listings .recipe-list, .recipe-teasers,
  .recipe-snippets, .recipe-list-by-region {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ======= BUTTONS & CTAs ======= */
.cta-primary, .cta-primary.home-button,
button, input[type="submit"], .settings-management button, .cookie-btn {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  text-transform: none;
  font-size: 1.08rem;
  padding: 12px 26px;
  border-radius: 24px;
  border: none;
  background: #D4A132;
  color: #234257;
  box-shadow: 0 1px 7px rgba(212,161,50,0.14);
  cursor: pointer;
  transition: background .18s, color .15s, transform .14s, box-shadow .18s;
  margin-right: 8px;
  margin-bottom: 8px;
  letter-spacing: .6px;
}
.cta-primary:hover, .cta-primary:focus,
.cta-primary.home-button:focus, .cta-primary.home-button:hover,
button:hover, .cookie-btn:hover, .settings-management button:hover {
  background: #FFFBE2;
  color: #234257;
  transform: translateY(-2px) scale(1.030);
  box-shadow: 0 2px 18px rgba(212,161,50,0.20);
}

.cookie-btn.reject {
  background: #313944;
  color: #D4A132;
}
.cookie-btn.reject:hover {
  background: #23282d;
  color: #FFFBE2;
}
.cookie-btn.settings {
  background: #234257;
  color: #D4A132;
}
.cookie-btn.settings:hover {
  background: #313944;
  color: #FFFBE2;
}

.settings-management button {
  margin: 0;
}

/* ========== HERO & HIGHLIGHTS ========== */
.hero {
  background: linear-gradient(120deg, rgba(35,66,87,.94), rgba(27,32,38,.75));
  box-shadow: 0 6px 48px rgba(17,23,26,.21);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 180px;
  border-radius: 18px;
  margin-bottom: 45px;
}
.highlights {
  background: #23282d;
  border-left: 5px solid #D4A132;
  box-shadow: 0 3px 16px 0 rgba(35,66,87,.23);
}
.cta-strip {
  background: #D4A132;
  color: #234257 !important;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 1px 20px rgba(35,66,87,0.10);
  padding-bottom: 25px;
  margin-bottom: 0;
}
.cta-strip .cta-primary {
  background: #234257;
  color: #fffbe2 !important;
}
.cta-strip .cta-primary:hover {
  background: #fffbe2;
}
.pledge-text {
  font-size: 0.99rem;
  color: #5a6b7a;
  margin-top: 10px;
}

/* ========== SPECIAL SECTIONS ========== */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #D4A132;
  font-size: 1.09rem;
}
.tradition-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 11px 0;
  font-size: 1.08rem;
  color: #D4A132;
  font-weight: 600;
}
.nostalgia-quote {
  font-size: 1.13rem;
  font-family: 'Merriweather', Georgia, serif;
  color: #FDF6EE;
  border-left: 4px solid #D4A132;
  padding-left: 15px;
  margin-top: 20px;
  font-style: italic;
  background: #272c34;
}

.family-favorites-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #D4A132;
  font-size: 1.02rem;
  margin-bottom: 7px;
}

/* ========== CARDS, BADGES & RATING ========== */
.rating-snippet {
  color: #D4A132;
  font-weight: 700;
  font-size: 1.08em;
}

.pop-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pop-tags span {
  background: #23282d;
  color: #D4A132;
  padding: 7px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.99rem;
  box-shadow: 0 1px 6px rgba(212,161,50,0.07);
  margin-bottom: 8px;
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 16px;
}
.pagination a {
  background: #D4A132;
  color: #234257;
  border-radius: 8px;
  padding: 4px 14px;
  font-weight: 700;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
}
.pagination span {
  color: #fffbe2;
  font-weight: bold;
  background: #234257;
  border-radius: 8px;
  padding: 4px 14px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
}

/* ========== FILTERS, FORMS & TAGS ========== */
.filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 10px 0;
}
.filters label {
  font-weight: 600;
  color: #D4A132;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.02rem;
}
.filters select {
  background: #272c34;
  color: #FDF6EE;
  border-radius: 8px;
  border: 1px solid #313944;
  padding: 5px 12px;
  margin-left: 6px;
  font-size: 1rem;
}
.recipe-search {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.recipe-search input[type="search"] {
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid #313944;
  background: #23282d;
  color: #D4A132;
  font-size: 1.02rem;
  width: 180px;
  margin-right: 5px;
  transition: border-color .13s;
}
.recipe-search input[type="search"]:focus {
  border-color: #D4A132;
}
.recipe-search button {
  padding: 10px 18px;
  border-radius: 18px;
  background: #D4A132;
  color: #234257;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  letter-spacing: .5px;
}

.sort-by-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #D4A132;
  font-weight: 600;
  font-size: 1rem;
}
.sort-by-time a {
  color: #FDF6EE;
  text-decoration: underline;
  font-weight: 500;
  margin: 0 2px;
}
.sort-by-time a:hover {
  color: #D4A132;
}

/* ========== ADDITIONAL SECTION ELEMENTS ========== */
.pro-tip-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #234257;
  color: #D4A132;
  border-radius: 10px;
  padding: 8px 14px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.03rem;
  box-shadow: 0 1px 8px rgba(212,161,50,0.08);
}
.quick-tip-boxes, .step-by-step-guides, .ingredient-hacks {
  background: #272c34;
  padding: 18px 17px;
  border-radius: 11px;
  margin-top: 18px;
  color: #fffbe2;
  font-size: 1.04rem;
  box-shadow: 0 1px 8px rgba(35,66,87,0.10);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list dt {
  font-weight: 700;
  color: #D4A132;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.07rem;
}
.faq-list dd {
  margin-left: 16px;
  font-size: .97rem;
  color: #e4e7ea;
  margin-bottom: 5px;
}
.submit-question-link {
  font-weight: 600;
  display: inline-block;
  margin-top: 14px;
  color: #D4A132;
  font-size: 1.06rem;
}
.submit-question-link:hover { color: #fffbe2; }

.data-request-form, .settings-management {
  margin: 30px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #23282d;
  border-radius: 11px;
  padding: 18px 16px;
}
.opt-out-links, .video-tutorial-links, .next-steps-links {
  margin: 14px 0;
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.opt-out-links a {
  color: #D4A132;
  text-decoration: underline;
  font-size: .99rem;
}
.video-tutorial-links img {
  width: 24px;
  margin-right: 7px;
}

.address-block, .opening-hours, .phone-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}
.map-snippet p {
  color: #D4A132;
  margin-top: 7px;
}

/* ============ FOOTER ============ */
footer {
  background: #20252b;
  padding: 38px 0 0 0;
  border-top: 2px solid #222a34;
  margin-top: 60px;
  box-shadow: 0 -2px 28px rgba(35,66,87,.12);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-radius: 0;
  margin-bottom: 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #D4A132;
  font-weight: 700;
  padding: 0 0 0 0;
  font-size: 1rem;
}
.footer-menu a:hover { color: #fffbe2; }
.text-section {
  flex: 2 1 300px;
  font-size: .98rem;
}
.text-section address {
  font-style: normal;
  color: #fffbe2;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.text-section img { vertical-align: middle; height: 17px; margin-right: 4px; }
.social-links {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
}
.social-links a img {
  height: 33px;
  width: 33px;
  background: #fffbe2;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 1px 8px rgba(17,23,26,0.13);
  transition: background .15s, transform .18s;
}
.social-links a:hover img {
  background: #D4A132;
  transform: rotate(-8deg) scale(1.07);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  background: #23282d;
  color: #fffbe2;
  box-shadow: 0 -1px 10px #191c20cc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px 22px 26px;
  z-index: 3003;
  animation: ccslidein 0.6s cubic-bezier(.69,-0.07,.33,1.29);
}
@keyframes ccslidein {
  0% { transform: translateY(90px); opacity: 0; }
  70% { transform: translateY(10px); opacity: .9; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  flex: 2 1 280px;
  font-size: 1.01rem;
  color: #fffbe2;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 20px;
}
.cookie-btn {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 19px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  letter-spacing: .09em;
  box-shadow: 0 2px 8px rgba(212,161,50,.11);
  transition: background .15s, color .15s, transform .11s;
}

/* Cookie consent modal/popup overlays */
.cookie-preferences-modal {
  display: none;
  position: fixed;
  z-index: 3100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(31,33,37,0.84);
  align-items: flex-end;
  justify-content: center;
}
.cookie-preferences-modal.open {
  display: flex;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from{opacity: 0;} to{opacity: 1;} }
.cookie-preferences-box {
  background: #272c34;
  color: #fffbe2;
  min-width: 320px; max-width: 99vw;
  margin: 0 0 46px 0;
  border-radius: 17px;
  box-shadow: 0 4px 38px #111b22a6;
  padding: 34px 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-preferences-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cookie-preferences-box h3 {
  color: #D4A132;
  font-size: 1.26rem;
}
.cookie-preferences-close {
  color: #D4A132;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.cookie-preferences-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  margin-bottom: 3px;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #313944;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background .17s;
  margin-right: 7px;
}
.cookie-category .cookie-toggle:checked {
  background: #D4A132;
}
.cookie-category .cookie-toggle::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: #fffbe2;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 3px;
  transition: left .18s, background .13s;
}
.cookie-category .cookie-toggle:checked::after {
  left: 16px;
  background: #234257;
}
.cookie-category label {
  font-size: 1rem;
  color: #D4A132;
}

.cookie-category.essential label {
  color: #6fb95d;
  font-weight: bold;
}
.cookie-category.essential .cookie-toggle {
  background: #313944 !important;
}
.cookie-category.essential .cookie-toggle:checked {
  background: #313944 !important;
}
.cookie-category.essential .cookie-toggle::after {
  background: #C0C0C0 !important;
}

.cookie-preferences-footer {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
@media (max-width:690px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 10px 18px 10px;
  }
  .cookie-consent-actions { margin-left:0; }
  .cookie-preferences-box {
    padding: 19px 8px 17px 10px;
  }
}

/* ===== Responsive alignments for flex layouts ==== */
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container { gap: 16px; }
  .features ul, .recipe-list, .recipe-teasers, .recipe-snippets, .recipe-list-by-region {
    flex-direction: column;
    gap: 18px;
  }
}

/* ============== THANK YOU PAGE & MESSAGES ============== */
.thank-you { text-align: center; padding: 56px 7px; }
.confirmation-message { font-size: 1.18rem; margin: 26px 0 19px 0; color: #D4A132; }
.next-steps-links { display: flex; justify-content: center; gap: 14px; color: #FDF6EE; font-weight: 500; margin-bottom: 28px; }
.next-steps-links a{ color: #D4A132; text-decoration: underline; font-size: 1rem; }
.next-steps-links a:hover{ color: #fffbe2; }
.home-button { margin-top: 12px; }

/**** Special utility classes ****/
@media (max-width: 699px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .footer-menu { padding-bottom: 12px; }
}

/**** Miscellaneous tweaks for industrial modern look ****/
.card, .features ul li, .recipe-teasers article, .recipe-snippets article, .recipe-list article, .recipe-list-by-region article {
  border: 1.5px solid #2f3741;
  box-shadow: 0 1.5px 12px 0 rgba(57,68,75,.09);
}

/**** Hide scroll for overlayed menus/modals/handle stacking ****/
.mobile-menu.open, .cookie-preferences-modal.open { overflow-y: auto; }

/**** LEGAL/CONTENT SECTION STYLING ****/
.legal h1, .legal h2, .legal h3{
  color: #D4A132;
}
.legal ul, .legal ol{
  margin-left: 18px;
  margin-bottom: 9px;
}
.legal li{
  margin-bottom: 5px;
}
.legal address{
  margin: 9px 0 12px 0;
}
.legal p, .legal li, .legal dd {
  color: #e4e7ea;
  font-size: 1rem;
}

/* =========== ELEMENT OVERRIDES FOR CONTRAST/ACCESSIBILITY =========== */
.testimonial-card, .testimonial-card * {
  color: #234257 !important;
  background: #FDF6EE !important;
}
.testimonial-card span {
  font-weight: 700;
  color: #D4A132 !important;
}

/**** CONTACT FORM/TEXT ****/
.contact-form .form-fields {
  background: #272c34;
  border-radius: 13px;
  padding: 18px 14px 20px 14px;
  color: #D4A132;
  margin-bottom: 20px;
}
.data-protection-text {
  background: #313944;
  color: #FDF6EE;
  border-radius: 11px;
  padding: 16px 13px;
  font-size: 0.99rem;
}

/**** ADDRESS AND ICON ALIGNMENT ****/
.address-block address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #FDF6EE;
}
.opening-hours, .phone-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #D4A132;
}
.opening-hours img, .phone-email img {
  height: 20px;
}

/**** CARD MARGIN ENFORCEMENT ****/
.features ul li, .recipe-teasers article, .recipe-snippets article, .recipe-list article, .recipe-list-by-region article {
  margin-bottom: 20px;
}

/**** A11Y: OVERRIDE FOR .cta-primary on dark backgrounds ****/
.cta-primary, .home-button {
  color: #234257;
  background: #D4A132;
}
.cta-primary:hover, .cta-primary:focus {
  color: #234257;
  background: #FFFBE2;
}

/**** CATEGORY BADGES ****/
.family-favorites-badge{
  background: #313944;
  padding: 7px 13px 7px 10px;
  border-radius: 10px;
}
.family-favorites-badge img{ height: 17px; margin-right:4px; }

/**** Responsive table hack ****/
table { display: block; width: 100%; overflow-x: auto; border-spacing: 0; }
th, td { padding: 7px 9px; border: 1px solid #2f3741; }

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