/* ============================ */
/*         CSS RESET            */
/* ============================ */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  background: #F9F7F3;
  color: #343029;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.6em;
  margin-bottom: 1.2em;
  padding-left: 0;
}
a {
  color: #386641;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #386641;
  outline-offset: 2px;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
hr {
  border: none;
  border-top: 1px solid #E5E3DD;
  margin: 32px 0;
}

/* ===================== */
/*  TYPOGRAPHY          */
/* ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, Times, serif;
  font-weight: 700;
  color: #212820;
  margin-bottom: 0.3em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 0.6em; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 0.5em; }
h3 { font-size: 1.38rem; margin-bottom: 0.3em; }
h4 { font-size: 1.125rem; }
p, li {
  font-family: 'Roboto', Georgia, serif;
  font-size: 1rem;
  color: #343029;
  margin-bottom: 1em;
}
blockquote {
  font-family: 'Montserrat', Georgia, serif;
  font-style: italic;
  color: #386641;
  background: #ECEAE2;
  border-left: 4px solid #6A994E;
  margin: 0 0 1em 0;
  padding: 0.5em 1.25em;
  border-radius: 0.5em;
}
strong, b { font-weight: 700; }

/* ===================== */
/*  BRAND COLORS, VARS   */
/* ===================== */
:root {
  --brand-primary: #386641;
  --brand-secondary: #6A994E;
  --brand-accent: #F9F7F3;
  --brand-dark-text: #212820;
  --brand-gray: #ECEAE2;
  --brand-muted: #E5E3DD;
  --brand-warning: #b38600;
  --shadow-elevate: 0 2px 16px 0 rgba(40,40,32,0.07);
  --transition-main: 0.25s cubic-bezier(0.35, 1.2, 0.5, 1);
}

/* ===================== */
/* LAYOUT & CONTAINERS   */
/* ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 32px 6vw;
  }
}

/* ===================== */
/*       HEADER          */
/* ===================== */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 1px 7px 0 rgba(40,40,32,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 20px;
}
header a img {
  height: 45px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-main), color var(--transition-main);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
}
/* Hide nav on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
}

/* CTA Button */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.05rem;
  padding: 0.65em 2em;
  margin-left: 12px;
  box-shadow: 0 1px 4px 0 rgba(40,40,32,0.07);
  outline: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
}
.cta.primary {
  background: var(--brand-primary);
  color: #fff;
  border: 1.5px solid var(--brand-primary);
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(70,100,70,0.13);
}
.cta.secondary {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* Hide CTA on smaller mobile header */
@media (max-width: 600px) {
  header .cta {
    display: none;
  }
}

/* ===================== */
/* MOBILE MENU/HAMBURGER */
/* ===================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  background: transparent;
  border: none;
  padding: 7px 13px;
  border-radius: 0.5em;
  margin-left: 10px;
  transition: background 0.15s;
  z-index: 1101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #e3e5e1;
  color: var(--brand-secondary);
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(52,48,41, 0.93);
  z-index: 1200;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.42s cubic-bezier(0.5,1.08,0.3,1), opacity var(--transition-main);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  padding: 0.4em 0.8em;
  color: #fff;
  border: none;
  margin: 32px 28px 8px 0;
  border-radius: 2.5em;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e9ebda;
  color: var(--brand-secondary);
}

.mobile-nav,
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 1em;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.15rem;
  padding: 0.7em 2.2em;
  border-radius: 2em;
  line-height: 1.4;
  text-align: center;
  background: transparent;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* ===================== */
/*         FOOTER        */
/* ===================== */
footer {
  background: #fff;
  box-shadow: 0 -1px 8px 0 rgba(40,40,32,0.04);
  border-top: 1.5px solid #ECEAE2;
  margin-top: 64px;
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--brand-primary);
  transition: color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus { color: var(--brand-secondary); }

.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.contact-footer p,
.contact-footer img {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: #343029;
}
footer img[alt^="Blooming"] {
  margin-bottom: 18px;
  height: 44px;
}

@media (max-width: 920px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 14px;
  }
  .contact-footer {
    font-size: 0.99rem;
  }
}

/* ======================= */
/*       HERO / MAIN CTA   */
/* ======================= */
section > .container > .content-wrapper > h1 {
  font-size: 2.75rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Georgia, serif;
  margin-bottom: 0.25em;
}

/* ===================== */
/*    FEATURES & CARDS   */
/* ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 200px;
  background: #fff;
  padding: 28px 20px 20px 20px;
  border-radius: 1em;
  box-shadow: 0 2px 12px 0 rgba(40,40,32,0.06);
  min-width: 220px;
  max-width: 295px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.feature-item img {
  width: 48px; height: 48px; margin-bottom: 0.5em;
}
.feature-item h3 {
  color: var(--brand-primary);
  margin-bottom: 0.2em;
}
.feature-item p {
  font-size: 0.98rem;
}
.feature-item:hover {
  box-shadow: 0 5px 24px 0 rgba(70,100,70,0.15);
  transform: translateY(-3px) scale(1.021);
}

/* Cards, content grids, recipe/tip/post lists */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 1em;
  box-shadow: var(--shadow-elevate);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 6px 25px 0 rgba(70,100,70,0.13);
  transform: translateY(-2px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px 16px 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.category-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(40,40,32,0.08);
  padding: 26px 18px 18px 18px;
  min-width: 200px; max-width: 240px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.category-item img {
  width: 38px; height: 38px;
}
.category-item:hover {
  box-shadow: 0 6px 25px 0 rgba(70,100,70,0.10);
  transform: translateY(-2px) scale(1.022);
}

.recipe-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  list-style: none;
  width: 100%;
}
.recipe-list li,
.recipe-item {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 11px 0 rgba(40,40,32,0.08);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 320px;
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  position: relative;
}
.recipe-list li:hover,
.recipe-item:hover {
  box-shadow: 0 8px 28px 0 rgba(70,100,70,0.13);
  transform: translateY(-3px) scale(1.022);
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.tip-item {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 12px 0 rgba(40,40,32,0.06);
  padding: 24px 16px 16px 16px;
  min-width: 170px;
  max-width: 245px;
  flex: 1 1 170px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.tip-item img {
  width: 34px; height: 34px;
}
.tip-item:hover {
  box-shadow: 0 6px 25px 0 rgba(70,100,70,0.11);
  transform: translateY(-2px) scale(1.017);
}

.post-list {
  display: flex;
  flex-direction: row; flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-bottom: 26px;
  width: 100%;
}
.post-list li {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 11px 0 rgba(40,40,32,0.08);
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 350px;
  padding: 30px 22px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  position: relative;
}
.post-list li:hover {
  box-shadow: 0 8px 28px 0 rgba(70,100,70,0.15);
  transform: translateY(-3px) scale(1.02);
}

.team-bios ul, .contact-support ul, .text-section ul {
  margin-top: 0.67em;
  margin-bottom: 1em;
  padding-left: 1.2em;
}

/* ====================== */
/*        TESTIMONIALS    */
/* ====================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(70,100,70,0.10);
  margin-bottom: 20px;
  flex-wrap: wrap;
  min-width: 250px;
  max-width: 560px;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--brand-primary);
  border-left: 3px solid var(--brand-secondary);
  background: #ECEAE2;
  margin: 0;
  padding: 0.2em 1.25em;
}
.testimonial-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--brand-dark-text);
}
.testimonial-card strong {
  color: var(--brand-secondary);
}
.testimonial-card span {
  color: #FFC700;
  font-size: 1.09em;
  margin-left: 9px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(70,100,70,0.15);
  transform: translateY(-3px) scale(1.017);
}
.trust-signals {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.97rem;
  color: var(--brand-primary);
}
.trust-signals img {
  width: 22px; height: 22px;
  margin-right: 7px;
}

/* ====================== */
/*      TEXT-IMAGE SEC    */
/* ====================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .feature-grid, .category-list, .tips-grid, .content-grid, .recipe-list, .post-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: none;
  }
  .trust-signals {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================== */
/*       FILTER BAR      */
/* ===================== */
.filter-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0 0;
  font-family: 'Montserrat', serif;
  font-size: 1.045rem;
}
.filter-bar span {
  color: var(--brand-secondary);
  font-weight: 600;
}
.filter-bar a {
  color: var(--brand-primary);
  padding: 3px 7px;
  border-radius: 0.6em;
  background: #ECEAE2;
  font-weight: 500;
  font-size: 0.97em;
  transition: background 0.14s, color 0.14s;
}
.filter-bar a:hover,
.filter-bar a:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* ===================== */
/*      TEXT SECTION     */
/* ===================== */
.text-section {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 11px 0 rgba(40,40,32,0.07);
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #343029;
}
.text-section h2 {
  margin-top: 0.2em;
}

/* FAQ and SUPPORT */
.contact-support ul {
  margin-bottom: 1.5em;
  margin-top: 0.7em;
}
.contact-support li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0.9em;
  font-size: 1rem;
  color: #386641;
}
.contact-support img {
  width: 1.25em; height: 1.25em;
  vertical-align: middle;
}

.team-bios ul li {
  margin-bottom: 0.72em;
  font-size: 1rem;
}

/* ===================== */
/*      SCROLLBAR        */
/* ===================== */
::-webkit-scrollbar {
  width: 11px;
  background: #F9F7F3;
}
::-webkit-scrollbar-thumb {
  background: #ECEAE2;
  border-radius: 8px;
}

/* ===================== */
/* RESPONSIVE UTILITIES  */
/* ===================== */
@media (max-width: 560px) {
  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.24rem !important; }
  .category-item, .feature-item, .tip-item {
    padding: 16px 10px 12px 10px;
    min-width: unset;
  }
  .card, .recipe-list li, .post-list li {
    padding: 14px 10px 10px 10px;
    min-width: unset;
    max-width: unset;
  }
  .testimonial-card {
    padding: 10px 5px;
  }
  .container {
    padding: 0 7px;
  }
}

/* ===================== */
/*      COOKIE BANNER    */
/* ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #ECEAE2;
  box-shadow: 0 -2px 24px 0 rgba(52,48,41,0.09);
  padding: 22px 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 9999;
  font-family: 'Roboto', serif;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.45s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  color: #333116;
  font-size: 1rem;
  flex: 1 1 200px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2em;
  padding: 0.45em 1.6em;
  border: none;
  margin-left: 0;
  background: none;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(40,40,32,0.04);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .accept {
  background: var(--brand-primary);
  color: #fff;
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .decline {
  background: none;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner .decline:hover,
.cookie-banner .decline:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  color: var(--brand-secondary);
  border: 1.5px solid var(--brand-secondary);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--brand-secondary);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 11px 6vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(52,48,41,0.22);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 10px 40px 0 rgba(40,40,32,0.18);
  min-width: 310px;
  max-width: 370px;
  padding: 34px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 0.32s, opacity 0.25s;
}
.cookie-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  font-size: 2rem;
  color: #6A994E;
  border: none;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 0.4em;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 0.55em;
}
.cookie-category label {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #343029;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-primary);
}
.cookie-category[aria-disabled="true"] label {
  color: #bdbdbd;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal .save, .cookie-modal .cancel {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2em;
  padding: 0.45em 1.45em;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .save {
  background: var(--brand-primary);
  color: #fff;
  border: 1.5px solid var(--brand-primary);
}
.cookie-modal .save:hover,
.cookie-modal .save:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-modal .cancel {
  background: none;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-modal .cancel:hover,
.cookie-modal .cancel:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* ============== */
/*  MEDIA QUERIES */
/* ============== */
@media (max-width: 1100px) {
  .container { max-width: 100vw; }
  .feature-grid, .category-list, .content-grid {
    justify-content: flex-start;
  }
}
@media (max-width: 860px) {
  .feature-grid, .category-list, .tips-grid, .content-grid, .recipe-list, .post-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .category-item, .tip-item {
    min-width: 0; max-width: 100%;
  }
}
@media (max-width: 480px) {
  header .container {
    padding: 0 4vw;
    min-height: 56px;
  }
  .footer-nav {
    font-size: 0.96rem;
  }
}

/* ===================== */
/*    MICRO INTERACTIONS */
/* ===================== */
.card, .category-item, .feature-item, .tip-item, .testimonial-card, .recipe-list li, .post-list li {
  will-change: transform, box-shadow;
}
.cta, .cookie-banner button, .cookie-modal .save, .cookie-modal .cancel {
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
}

/* ===================== */
/*      PRINT STYLES     */
/* ===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  body { background: #fff; color: #111 !important; }
}
