/* =======================================
   Cleanse Stream Küche - style.css
   Creative Artistic Design - Flexbox Only
========================================*/

/* 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.6;
  background: #F3F1ED;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #135E36; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px solid #EDBF00; outline-offset: 2px; }

/* =================
   VARIABLES (FALLBACKS)
=================== */
:root {
  --primary: #135E36;
  --secondary: #F3F1ED;
  --accent: #EDBF00;
  --accent2: #CB9E00;
  --danger: #E44C4C;
  --success: #41C97D;
  --text-dark: #222;
  --text-light: #fff;
  --gray: #888;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 18px;
  --radius-small: 9px;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
  font-display: swap;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h1 span,
h2 span { color: var(--accent); }

p, li, address, input, label, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}
strong { font-weight: bold; }

/* =====================
   CONTAINER & WRAPPER
====================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.content-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   CREATIVE_ARTISTIC DESIGN
=========================*/
body {
  background: var(--secondary);
}

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

ul, ol {
  margin-left: 21px;
  margin-bottom: 12px;
  line-height: 1.7;
}

ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
}

hr {
  border: 0; border-top: 1px dashed var(--accent);
  margin: 28px 0;
}

/* Tag style (recipe tags, etc.) */
.tag {
  background: var(--accent);
  color: var(--text-light);
  border-radius: var(--radius-small);
  padding: 3px 13px;
  font-size: 0.94rem;
  margin-right: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.4px;
  display: inline-block;
  margin-bottom: 5px;
}

/* =========================
   FLEXBOX PATTERNS
========================= */
.card-container, .service-cards, .recipe-teasers, .recipe-card-grid, .team-grid, .testimonial-cards {
  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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fefaf3;
  box-shadow: 0 2px 12px rgba(237,191,0,0.10);
  min-width: 230px;
  flex: 1 1 260px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.recipe-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.team-grid > div {
  background: #fffbe3;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px #e3e3cd88;
  padding: 22px 16px;
  flex: 1 1 260px;
  min-width: 220px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(19,94,54,0.05), 0 1.5px 5px rgba(205,171,10,0.13);
  padding: 25px 22px 23px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 36px rgba(19,94,54,0.15), 0 2px 8px rgba(237,191,0,0.15);
  z-index: 1;
}

.recipe-card {
  background: #fff;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 8px rgba(19,94,54,0.07);
  padding: 18px 16px 15px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  transition: transform 0.17s, box-shadow 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.recipe-card:hover {
  box-shadow: 0 6px 22px rgba(50, 130, 80, 0.12);
  transform: scale(1.03) translateY(-4px);
  z-index: 1;
}

.recipe-teasers > div {
  background: #Ebffc1;
  border-radius: var(--radius-small);
  padding: 12px 16px 10px 16px;
  margin-bottom: 8px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #eef0e9;
  border-radius: var(--radius-small);
  padding: 11px 16px;
  box-shadow: 0 1px 5px rgba(19,94,54,0.07);
}

/* ===========================
    BUTTONS & INTERACTIONS
============================*/
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: var(--radius-small);
  padding: 11px 28px;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  line-height: 1.27;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  box-shadow: 0 2px 14px rgba(237,191,0,0.1);
  cursor: pointer;
  border: none;
  margin-top: 10px;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--accent2);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 30px rgba(19,94,54,0.14);
}
.btn-secondary {
  background: transparent;
  color: var(--accent2);
  border: 2px solid var(--accent2);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
  transform: scale(1.03);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 0 0;
}
.pagination a {
  display: inline-block;
  padding: 7px 19px;
  border-radius: 24px;
  background: #fff;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: 1px solid #eee;
  transition: background 0.16s, color 0.16s;
}
.pagination a.active, .pagination a:hover {
  background: var(--accent2);
  color: #fff;
  border: 1px solid var(--accent2);
}

/* =====================
   HEADER & NAVIGATION
====================== */
header {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 20px rgba(19,94,54,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 12px;
}
header img {
  max-height: 42px;
  margin-right: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 17px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 4px 10px;
  border-radius: 7px;
  transition: color .16s, background .14s;
}
header nav a:hover {
  background: var(--accent2);
  color: #fffede;
}
header nav .btn-primary {
  margin-top: 0 !important;
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2)
}
header nav .btn-primary:hover,
header nav .btn-primary:focus {
  background: #fff;
  color: var(--accent2);
  border-color: #fff;
}

/* ===============
   MOBILE NAVIGATION
================ */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 45;
  box-shadow: 0 4px 10px rgba(237,191,0,0.13);
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  transform: translateX(-105%);
  opacity: 0;
  transition: transform 0.37s cubic-bezier(.67,.02,.38,1.07), opacity 0.19s;
  padding: 0;
  width: 100vw;
  height: 100vh;
  box-shadow: 2px 0 24px rgba(19,94,54,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin: 18px 20px 12px 0;
  transition: background 0.15s, color 0.16s;
  cursor: pointer;
  z-index: 10;
}
.mobile-menu-close:hover {
  background: var(--accent2);
  color: #fffede;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 7px 36px 44px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.23rem;
  font-weight: 700;
  padding: 12px 0 10px 7px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.11s, color 0.14s;
  min-width: 180px;
}
.mobile-nav a:hover {
  background: var(--accent2);
  color: #fff;
}

@media (max-width: 1100px) {
  header .container nav {
    gap: 6px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 4px;
  }
}
@media (max-width: 768px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===========
  MAIN
============ */
main {
  min-height: 60vh;
  padding: 44px 0 20px 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =============
   TESTIMONIALS
=============== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
  margin-bottom: 8px;
}
.testimonial-card {
  flex: 1 1 240px;
  min-width: 200px;
  background: #fffbe8;
  border-radius: var(--radius);
  color: #1a2d18;
  box-shadow: 0 4px 18px rgba(237,191,0,0.11);
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.20s, transform 0.17s;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 13px;
  color: #1a2d18;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(237,191,0,0.18), 0 4px 22px rgba(19,94,54,0.14);
  transform: scale(1.03) translateY(-5px);
  z-index: 2;
}

/* ================
  FOOTER
================= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 47px 0 29px 0;
  margin-top: 54px;
  box-shadow: 0 -4px 24px rgba(19,94,54,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .content-wrapper {
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 0 0;
  margin: 0;
}
footer img {
  max-height: 45px;
  margin-bottom: 12px;
}
footer nav {
  display: flex; flex-direction: column; gap: 9px;
}
footer nav a {
  color: #fff;
  font-size: 0.99rem;
  opacity: 0.9;
  font-family: 'Montserrat';
  margin-bottom: 2px;
  transition: color .14s, opacity .11s;
}
footer nav a:hover {
  color: var(--accent2);
  opacity: 1;
}
footer h4 {
  color: var(--accent);
  font-family: 'Montserrat';
  font-size: 1.13rem;
  margin-bottom: 6px;
  margin-top: 10px;
}
footer p, footer address {
  color: #fff;
  font-size: 0.99rem;
  opacity: 0.93;
  margin-bottom: 5px;
}
footer address {
  font-style: normal;
}

/* =============
  FORMS/INPUTS
============== */
input[type="search"], input[type="text"], input[type="email"], textarea {
  padding: 13px 15px;
  border: 2px solid #E9E9E9;
  border-radius: var(--radius-small);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: var(--primary);
  outline: none;
  margin-bottom: 13px;
  box-shadow: 0 2px 10px rgba(237,191,0,0.035);
  width: 100%;
  transition: border 0.14s;
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 2px solid var(--accent2);
}

/* Address & FAQ special */
address {
  color: #445d4b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 10px;
}

/*****************************************
  COOKIE CONSENT BANNER & MODAL
******************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #222;
  color: #fff;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px 18px 38px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -7px 32px rgba(23,22,1,0.11);
  animation: cookiebanner-slidein 0.7s cubic-bezier(.6,1.41,.67,1.12);
}
@keyframes cookiebanner-slidein {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-small);
  padding: 8px 18px;
  border: none;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  transition: background .14s, color .13s;
}
.cookie-banner button.accept {
  background: var(--accent2);
  color: #fff;
}
.cookie-banner button.accept:hover {
  background: var(--success);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner button.reject:hover {
  background: #b91d1d;
}
.cookie-banner button.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent2);
}
.cookie-banner button.settings:hover {
  background: var(--accent);
  color: #fff;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3000;
  background: rgba(24,43,24,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__window {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px rgba(19,94,54,0.32);
  max-width: 410px;
  width: 96%;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookiemodal-fadein 0.45s cubic-bezier(.68,.09,.27,1.15);
}
@keyframes cookiemodal-fadein {
  0% { transform: scale(0.87); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal__close {
  background: var(--primary);
  color: #fff;
  font-size: 1.13rem;
  border: none;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  position: absolute;
  top: 14px; right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal__close:hover {
  background: var(--accent2);
  color: #fffede;
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.27rem;
  margin-bottom: 8px;
  font-weight: bold;
}
.cookie-modal__category {
  display: flex; align-items: center; gap: 11px; margin-bottom: 12px;
}
.cookie-modal__category input[type="checkbox"] {
  accent-color: var(--accent2);
  width: 18px; height: 18px;
}
.cookie-modal__category label {
  font-size: 1.02rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal__category.essential {
  opacity: 0.77;
}
.cookie-modal__category.essential input[type="checkbox"] {
  pointer-events: none;
}
.cookie-modal__save {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 11px 0;
  border-radius: var(--radius-small);
  margin-top: 18px;
  cursor: pointer;
  width: 100%;
  transition: background 0.19s, color 0.13s;
}
.cookie-modal__save:hover {
  background: var(--primary);
  color: #fff;
}

/*****************************************
  RESPONSIVE - MOBILE FIRST
******************************************/
@media (max-width: 1023px) {
  .content-wrapper {
    padding: 30px 12px;
    margin-bottom: 32px;
  }
  .container {
    padding-left: 9px; padding-right: 9px;
  }
  section {
    margin-bottom: 36px;
    padding: 27px 7px;
  }
}
@media (max-width: 900px) {
  .team-grid,.service-cards,.testimonial-cards,.recipe-card-grid {
    gap: 13px;
  }
  .team-grid > div, .service-card, .recipe-card {
    min-width: 145px;
    padding: 14px 9px 15px 12px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, section {
    padding: 17px 6px;
  }
  main {
    padding-top: 17px;
  }
  .card-container,
  .service-cards,
  .recipe-card-grid,
  .testimonial-cards,
  .team-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-card, .recipe-card, .testimonial-card, .team-grid > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 18px;
    padding: 12px 7px 13px 7px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 15px; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 21px;
    font-size: 1rem;
    align-items: flex-start;
  }
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    padding: 7px 12vw 44px 10vw;
    min-width: 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 8px 13px 13px;
    font-size: 0.95rem;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.01rem; }
  main, section, .content-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cookie-modal__window {
    padding: 19px 7px 17px 7px;
  }
}

/* =================
   CREATIVE EFFECTS
====================*/
/* Colorful underline for headline */
h1, h2 {
  position: relative;
  z-index: 2;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 6px;
  background: var(--accent);
  border-radius: 9px;
  margin-top: 7px;
  margin-bottom: 0;
  opacity: 0.5;
}

/* Hand-drawn underline for main CTAs */
.btn-primary, .btn-secondary {
  box-shadow: 0 0px 0px #fff, 0 4px 26px rgba(237,191,0,0.10);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 6px;
  height: 14px;
  background: rgba(237,191,0,0.34);
  border-radius: 14px 9px 18px 13px;
  z-index: 0;
  filter: blur(9px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.17s;
}
.btn-primary:hover::after {
  opacity: 0.7;
}

/* Slight shadow on cards */
.card, .service-card, .testimonial-card, .recipe-card, .team-grid > div {
  border: 2.3px solid #fff7e0;
}
.service-card {
  box-shadow: 0 2.5px 8px #ffe7bd55, 0 6px 32px #fffbe01c;
  position: relative;
  background: repeating-linear-gradient( -45deg, #fff, #fff 13px, #f9f6f0 22px, #fff 32px );
}
.service-card:before {
  content: '';
  position: absolute; left: -13px; top: -13px;
  width: 32px; height: 32px;
  border-radius: 24px;
  background: var(--accent);
  opacity: 0.13;
  z-index: 0;
}
.service-card:last-child:after {
  content: '';
  position: absolute; right: -9px; bottom: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.11;
  z-index: 0;
}

/* Decorative brush for testimonials */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -9px; left: -12px;
  width: 48px; height: 21px;
  background: var(--accent2);
  opacity: 0.12;
  border-radius: 19px 8px 15px 11px;
  z-index: 0;
}

/* Animated hover on recipe teasers */
.recipe-teasers > div {
  transition: box-shadow 0.14s, background 0.14s;
  cursor: pointer;
}
.recipe-teasers > div:hover {
  background: #f4ffd9;
  box-shadow: 0 2px 18px #bcef7b33;
}

/* Accent for active filter (simulated if class added) */
.filter-active {
  background: var(--accent2) !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 12px;
}

/* ======================================
   ADDITIONAL UTILITIES FOR FLEX LAYOUTS
======================================= */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* END OF STYLE.CSS */
