/* ========================
   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 {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #F6FAEE;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1C3341;
  line-height: 1.6;
  font-size: 16px;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  color: #1C3341;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1C3341;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #7D542C;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
}

/* ===========================
   VINTAGE RETRO STYLE COLORS
=========================== */
:root {
  --primary: #1C3341;
  --secondary: #64C3AC;
  --accent: #F6FAEE;
  --vintage-yellow: #F6C063;
  --vintage-orange: #E87D23;
  --vintage-red: #D14536;
  --vintage-green: #6B9E4B;
  --vintage-blue: #497480;
  --vintage-cream: #FAF6E9;
  --vintage-brown: #7D542C;
}

/* =======================
   CONTAINER STRUCTURE
======================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
}

/* ====================
   SECTION SPACING
==================== */
.section, .hero, .info, .benefits, .cta, .features, .pricing, .faq, .confirmation, .about-mission, .team, .filter, .recipe-list, .form-steps, .contact-info, .legal, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-cream);
  border-radius: 18px;
  box-shadow: 0 7px 32px rgba(124,84,44,0.06);
}

@media (max-width: 768px) {
  .section, .hero, .info, .benefits, .cta, .features, .pricing, .faq, .confirmation, .about-mission, .team, .filter, .recipe-list, .form-steps, .contact-info, .legal, .testimonials {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* ==========================
   FLEXBOX LAYOUT PATTERNS
========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: #fff;
  color: #1C3341;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(29,51,65,0.10);
  border: 2px solid var(--vintage-yellow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vintage-yellow);
  padding: 24px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px 0 rgba(125,84,44,0.13);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(125,84,44,0.18);
  transform: translateY(-2px) scale(1.012);
}
/* Responsive adjustment for patterns */
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 16px;
  }
  .feature-grid {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===============================
   HEADER & NAVIGATION RETRO STYLE
================================ */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 3px 30px 0 rgba(125,84,44,.07);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
  padding: 20px 0 14px 0;
}
.main-nav img {
  width: 52px;
  height: auto;
  margin-right: 30px;
}
.main-nav a {
  padding: 7px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #F6C063;
  border-radius: 6px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.btn-primary {
  color: var(--vintage-brown);
  background: var(--vintage-yellow);
  font-size: 1.07rem;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 999px;
  border: 2px solid var(--vintage-brown);
  box-shadow: 0 1px 9px 0 rgba(125,84,44,0.11);
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: var(--vintage-orange);
  color: #fff;
  border-color: var(--vintage-red);
}

/* Hide mobile toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* Mobile navigation */
@media (max-width: 992px) {
  .main-nav {
    gap: 0 12px;
  }
}
@media (max-width: 870px) {
  .main-nav a:not(:first-child), .main-nav a.btn-primary {
    font-size: 0.97rem;
    padding: 7px 8px;
  }
  .main-nav {
    gap: 0 6px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 17px;
    right: 18px;
    background: var(--vintage-yellow);
    color: var(--primary);
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--vintage-brown);
    box-shadow: 0 1px 8px 0 rgba(125,84,44,0.07);
    cursor: pointer;
    z-index: 101;
    transition: background 0.16s, color 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--vintage-brown);
    color: var(--vintage-yellow);
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 330px;
  height: 100vh;
  background: var(--vintage-yellow);
  box-shadow: -10px 0 40px rgba(60, 34, 16, 0.24);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.74,0,.27,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 32px 16px 16px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--vintage-brown);
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 201;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--vintage-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  color: var(--vintage-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 7px;
  border-radius: 7px;
  transition: background 0.18s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
}

/* ================
   HERO SECTION
================= */
.hero {
  background: repeating-linear-gradient(135deg, var(--vintage-yellow) 0 16px, var(--vintage-cream) 16px 32px);
  border: 4px dashed var(--vintage-brown);
  margin-bottom: 60px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--vintage-brown);
  margin-bottom: 18px;
  text-shadow: 1px 2px 0 rgba(125,84,44,0.16);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .btn-primary {
  font-size: 1.09rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ==============
   CTA SECTION
=============== */
.cta {
  background: var(--vintage-blue);
  color: #fff;
  border: 2.5px solid var(--vintage-yellow);
  text-align: center;
}
.cta h2 {
  color: var(--vintage-yellow);
}
.cta p {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.cta .btn-primary {
  margin-top: 14px;
  font-size: 1.1rem;
}

/* ==================
   BUTTONS
=================== */
.btn-primary {
  display: inline-block;
  padding: 11px 32px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: var(--vintage-brown);
  background: var(--vintage-yellow);
  border-radius: 28px;
  border: 2.5px solid var(--vintage-brown);
  box-shadow: 0 1px 9px 0 rgba(125,84,44,0.11);
  transition: background 0.17s, color 0.13s, transform 0.15s, box-shadow 0.13s;
  cursor: pointer;
  margin-right: 10px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--vintage-red);
  color: #fff;
  border-color: var(--vintage-brown);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 5px 24px 0 rgba(125,84,44,0.24);
}
.btn-secondary {
  display: inline-block;
  padding: 9px 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  background: var(--vintage-blue);
  color: #fff;
  border: 2px solid var(--vintage-brown);
  transition: background 0.17s, color 0.13s;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  border-color: var(--vintage-brown);
}

/* ================
   FILTER & TAGS
================= */
.filter {
  background: var(--vintage-yellow);
  border: 2px dashed var(--vintage-brown);
}
.filter-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 7px 10px;
  border: 1.5px solid var(--vintage-brown);
  min-width: 200px;
  gap: 8px;
  box-shadow: 1px 1px 8px 0 rgba(125,84,44,0.08);
}
.search-bar input {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: var(--primary);
  min-width: 80px;
}
.category-filters, .dietary-tags {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.category-filters button, .dietary-tags button {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--vintage-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
}
.category-filters button[disabled], .dietary-tags button[disabled] {
  cursor: not-allowed;
  background: #fcf6e2;
  color: #BEA871;
  border-color: #BEA871;
  opacity: 0.55;
}
.category-filters button:hover:not([disabled]), .dietary-tags button:hover:not([disabled]) {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
  opacity: 1;
}

@media (max-width: 700px) {
  .filter-elements {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}

/* ================
   RECIPE CARDS
================= */
.recipe-list .recipe-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  background: #fffdf9;
  border: 2px solid var(--vintage-yellow);
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 11px 0 rgba(124,84,44,0.11);
  transition: box-shadow 0.18s, border-color 0.13s;
}
.recipe-list .recipe-card:hover {
  box-shadow: 0 5px 21px 0 rgba(125,84,44,0.13);
  border-color: var(--vintage-red);
}
.recipe-card h3 {
  font-size: 1.15rem;
  color: var(--vintage-brown);
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.recipe-card p {
  margin-bottom: 0;
  color: var(--primary);
  font-size: 1rem;
}

/* ================
   TESTIMONIALS
================= */
.testimonials {
  background: var(--vintage-cream);
}
.testimonials h2 {
  color: var(--vintage-brown);
}
.testimonial-card {
  margin-bottom: 24px;
  background: #fffbe6;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 1px 9px 0 rgba(124, 84, 44, 0.12);
  border: 2.5px solid var(--vintage-yellow);
  font-size: 1.11rem;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  margin: 0 0 5px 0;
  color: var(--primary);
  font-style: italic;
}
.testimonial-card span {
  color: var(--vintage-red);
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
@media (max-width:578px) {
  .testimonial-card {
    font-size: 1rem;
    padding: 13px;
  }
}

/* ================
   TEAM MEMBERS ABOUT
================= */
.team-profiles {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 18px;
}
.team-member {
  flex: 1 1 240px;
  background: var(--vintage-yellow);
  border-radius: 14px;
  padding: 26px 16px;
  box-shadow: 0 1px 10px 0 rgba(124,84,44,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
}
.team-member img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  filter: sepia(0.4) contrast(1.1);
}
.team-member h3 {
  margin-bottom: 4px;
  font-size: 1.02rem;
  color: var(--vintage-brown);
}
@media (max-width: 700px) {
  .team-profiles {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===============
   FORM/FAQ STYLE
================ */
.form-steps ol {
  padding-left: 1.15em;
  margin-bottom: 14px;
}
.faq {
  background: var(--vintage-yellow);
  border-radius: 14px;
  border: 2px dashed var(--vintage-brown);
}
.faq h2 {
  color: var(--vintage-brown);
}
.faq dl {
  margin-bottom: 0;
}
.faq dt {
  font-weight: 700;
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-brown);
}
.faq dd {
  padding-left: 16px;
  margin-bottom: 3px;
}

/* ================
   CONTACT INFO
================= */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 16px;
  align-items: center;
  margin-bottom: 9px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffdf6;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 1rem;
  border: 1.5px solid var(--vintage-yellow);
}
.contact-details img {
  width: 22px;
  height: 22px;
  filter: sepia(0.45) contrast(1.1);
}
@media (max-width: 600px) {
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
}

/* ================
   FOOTER
================= */
footer {
  background: var(--vintage-brown);
  color: #fff8e7;
  padding: 44px 0 0 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--vintage-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  transition: color 0.13s, text-decoration 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vintage-orange);
  text-decoration: underline;
}
.footer-contact {
  text-align: center;
  padding: 7px 0 21px 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #ffefbb;
}
.footer-contact p {
  margin: 4px 0;
}
.footer-copy {
  color: #e0d7c0;
  background: var(--vintage-brown);
  text-align: center;
  padding: 13px 0;
  border-top: 1.5px solid #eecd8c;
  font-size: 0.97rem;
}
@media (max-width: 480px) {
  .footer-nav {
    gap: 10px;
    flex-direction: column;
  }
  .footer-contact {
    font-size: 0.94rem;
  }
}

/* ================
   LEGAL SECTIONS
================= */
.legal {
  background: var(--vintage-cream);
  border: 2px solid var(--vintage-brown);
  color: var(--primary);
  border-radius: 10px;
}
.legal h1, .legal h2 {
  color: var(--vintage-brown);
}
.legal ul {
  margin-top: 9px;
}

/* ================
   THANK YOU PAGE
================= */
.confirmation {
  background: var(--vintage-green);
  color: #fffbee;
  border-radius: 18px;
  text-align: center;
  border: 2.5px solid var(--vintage-yellow);
}
.confirmation h1 {
  color: var(--vintage-yellow);
}
.confirmation ul {
  color: #fffdf1;
  margin: 0 auto 18px auto;
  text-align: left;
  max-width: 600px;
}

/* ===============
   ANIMATIONS
================ */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.section, .hero, .info, .benefits, .cta, .features, .pricing, .faq, .confirmation, .about-mission, .team, .filter, .recipe-list, .form-steps, .contact-info, .legal, .testimonials {
  animation: fadeInUp 0.8s cubic-bezier(.51,1.12,.44,0.88) 0s 1;
}

/* ============================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  box-shadow: 0 -3px 16px 0 rgba(125,84,44,0.18);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 14px;
  justify-content: space-between;
  padding: 24px 4vw 19px 4vw;
  z-index: 300;
  font-size: 1.03rem;
  animation: fadeInUp 1s cubic-bezier(.63,.14,.38,1.28);
}
.cookie-consent-banner p {
  margin: 0;
  flex: 1 1 360px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 18px;
  border-radius: 29px;
  border: 2px solid var(--vintage-brown);
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  margin-left: 2px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-btn.accept {
  background: var(--vintage-green);
  color: #fff;
  border-color: var(--vintage-brown);
}
.cookie-btn.reject {
  background: var(--vintage-red);
  color: #fff;
  border-color: var(--vintage-brown);
}
.cookie-btn.settings {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.87;
  transform: translateY(-1px) scale(1.03);
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: .97rem;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28,51,65,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.5s cubic-bezier(.24,1.1,.24,1.0);
}
.cookie-modal {
  background: var(--vintage-cream);
  border: 3px solid var(--vintage-yellow);
  color: var(--primary);
  border-radius: 18px;
  max-width: 450px;
  text-align: left;
  box-shadow: 0 5px 42px 0 rgba(125,84,44,0.22);
  padding: 36px 28px 26px 28px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--vintage-brown);
  font-size: 1.4rem;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--vintage-yellow);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-top: 0;
  margin-bottom: 0;
}
.cookie-category .always {
  font-weight: 700;
  color: var(--vintage-brown);
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 9px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--vintage-brown);
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--vintage-red);
}
@media (max-width: 520px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 7vw 18px 7vw;
    border-radius: 9px;
  }
}

/* ================
   HORIZONTAL DIVIDERS/PATTERNS (Retro)
================= */
hr, .divider {
  border: none;
  border-top: 3px double var(--vintage-brown);
  height: 4px;
  background: transparent;
  margin: 24px 0;
}

/* ================
   TYPOGRAPHY SCALE
================= */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
  body { font-size: 15px; }
}

/* ================
   MISC
================= */
::-webkit-scrollbar {
  width: 7px;
  background: var(--vintage-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-yellow);
  border-radius: 7px;
}

/* Body background with subtle retro texture using a repeating SVG datauri pattern (optional, fallback solid color) */
body {
  background: #F6FAEE url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' fill='%23faf6e9'/%3E%3Cpath d='M0 60h60V0' stroke='%23F6C063' stroke-opacity='0.12' stroke-width='4'/%3E%3C/svg%3E");
}

/* Retro effect with border shadow for card-like elements */
.card, .feature-item, .team-member, .recipe-card, .testimonial-card {
  box-shadow: 0 3px 16px 0 rgba(125,84,44,0.07);
}

/*******************************
 * NO CSS GRID OR MULTICOLUMN! *
 *******************************/
