/* ==========================================================================
   CSS RESET & BASE STYLES (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, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F6F6F6;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #34705F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7C048;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}

/* ==========================================================================
   TYPOGRAPHY & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #34705F;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 600; }
h4 { font-size: 1.07rem; font-weight: 500; }

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.13rem;
  font-weight: 500;
  color: #34705f;
  margin-bottom: 18px;
}

/* TYPOGRAPHY SCALE for visual hierarchy */
@media (min-width: 700px) {
  h1   { font-size: 2.6rem; }
  h2   { font-size: 2.1rem; }
  h3   { font-size: 1.3rem; }
  p, ul, ol { font-size: 1.09rem; }
}


/* ==========================================================================
   LAYOUT: CONTAINER, SECTION, WRAPPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(52,112,95,0.08), 0 0.5px 1.5px 0 rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width:768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: linear-gradient(90deg, #34705F 65%, #F7C048 100%);
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(52,112,95,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.header-brand img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.18s;
  position: relative;
  padding: 2px 2px;
}
nav a:hover,
nav a.active {
  color: #F7C048;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  transition: background 0.15s;
  z-index: 90;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(247,192,72,0.22);
  color: #F7C048;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(90deg, #F7C048 60%, #34705F 100%);
  z-index: 3000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform 0.34s cubic-bezier(.9,0,.3,1), opacity 0.18s;
  opacity: 0;
  transform: translateX(50%);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #34705F;
  font-size: 2.4rem;
  margin: 22px 27px 12px 0;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 3200;
  align-self: flex-end;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(52,112,95,0.08);
  color: #215143;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 44px 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #34705F;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 0;
  width: 100%;
  display: block;
  letter-spacing: 0.015em;
  border-radius: 5px;
  transition: background 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(52,112,95,0.12);
  color: #F7C048;
}

@media (max-width:992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width:993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================================================================
   MAIN CONTENT & FLEX LAYOUTS
   ========================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 9px rgba(52,112,95,0.06);
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 3px 18px rgba(52,112,95,0.13);
  transform: translateY(-3px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #f5f9f8;
  box-shadow: 0 0.5px 3px rgba(52,112,95,0.06);
  color: #2a2a2a;
  font-style: italic;
}
.testimonial-card strong {
  color: #34705F;
}
.testimonial-card p {
  color: #232323;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #34705F;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* ==========================================================================
   FEATURE GRIDS
   ========================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 0;
}
.feature-grid > div {
  background: #fff;
  box-shadow: 0 1.5px 9px rgba(52,112,95,0.06);
  border-radius: 16px;
  padding: 30px 22px 22px 22px;
  flex: 1 1 235px;
  min-width: 210px;
  transition: box-shadow 0.18s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 22px rgba(52,112,95,0.14);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img {
  height: 46px;
  width: auto;
  margin-bottom: 8px;
}
@media (max-width:738px) {
  .feature-grid {
    gap: 18px;
    flex-direction: column;
  }
}

/* ==========================================================================
   BUTTONS & CALL TO ACTIONS
   ========================================================================== */
.cta-primary, .cta-secondary, button, .content-wrapper form button {
  background: linear-gradient(90deg, #34705F 70%, #F7C048 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 30px;
  border: none;
  padding: 11px 32px;
  margin-top: 12px;
  margin-bottom: 14px;
  box-shadow: 0 1.5px 7px rgba(52,112,95,0.04);
  transition: background 0.23s, box-shadow 0.16s, transform 0.13s;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus, .cta-secondary:hover, .cta-secondary:focus,
button:hover, button:focus, .content-wrapper form button:hover, .content-wrapper form button:focus {
  background: linear-gradient(90deg, #2b5a4c 70%, #efab09 100%);
  color: #fff !important;
  box-shadow: 0 5px 18px rgba(52,112,95,0.17);
  transform: translateY(-2px) scale(1.02);
}
.cta-secondary {
  background: linear-gradient(90deg, #fff 70%, #F7C048 100%);
  color: #34705F;
  border: 1.5px solid #F7C048;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: linear-gradient(90deg, #f5f9f8 70%, #efab09 100%);
  color: #215143;
}
@media (max-width: 660px) {
  .cta-primary, .cta-secondary {
    width: 100%;
    padding: 13px 0;
  }
}

/* ==========================================================================
   FORMS & SEARCH
   ========================================================================== */
.content-wrapper form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  align-items: center;
}
.content-wrapper form input[type="email"],
.content-wrapper form input[type="text"] {
  flex: 1 1 220px;
  padding: 12px 18px;
  border: 1.5px solid #34705F;
  border-radius: 27px;
  font-size: 1rem;
  background: #fff;
  color: #242424;
  transition: border-color 0.13s, box-shadow 0.16s;
}
.content-wrapper form input:focus {
  border-color: #F7C048;
  box-shadow: 0 0 0 2px #ffe4ad44;
}

.search-bar {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 1.5px 7px rgba(52,112,95,0.07);
  overflow: hidden;
  width: 100%;
}
.search-bar input {
  flex: 1 1 auto;
  border: none;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 30px 0 0 30px;
  background: #fff;
  color: #215143;
}
.search-bar button {
  background: #F7C048;
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  transition: background 0.15s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #efab09;
}
.search-bar img {
  width: 1.25rem;
  height: 1.25rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 9px 0 19px 0;
}
.filter-chips span {
  background: #F7C048;
  color: #fff;
  padding: 5px 18px;
  border-radius: 24px;
  font-size: 0.99rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 0.5px 4px rgba(52,112,95,0.06);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.filter-chips span:hover, .filter-chips span:focus {
  background: #34705F;
  color: #fff !important;
}

.sort-options {
  display: flex;
  gap: 25px;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #34705F;
}
.sort-options input[type="radio"] {
  accent-color: #F7C048;
  margin-right: 6px;
}


/* ==========================================================================
   RECIPE CARDS & LISTINGS
   ========================================================================== */
.recipe-cards, .tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 9px rgba(52,112,95,0.08);
  padding: 24px 18px 18px 18px;
  position: relative;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.recipe-card:hover, .recipe-card:focus-within {
  box-shadow: 0 5px 22px rgba(52,112,95,0.15);
  transform: scale(1.018);
}
.difficulty-tag {
  background: #F7C048;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 13px;
  font-size: 0.93rem;
  padding: 4px 14px;
  position: absolute;
  right: 16px;
  bottom: 13px;
  line-height: 1.2;
}

/* --- TIP CARDS (Tipy a triky) --- */
.tip-cards {
  margin-bottom: 20px;
}
.tip-card {
  flex: 1 1 220px;
  background: #f5f9f8;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(52,112,95,0.06);
  padding: 18px 13px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  min-width: 195px;
  margin-bottom: 14px;
}

@media (max-width:860px) {
  .feature-grid, .card-container, .recipe-cards, .tip-cards {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div, .recipe-card, .tip-card {
    min-width: 0;
    width: 100%;
  }
}

/* --- QUCIK FAQ --- */
.quick-faq {
  background: #fff;
  border-radius: 15px;
  padding: 18px 22px;
  box-shadow: 0 1.5px 6px rgba(52,112,95,0.07);
  margin-top: 14px;
}
.quick-faq h3 {
  color: #34705F;
  margin-bottom: 7px;
  font-weight: 600;
}
.quick-faq ul {
  margin-left: 16px;
  margin-bottom: 0;
}

/* --- PRESENTATION ICONS --- */
.presentation-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 20px;
}
.presentation-icons img {
  height: 48px;
}

/* --- ACCORDION FAQ --- */
.accordion-faq {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.accordion-faq > div {
  background: #f5f9f8;
  border-radius: 11px;
  box-shadow: 0 0.5px 3px rgba(52,112,95,0.03);
  padding: 12px 18px;
  cursor: pointer;
}
.accordion-faq h3 {
  color: #34705F;
  margin-bottom: 3px;
  font-weight: 600;
}
.accordion-faq > div > div {
  font-size: 1rem;
  margin-left: 0;
  margin-bottom: 0;
  color: #232323;
}

/* --- MAP EMBED PLACEHOLDER --- */
.map-embed {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7C04812;
  padding: 20px;
  border-radius: 14px;
  min-height: 70px;
}
.map-embed img {
  height: 36px;
  width: auto;
  opacity: 0.6;
}

/* --- CONTACT TEASER --- */
.contact-teaser {
  background: #f5f9f8;
  border-radius: 15px;
  box-shadow: 0 1px 6px rgba(52,112,95,0.04);
  margin-top: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}


/* ==========================================================================
   CATEGORY & LINKS LISTS
   ========================================================================== */
.content-wrapper ul {
  list-style-type: disc;
  margin-left: 27px;
  margin-bottom: 11px;
  color: #233d33;
  font-size: 1rem;
}
.content-wrapper li {
  margin-bottom: 6px;
}
.content-wrapper ul li a {
  color: #34705F;
  font-weight: 600;
  transition: color 0.17s;
}
.content-wrapper ul li a:hover {
  color: #F7C048;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #233d33;
  color: #fff;
  padding: 44px 0 30px 0;
  margin-top: 42px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-brand img {
  height: 39px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 9px;
}
footer nav a {
  color: #F7C048;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin: 0 1px;
  opacity: 0.99;
  transition: color 0.16s;
}
footer nav a:hover { color: #fff; }
.footer-contact {
  font-size: 0.98rem;
  color: #e4e4e4;
  line-height: 1.65;
  margin-top: 6px;
}
.footer-contact a {
  color: #F7C048;
  font-weight: 600;
  transition: color 0.1s;
}
.footer-contact a:hover {
  color: #fff;
}
@media (max-width:850px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,#f7c048 70%, #34705F 100%);
  color: #232323;
  box-shadow: 0 -2px 12px rgba(52,112,95,0.16), 0 -1.5px 5px 0 rgba(0,0,0,0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  z-index: 4000;
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  animation: slideInCookie 0.6s cubic-bezier(.55,0,.37,1);
  gap: 16px;
}
@keyframes slideInCookie {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner button {
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  background: #fff;
  color: #34705F;
  transition: background 0.16s, color 0.16s, box-shadow 0.21s;
  box-shadow: 0 0.5px 2.5px rgba(52,112,95,0.08);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #34705F;
  color: #fff;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #F7C048;
  color: #223d33;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #fff6e2;
  color: #E09f23;
}

@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 17px;
    padding: 18px 7px 16px 7px;
    border-radius: 14px 14px 0 0;
    font-size: 0.98rem;
    left: 7px;
    right: 7px;
  }
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(52,112,95,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  transition: background 0.23s;
  animation: fadeModal 0.18s;
}
@keyframes fadeModal {
  from { opacity: 0.38; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 390px;
  box-shadow: 0 5px 27px rgba(52,112,95,0.16);
  padding: 36px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 5010;
  animation: riseModal 0.24s cubic-bezier(.6,0,.35,1);
}
@keyframes riseModal {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 9px;
  color: #34705F;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F7C048;
  width: 18px; height: 18px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 11px; right: 13px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #34705F;
  border-radius: 6px;
  transition: background 0.16s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: #F7C04826;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal button {
  border-radius: 18px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: #f5f9f8;
  color: #233d33;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #F7C048;
  color: #fff;
}

/* ==========================================================================
   RESPONSIVENESS & FLEXBOX BREAKPOINTS
   ========================================================================== */
@media (max-width:640px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1rem; }
  .section { padding: 16px 4px; }
}
@media (max-width:420px) {
  .section { padding: 9px 2px; margin-bottom: 28px; }
  .card, .tip-card, .feature-grid > div, .recipe-card {
    padding: 12px 7px;
    border-radius: 6px;
  }
}

/* ==========================================================================
   MICRO-INTERACTIONS & EFFECTS
   ========================================================================== */
.card, .feature-grid > div, .recipe-card, .tip-card {
  transition: box-shadow 0.14s, transform 0.1s;
}
.card:hover, .feature-grid > div:hover, .recipe-card:hover, .tip-card:hover {
  box-shadow: 0 5px 20px rgba(52,112,95,0.19);
  transform: scale(1.015);
}

button, .cta-primary, .cta-secondary, .filter-chips span {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.12s;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ==========================================================================
   BRAND ACCENT ELEMENTS
   ========================================================================== */
::-webkit-scrollbar { width: 5.5px; background: #e6eced; }
::-webkit-scrollbar-thumb { background: #34705f77; border-radius: 7px; }

::selection {
  background: #F7C04822;
}

/* ==========================================================================
   END
   ========================================================================== */