/* ========================================
   CSS RESET & BASELINE NORMALIZATION
======================================== */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F2EFE9;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #2a2a2a;
  background: #F2EFE9;
  line-height: 1.65;
  -webkit-tap-highlight-color: transparent;
}
img, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #245C27;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #7AA866;
  outline-offset: 2px;
}
ol, ul {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
}
button, .btn-primary, .btn-secondary {
  cursor: pointer;
}

/* ========================================
   BRAND PALETTE & TYPOGRAPHY
======================================== */
:root {
  --color-primary: #245C27;
  --color-secondary: #7AA866;
  --color-accent: #F2EFE9;
  --color-dark: #222;
  --color-light: #fff;
  --color-muted: #e4e0da;
  --font-display: 'Prata', Georgia, serif;
  --font-body: 'Georgia', 'Times New Roman', Times, serif;
  --shadow-soft: 0 2px 16px 0 rgba(36,92,39,0.07), 0 1.5px 6px 0 rgba(36,92,39,0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition-fast: 0.2s cubic-bezier(0.4,0.2,0.2,1);
  --transition-med: 0.35s cubic-bezier(0.4,0.2,0.2,1);
  --border: 1px solid #e4e0da;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-family: var(--font-body);
  color: #2a2a2a;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
small {
  font-size: 0.88rem;
}

/* ========================================
   CONTAINERS & LAYOUT
======================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  background: var(--color-light);
  border-bottom: var(--border);
  box-shadow: 0 1px 8px rgba(36,92,39,0.07);
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}
.main-nav a.btn-primary {
  padding: 8px 24px;
  background: var(--color-primary);
  color: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px 0 rgba(36,92,39,0.11);
  font-family: var(--font-display);
  margin-left: 16px;
  transition: background var(--transition-fast);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  transition: background 0.18s;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus {
  background: var(--color-muted);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,92,39,0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.45,0.19,0.23,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-light);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 18px 26px 6px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--color-light);
  padding: 12px 0;
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.18s;
  width: fit-content;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* ========================================
   HERO & GENERAL SECTIONS
======================================== */
.hero-section {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 60px 20px 48px;
  margin-bottom: 60px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-family: var(--font-display);
  margin-bottom: 10px;
  color: var(--color-primary);
}
.hero-section h2 {
  color: var(--color-secondary);
  font-size: 1.65rem;
  margin-bottom: 20px;
}
.hero-section p {
  margin-bottom: 18px;
}

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

.features-section,
.values-section {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Feature grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 14px;
}
.feature-grid li {
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px 20px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 24px 0 rgba(36,92,39,0.13), 0 2.5px 10px 0 rgba(36,92,39,0.12);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  filter: saturate(0.6) grayscale(0.2);
}

/* ========================================
   SERVICES SECTIONS
======================================== */
.service-list,
.service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.service-list li, .service-list-detailed li {
  flex: 1 1 260px;
  min-width: 210px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.service-list-detailed li img {
  width: 42px; height: 42px; margin-bottom: 0.5rem;
}
.service-list-detailed li h2 {
  font-size: 1.3rem;
}

/* CTA Banner */
.cta-banner-section {
  background: var(--color-secondary);
  color: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 30px 20px;
  text-align: center;
}
.cta-banner-section h2 {
  color: var(--color-light);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-banner-section .btn-primary {
  margin-top: 16px;
}

/* ========================================
   TIPS/GUIDES/INSPIRATIONS
======================================== */
.tips-teaser-grid,
.tips-list,
.tips-list-section .tips-teaser-grid,
.inspiration-teasers,
.product-teasers,
.workshop-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.tips-teaser, .tips-list li, .teaser, .product-item, .workshop-details {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 15px 16px;
  flex: 1 1 240px;
  min-width: 205px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s;
}
.tips-teaser:hover, .teaser:hover, .product-item:hover {
  box-shadow: 0 4px 19px 0 rgba(36,92,39,0.15);
}
.tips-teaser a, .teaser a {
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1rem;
  margin-top: 6px;
  transition: color 0.17s;
}
.tips-teaser a:hover, .teaser a:hover {
  color: #245C27;
}

.inspiration-teasers, .product-teasers {
  gap: 28px;
}
.shop-usps-section .usp-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.shop-usps-section .usp-list li {
  flex: 1 1 220px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 186px;
  font-size: 1rem;
}
.shop-usps-section img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 38px 20px 33px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--color-accent);
  border: 1px solid #ddd8cf;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 28px;
  max-width: 370px;
  margin-bottom: 20px;
  color: #222;
  font-size: 1.12rem;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(36,92,39,0.13);
  border-color: var(--color-secondary);
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

/* ========================================
   CONTACT / FOOTER / INFO
======================================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #2a2a2a;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

footer {
  background: var(--color-light);
  border-top: var(--border);
  margin-top: 60px;
  padding: 36px 0 10px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--color-primary);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.16s, color 0.16s;
  padding: 3px 10px;
}
.footer-menu a:focus,
.footer-menu a:hover {
  background: var(--color-muted);
}
.footer-contact ul {
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  transition: opacity 0.15s;
  opacity: 0.8;
}
.footer-social a:focus img, .footer-social a:hover img {
  opacity: 1;
}
footer p {
  font-size: 0.93rem;
  color: #929081;
  margin-top: 18px;
}

/* ========================================
   BUTTONS & LINKS
======================================== */
.btn-primary,
.btn-secondary {
  font-family: var(--font-display);
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  padding: 12px 30px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  box-shadow: 0 2px 8px 0 rgba(36,92,39,0.07);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-light);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-light);
  box-shadow: 0 4px 16px 0 rgba(122,168,102,0.11);
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-light);
}
.btn-secondary:focus,
.btn-secondary:hover {
  background: #547e46;
  color: var(--color-light);
}

button:disabled, .btn-primary:disabled, .btn-secondary:disabled {
  background: #b1b1b1 !important;
  color: #fff !important;
  opacity: 0.7;
  pointer-events: none;
}
/* Link buttons in cards & footers */
.card a, .footer-menu a, .mobile-nav a {
  transition: background 0.15s, color 0.15s;
}

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--color-accent);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 17px 15px 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(36,92,39,0.07);
}
.faq-item h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
  color: #47473f;
}

/* ========================================
   COOKIE CONSENT BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2e3914;
  color: #fff;
  z-index: 9998;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -3px 16px 0 rgba(36,92,39,0.15);
  font-family: var(--font-body);
  font-size: 1.05rem;
  opacity: 1;
  transition: opacity 0.45s linear;
  border-top: 3px solid var(--color-secondary);
  border-radius: 22px 22px 0 0;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1.0rem;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  border: none;
  margin-right: 0;
  margin-left: 0;
  margin-top: 8px;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
  transition: background 0.15s;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-primary);
}
.cookie-banner .reject {
  background: none;
  color: #fff;
  border: 1px solid #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1px dashed #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #7AA866;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47,56,36,0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.25s linear;
}
.cookie-modal-overlay.hide { opacity:0; pointer-events:none; }
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  padding: 32px 28px 26px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px 0 rgba(36,92,39,0.19);
  z-index: 10002;
  max-width: 410px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: var(--font-display);
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-modal .category .toggle {
  width: 38px; height: 22px;
  border-radius: 12px;
  background: #eceae4;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
}
.cookie-modal .category .toggle[aria-checked='true'] {
  background: var(--color-secondary);
}
.cookie-modal .category .toggle:after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 4px rgba(36,92,39,0.05);
}
.cookie-modal .category .toggle[aria-checked='true']:after {
  left: 18px;
}
.cookie-modal .category-label {
  font-family: var(--font-body);
}
.cookie-modal .modal-actions {
  margin-top: 15px;
  display: flex;
  gap: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 18px;
  background: none;
  font-size: 1.65rem;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover {
  color: var(--color-secondary);
}

/* ========================================
   FORMS
======================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 11px 15px;
  border: 1px solid #c4c1b7;
  border-radius: var(--radius-md);
  background: #fff;
  width: 100%;
  font-size: 1.05rem;
  font-family: var(--font-body);
  margin-bottom: 10px;
  color: #23261c;
  transition: border 0.15s, box-shadow 0.18s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 2px 8px 0 rgba(122,168,102,0.13);
}

/* ========================================
   CARDS & FLEX CONTAINERS (MANDATORY PATTERNS)
======================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1140px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 92vw;
  }
  .main-nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  .service-list-detailed li, .feature-grid li, .card, .product-item, .teaser, .tips-teaser {
    min-width: 146px;
  }
}
@media (max-width: 880px) {
  .feature-grid, .tips-teaser-grid, .teaser, .product-teasers, .usp-list, .workshop-calendar, .testimonial-slider, .service-list-detailed, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  header .container {
    height: auto;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 8px;
    min-height: 66px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    z-index: 101;
  }
  .section, .hero-section {
    margin-bottom: 38px;
    padding: 27px 9px;
    border-radius: var(--radius-md);
  }
  .cta-banner-section {
    padding: 20px 8px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    padding: 16px 12px;
  }
  .tips-teaser, .product-item, .teaser {
    padding: 14px 7px 10px;
  }
  .footer-menu {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.92em;
  }
  .footer-social a img {
    width: 28px; height: 28px;
  }
}
@media (max-width: 570px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3, h4 { font-size: 1rem; }
  .hero-section, .section {
    padding: 11px 3px 16px 3px;
    border-radius: var(--radius-sm);
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }
  .cookie-modal {
    padding: 16px 5vw 14px 5vw;
    width: 96vw;
  }
}
@media (max-width: 430px) {
  .footer-contact li {
    font-size: 0.91rem;
  }
  .contact-info li {
    font-size: 0.92rem;
  }
  .hero-section h1 { font-size: 1.18rem; }
}

/* Force no overlap of content */
.card, .product-item, .teaser, .tips-teaser {
  margin-bottom: 20px;
}
.section, .hero-section, .testimonials-section, .cta-banner-section {
  margin-bottom: 60px;
}

/* Misc. micro-interactions and smoothness */
* {
  transition: background 0.18s, box-shadow 0.18s, border 0.16s, color 0.18s;
}

::-webkit-scrollbar {
  width: 11px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #d8d4c5;
  border-radius: 14px;
}

/* ========================================
   END OF CSS
======================================== */
