/* --- FROSTGLANZ REZEPTE STYLE --- */
/* RESET & NORMALIZATION */
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, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #e5f0fa;
  color: #12395a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #f37062;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #d34737;
  text-decoration: underline;
}
button, .cta, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 14px 32px;
  background: #f37062;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(19,57,90,0.07);
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
  outline: none;
}
button.cta.secondary, .cta.secondary {
  background: #fff;
  color: #f37062;
  border: 2px solid #f37062;
}
button.cta.secondary:hover, .cta.secondary:hover {
  background: #f37062;
  color: #fff;
}
button:hover, .cta:hover, button:focus, .cta:focus {
  background: #d34737;
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(211,71,55,0.14);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
input[type="search"] {
  width: 100%;
  max-width: 360px;
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #f37062;
  border-radius: 24px;
  background: #fff;
  color: #12395a;
  margin: 24px 0 0 0;
  outline: none;
  transition: border 0.2s;
}
input[type="search"]:focus {
  border: 2px solid #12395a;
}
strong, b {
  font-weight: bold;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12395a;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.025em;
  margin-bottom: 18px;
  text-shadow: 0 4px 12px rgba(211,71,55,0.12);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f37062;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(243,112,98,0.08);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12395a;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f37062;
  font-weight: 500;
  margin-bottom: 6px;
}
p, ul, ol, dl {
  font-family: 'Roboto', Arial, sans-serif;
  color: #12395a;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* LAYOUT CONTAINERS & PATTERNS */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 5px 32px 0 rgba(19,57,90,0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #e5f0fa;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(211,71,55,0.07);
  padding: 24px 20px;
  transition: transform 0.18s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 10px 32px 0 rgba(211,71,55,0.14);
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #12395a;
  border-radius: 28px;
  box-shadow: 0 3px 18px 0 rgba(19,57,90,0.09);
  margin-bottom: 24px;
  border-left: 7px solid #f37062;
  transition: border 0.2s, box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: #12395a;
}
.testimonial-card span {
  font-size: 1rem;
  color: #f37062;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
  font-weight: 600;
}
.testimonial-card:hover {
  border-left-color: #d34737;
  box-shadow: 0 7px 36px 0 rgba(243,112,98,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER LAYOUT --- */
header {
  background: #fff;
  box-shadow: 0 6px 22px 0 rgba(19,57,90,0.08);
  border-bottom: 4px solid #e5f0fa;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 14px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}
.main-nav a {
  color: #12395a;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  background: #f37062;
  border-radius: 2px;
  width: 0;
  transition: width 0.22s;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #f37062;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta.primary {
  background: #f37062;
  color: #fff;
}
.cta.primary:hover {
  background: #d34737;
}
/* Burger Icon */
.mobile-menu-toggle {
  display: none;
  background: #e5f0fa;
  border: none;
  font-size: 2rem;
  color: #f37062;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f37062;
  color: #fff;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 468px) {
  .logo img {
    height: 34px;
  }
  .cta.primary {
    padding: 10px 14px;
    font-size: 15px;
  }
  header .container {
    min-height: 60px;
    gap: 5px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #e5f0fa;
  z-index: 1999;
  transform: translateX(-105vw);
  transition: transform 0.36s cubic-bezier(.54,.07,.38,1.12);
  box-shadow: 3px 0 40px 0 rgba(19,57,90,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  background: #fff;
  color: #f37062;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 16px 0 rgba(243,112,98,0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f37062;
  color: #fff;
}
.mobile-nav {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #12395a;
  font-weight: 700;
  padding: 10px 38px;
  border-radius: 24px;
  background: none;
  transition: background 0.17s, color 0.13s;
  min-width: 170px;
  text-align: center;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #f37062;
  color: #fff;
  outline: none;
}
@media (min-width: 1021px) {
  .mobile-menu { display: none; }
}

/* --- HERO AREA --- */
.hero {
  background: #e5f0fa;
  min-height: 320px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 64px 0 rgba(19,57,90,0.09);
  margin-bottom: 42px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 280px;
}
.hero .cta {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 20px 20px;
    min-height: 180px;
    margin-bottom: 22px;
    padding-top: 24px;
  }
  .hero .container {
    min-height: 120px;
  }
}

/* --- FEATURE GRID / HIGHLIGHTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 18px;
  justify-content: center;
}
.feature-grid > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px 0 rgba(243,112,98,0.10);
  padding: 26px 24px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.14s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 42px 0 rgba(19,57,90,0.13);
  transform: scale(1.03) rotate(-1.5deg);
  border: 2px solid #f37062;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  background: #e5f0fa;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 2px 10px 0 rgba(211,71,55,0.08);
}

/* --- LATEST RECIPES TEASER --- */
.latest-recipes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.latest-recipes-list li a {
  color: #12395a;
  font-size: 1.06rem;
  font-weight: 600;
  background: #e5f0fa;
  border-radius: 12px;
  padding: 9px 18px;
  display: inline-block;
  transition: background 0.18s, color 0.12s;
}
.latest-recipes-list li a:hover {
  background: #f37062;
  color: #fff;
}
.recipe-category-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.recipe-category-tags span {
  font-size: 0.97rem;
  color: #fff;
  background: #f37062;
  border-radius: 14px;
  padding: 6px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 8px 0 rgba(243,112,98,0.14);
  transition: background 0.15s, color 0.08s;
}
.recipe-category-tags span:hover {
  background: #d34737;
  color: #fff;
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup ul {
  margin-bottom: 10px;
  margin-left: 1.5em;
  color: #12395a;
}
.newsletter-signup li {
  margin-bottom: 4px;
}

/* --- FILTER ROWS --- */
.filters .filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.filters .filter-row span {
  font-weight: 700;
  margin-right: 6px;
}
.filters .filter-row button {
  background: #e5f0fa;
  color: #12395a;
  border-radius: 16px;
  border: 2px solid #f37062;
  padding: 7px 18px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background 0.16s, color 0.11s, border 0.18s;
}
.filters .filter-row button:hover, .filters .filter-row button:focus {
  background: #f37062;
  color: #fff;
  border: 2px solid #d34737;
}
@media (max-width: 640px) {
  .filters .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* --- RECIPE/POST/BLOG CARDS --- */
.recipe-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.recipe-card, .service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px 0 rgba(243,112,98,0.09);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.16s;
  position: relative;
}
.recipe-card:hover, .service-card:hover {
  box-shadow: 0 11px 36px 0 rgba(211,71,55,0.16);
  transform: rotate(-0.8deg) scale(1.03);
  border: 2px solid #f37062;
  z-index: 5;
}
.service-card .service-price {
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f37062;
  margin-top: 10px;
  font-weight: bold;
}

.blog-item {
  background: #fff;
  padding: 24px 20px;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px 0 rgba(19,57,90,0.07);
  transition: transform 0.17s, box-shadow 0.21s;
}
.blog-item:hover {
  transform: translateY(-3px) scale(1.03) rotate(-1.2deg);
  box-shadow: 0 7px 30px 0 rgba(243,112,98,0.13);
}

/* TAGS CLOUD & OTHER TAGS */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.tag-list span {
  background: #f37062;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 18px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: bold;
  box-shadow: 0 1px 10px 0 rgba(243,112,98,0.16);
}

/* DL/FAQ STYLE */
dt {
  font-weight: bold;
  color: #f37062;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 14px;
}
dd {
  margin-bottom: 10px;
  margin-left: 1.5em;
}

/* --- FOOTER --- */
footer {
  background: #12395a;
  color: #fff;
  padding: 42px 0 18px 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.footer-logo img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #e5f0fa;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
  font-size: 1.07rem;
}
.footer-nav a:hover {
  color: #f37062;
}
.footer-contact p a {
  color: #f37062;
}
.footer-copy {
  margin-top: 20px;
  color: #e5f0fa;
  font-size: 0.99rem;
}
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* --- LEGAL PAGE SECTIONS --- */
.legal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(19,57,90,0.07);
  padding: 38px 22px;
  margin-bottom: 40px;
}

/* --- MAP PLACEHOLDER --- */
.map .text-section {
  background: #e5f0fa;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* --- ABOUT + FACTS --- */
.about .text-section,
.facts .text-section {
  background: #e5f0fa;
  border-radius: 20px;
  padding: 22px 18px;
  margin-bottom: 14px;
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #12395a;
  box-shadow: 0 -3px 24px 0 rgba(19,57,90,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 26px 16px;
  z-index: 9999;
  animation: cookie-popup 0.45s cubic-bezier(.51,1.46,.28,0.98);
}
@keyframes cookie-popup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 18px 0 0;
  font-size: 1.01rem;
  max-width: 460px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 12px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: background 0.17s, color 0.13s;
  margin-right: 4px;
  margin-bottom: 4px;
}
.cookie-banner .accept {
  background: #f37062;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #d34737;
}
.cookie-banner .decline {
  background: #e5f0fa;
  color: #f37062;
  border: 2px solid #f37062;
}
.cookie-banner .decline:hover {
  background: #f37062;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #12395a;
  border: 2px solid #12395a;
}
.cookie-banner .settings:hover {
  background: #12395a;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 10px;
  }
  .cookie-banner p { margin: 0 0 8px 0; }
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(18,57,90,0.55);
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.32s cubic-bezier(.51,1.46,.28,0.98);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 44px 0 rgba(19,57,90,0.18);
  padding: 38px 22px 22px 22px;
  max-width: 420px;
  width: 95vw;
  position: relative;
  animation: cookie-modal-popup 0.42s cubic-bezier(.51,1.46,.28,0.98);
}
@keyframes cookie-modal-popup {
  0% { transform: scale(0.92) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #f37062;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e5f0fa;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: #12395a;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .category-toggle input[type='checkbox'] {
  width: 32px;
  height: 20px;
  appearance: none;
  background: #f37062;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.18s;
}
.cookie-modal .category-toggle input[type='checkbox']:checked {
  background: #33c687;
}
.cookie-modal .category-toggle input[type='checkbox']:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.18s;
}
.cookie-modal .category-toggle input[type='checkbox']:checked:before {
  transform: translateX(12px);
}
.cookie-modal .always-on {
  color: #888;
  font-size: 0.98rem;
  margin-left: 10px;
  font-style: italic;
}
.cookie-modal .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f37062;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal .close-modal:hover { background: #d34737; }

/* --- CONFIRMATION PAGE --- */
.confirmation .next-steps-info {
  margin: 26px 0 18px 0;
  background: #e5f0fa;
  border-radius: 20px;
  padding: 18px 14px;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .feature-grid > div, .recipe-card, .service-card, .blog-item {
  transition: box-shadow 0.22s, transform 0.17s;
}
.cta, button, .cookie-banner button, .recipe-category-tags span,
.tag-list span, .filters .filter-row button, .main-nav a {
  transition: background 0.19s, color 0.14s, border 0.18s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .feature-grid, .recipe-grid, .service-grid {
    gap: 16px;
  }
  .card, .feature-grid > div, .recipe-card, .service-card {
    min-width: 160px;
    max-width: 100%;
  }
  .footer-grid {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .container { padding: 0 3vw; }
  .card, .feature-grid > div, .recipe-card, .service-card, .blog-item {
    padding: 15px 6px;
  }
  .tag-list span, .recipe-category-tags span {
    padding: 6px 10px;
    font-size: 0.89rem;
  }
}

/* --- PLAYFUL DYNAMIC EFFECTS --- */
h1, h2, h3, .cta, button, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', 'Arial Rounded MT Bold', cursive, Arial, sans-serif;
}
h1, h2 {
  background: linear-gradient(90deg, #f37062 0%, #12395a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero .content-wrapper h1 {
  background: linear-gradient(90deg, #12395a 20%, #f37062 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 400px) {
  h1, .hero h1 { font-size: 1.35rem; }
  h2 { font-size: 1rem; }
  .main-nav a, .mobile-nav a { font-size: 1rem; }
}

/* --- SCROLLBAR -- (Playful look) --- */
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: #e5f0fa;
}
::-webkit-scrollbar-thumb {
  background: #f37062;
  border-radius: 10px;
}

/* --- SHADOW COLORS FOCUS --- */
:focus-visible {
  outline: 2px solid #f37062;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #f3706244, 0 1px 8px 0 #f3706240;
}

/* --- UTILS / MARGIN / SPACING --- */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-3 { margin-bottom: 32px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 32px !important; }

/* --- FUN FONTS Fallback in Multis --- */
.playful-font { font-family: 'Montserrat', 'Comic Sans MS', 'Arial Rounded MT Bold', cursive, Arial, sans-serif !important; }

/* --- Z-INDEX CRITICAL HANDLING --- */
header { z-index: 1000; position: relative; }
.mobile-menu { z-index: 1999; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/* --- END FROSTGLANZ STYLES --- */
