/* =============================================================
   Libraaddot Jardin Professional Corporate CSS
   -------------------------------------------------------------
   Brand: Professional, Blue/Gray palette, Montserrat/Open Sans
   All layouts: FLEXBOX ONLY,
   Responsive mobile-first, All interactive elements styled.
   No CSS Grid nor columns used ANYWHERE.
   ============================================================= */
/* ---------------------
   CSS 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, menu, 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, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  background: #F7F9FB;
  color: #1B2936;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
a {
  color: #20613A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #184d2d;
  outline: none;
}
button,
input[type="button"],
input[type="submit"] {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
strong { font-weight: 700; }
em, i { font-style: italic; }

/* ------------------------------------------
   BRAND COLORS AND TYPOGRAPHY (Fallbacks)
------------------------------------------ */
:root {
  --primary: #20613A;
  --primary-light: #38875a;
  --secondary: #A2C298;
  --accent: #FFE9B9;
  --dark-gray: #1B2936;
  --mid-gray: #435269;
  --light-gray: #F7F9FB;
  --border-gray: #E2E8F0;
  --shadow-gray: rgba(34,62,89,0.07);
  --white: #fff;
  --display: 'Montserrat', Arial, Helvetica, sans-serif;
  --body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* -------------------
   CONTAINERS
-------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main {
  flex: 1 0 auto;
}
/* -------------------
   HEADER & NAVIGATION
-------------------- */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  box-shadow: 0 2px 12px var(--shadow-gray);
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: var(--body);
  color: var(--mid-gray);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: 0;
}
header nav a:hover,
header nav a.active {
  color: var(--primary);
}
header nav a:hover:after {
  width: 100%;
}
header a.btn-primary {
  margin-left: 24px;
}
header img[alt="Libraaddot Jardin"] {
  width: 136px;
  height: auto;
  margin-right: 32px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary-light);
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  box-shadow: -4px 0 16px 0 var(--shadow-gray);
  padding: 32px 24px 24px 32px;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 16px;
  transition: background 0.2s;
  border: 1px solid var(--secondary);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: var(--mid-gray);
  font-size: 1.15rem;
  font-family: var(--body);
  font-weight: 600;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* -------------------
   HERO / SECTION LAYOUT
-------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
}

/* ------------------
   TYPOGRAPHY
-------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--primary);
  font-weight: 700;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 1.625rem;
  line-height: 1.18;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.13rem;
  margin-bottom: 6px;
}
h4 {
  font-size: 1rem;
}
p,
ul li, ol li, label, span, em {
  font-family: var(--body);
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
}
label {
  font-weight: 600;
  margin-bottom: 8px;
}

/* -------------------
   BUTTONS & CTAS
-------------------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 32px;
  min-width: 148px;
  margin-top: 16px;
  transition: background 0.20s, color 0.20s, box-shadow 0.25s;
  box-shadow: 0 4px 14px -6px var(--shadow-gray);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  text-decoration: none;
  gap: 8px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-light);
  color: var(--white);
  box-shadow: 0 6px 22px -7px var(--shadow-gray);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 22px -7px var(--shadow-gray);
}

button[type="submit"],
form button {
  background: var(--primary);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: 700;
  font-family: var(--display);
  font-size: 1rem;
  transition: background 0.20s, box-shadow 0.20s;
  margin-top: 16px;
}
button[type="submit"]:hover,
form button:hover,
form button:focus {
  background: var(--primary-light);
  box-shadow: 0 4px 14px -6px var(--shadow-gray);
  color: var(--white);
  outline: none;
}

/* -----------------
   FORM ELEMENTS
------------------ */
input, textarea, select {
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  font-family: var(--body);
  width: 100%;
  margin-bottom: 18px;
  background: var(--white);
  color: var(--mid-gray);
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 12px var(--shadow-gray);
  outline: none;
}

/* ------------------------
   FEATURES FLEX PATTERNS
------------------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature-item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  padding: 28px 24px 24px 24px;
  min-width: 250px;
  flex: 1 1 270px;
  box-shadow: 0 2px 12px var(--shadow-gray);
  border: 1px solid var(--border-gray);
  margin-bottom: 20px;
  transition: box-shadow 0.20s, border 0.18s, transform 0.16s;
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 22px -7px var(--shadow-gray);
  border: 1.5px solid var(--secondary);
}
.feature-icon {
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------
   CARD PATTERN
------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--shadow-gray);
  border: 1px solid var(--border-gray);
  position: relative;
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 200px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* -----------
 CONTENT GRIDS
------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.articles-grid,
.articles-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.articles-preview-list article, .articles-grid article {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow-gray);
  border: 1px solid var(--border-gray);
  padding: 26px 22px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.articles-preview-list article:hover, .articles-grid article:hover {
  box-shadow: 0 8px 28px -10px var(--shadow-gray);
  transform: translateY(-4px) scale(1.03);
  border: 1.3px solid var(--secondary);
}
.articles-preview-list article h3, .articles-grid article h2 {
  font-size: 1.19rem;
  font-family: var(--display);
}
.articles-preview-list article a, .articles-grid article a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.15s;
  font-size: 1.01rem;
}
.articles-preview-list article a:hover, .articles-grid article a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

/* -----------
   PLANT CARD GRID
-------------- */
.plant-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.plant-card {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--shadow-gray);
  border: 1px solid var(--border-gray);
  padding: 22px 22px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.plant-card:hover {
  box-shadow: 0 8px 28px -10px var(--shadow-gray);
  border: 1.2px solid var(--secondary);
}

/* ---------------------------
  TEXT IMAGE FLEX SECTIONS
---------------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --------------------------
   TESTIMONIALS
--------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--shadow-gray);
  border: 1.5px solid var(--secondary);
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-size: 1.12rem;
  transition: box-shadow 0.19s, border 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px -5px var(--shadow-gray);
  border: 2px solid var(--primary);
}
.testimonial-card p {
  font-style: italic;
  color: var(--dark-gray);
}
.testimonial-card span {
  font-family: var(--display);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

/* --------------------
   SEARCH BAR & CATEGORIES
----------------------- */
.search-bar {
  margin: 18px 0 34px 0;
  width: 100%;
}
.search-bar input[type="search"] {
  padding: 13px 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  width: 100%;
  background: var(--white);
  transition: border 0.18s, box-shadow 0.16s;
}
.search-bar input[type="search"]:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 12px var(--shadow-gray);
  outline: none;
}
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.category-buttons a {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 16px;
  font-weight: 700;
  font-family: var(--body);
  font-size: 1rem;
  transition: background 0.17s, color 0.17s;
  border: none;
}
.category-buttons a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ------------
   FAQ & List
-------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--secondary);
  color: var(--dark-gray);
  border-radius: 13px;
  padding: 16px 22px;
  border: 1.2px solid var(--primary);
  box-shadow: 0 2px 10px var(--shadow-gray);
}
.faq-item h3 {
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 4px;
  font-family: var(--display);
  font-weight: 700;
}

ul, ol {
  margin-left: 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul li,
ol li {
  padding-left: 8px;
  color: var(--mid-gray);
  font-size: 1rem;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 18px 0 4px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: var(--body);
  color: var(--mid-gray);
}

/* ------------
   FOOTER
------------- */
footer {
  background: var(--primary);
  color: var(--light-gray);
  padding: 46px 0 18px 0;
  font-family: var(--body);
}
footer .container {
  flex-direction: column;
  gap: 22px;
}
.footer-brand {
  margin-bottom: 12px;
}
.footer-brand img {
  width: 120px;
  height: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--accent);
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.03rem;
  transition: color 0.15s;
}
.footer-links a:focus, .footer-links a:hover {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--light-gray);
  align-items: flex-start;
  margin-bottom: 8px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  justify-content: center;
  transition: background 0.15s, box-shadow 0.18s;
}
.footer-social a:hover {
  background: var(--secondary);
  box-shadow: 0 4px 10px -4px var(--shadow-gray);
}
.footer-social img {
  width: 20px;
  height: 20px;
}
.footer-copyright {
  font-size: 0.96rem;
  color: var(--accent);
  margin-top: 10px;
}

/* --------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--white);
  border-top: 2.5px solid var(--primary);
  box-shadow: 0 -2px 16px var(--shadow-gray);
  padding: 28px 20px 28px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  min-height: 80px;
  animation: cookieSlideUp 0.45s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  font-size: 1.04rem;
  color: var(--mid-gray);
  max-width: 700px;
  font-family: var(--body);
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px;
  padding: 10px 22px;
  transition: background 0.18s, color 0.14s, box-shadow 0.17s;
  border: 1.3px solid var(--secondary);
  box-shadow: 0 2px 6px var(--shadow-gray);
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--primary-light);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--white);
  color: var(--primary);
  border: 1.3px solid var(--primary);
}
.cookie-btn.reject:hover {
  background: var(--accent);
  color: var(--dark-gray);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1.2px solid var(--secondary);
}
.cookie-btn.settings:hover {
  background: var(--primary);
  color: var(--white);
}

/* COOKIE POPUP MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1300;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,45,64,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s;
  opacity: 1;
  pointer-events: all;
  animation: modalAppear 0.36s cubic-bezier(.73,0,.38,1);
}
@keyframes modalAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 36px -8px var(--shadow-gray);
  padding: 38px 28px 28px 28px;
  max-width: 480px;
  width: 90vw;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-gray);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
}
/* Custom toggle styles */
.cookie-toggle {
  width: 50px;
  height: 28px;
  background: var(--border-gray);
  border-radius: 50px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.19s;
  display: inline-block;
}
.cookie-toggle[aria-checked="true"], .cookie-toggle.checked {
  background: var(--primary);
}
.cookie-toggle .toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px var(--shadow-gray);
  transition: left 0.19s;
}
.cookie-toggle[aria-checked="true"] .toggle-knob,
.cookie-toggle.checked .toggle-knob {
  left: 25px;
}
.cookie-category[data-essential] .cookie-toggle,
.cookie-category .cookie-toggle[disabled] {
  background: var(--secondary)!important;
  cursor: not-allowed;
}
/* Hide modal when closed */
.cookie-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

/* ------------------
   MEDIA QUERIES
-------------------- */
@media (max-width: 1024px) {
  header .container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .footer-links {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features-grid, .plant-profiles, .articles-grid, .articles-preview-list, .card-container, .footer-links, .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .content-wrapper {
    align-items: flex-start;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card {
    min-width: 85vw;
    max-width: 98vw;
    padding: 18px 6px;
  }
  section {
    padding: 28px 6px;
  }
  .testimonial-card {
    padding: 18px 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
  }
  .footer-links {
    flex-direction: column;
    gap: 7px;
  }
  .category-buttons, .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 8px;
    min-height: unset;
  }
  .cookie-btns {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .btn-primary, .btn-secondary, button[type="submit"] {
    padding: 10px 22px;
    min-width: 0;
    font-size: 1rem;
  }
  .articles-preview-list article, .articles-grid article, .plant-card {
    padding: 14px 4px;
    min-width: 92vw;
  }
}

/* -------------------
   MICRO-INTERACTIONS
--------------------- */
.btn-primary, .btn-secondary, button[type="submit"], .cookie-btn {
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.14s;
}
.btn-primary:active, .btn-secondary:active, button[type="submit"]:active, .cookie-btn:active {
  transform: scale(0.98);
}
.card:active,
.feature-item:active,
.articles-preview-list article:active,
.articles-grid article:active,
.testimonial-card:active {
  transform: scale(0.98);
}

/* -------------------
   UTILITIES
------------------- */
.hide {
  display: none;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.pt-24 { padding-top: 24px; }
.pb-24 { padding-bottom: 24px; }
.gap-20 { gap: 20px!important; }
.gap-10 { gap: 10px!important; }

/* End of CSS */
