/* --- 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, 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;
  scroll-behavior: smooth;
  background: #f1f6eb;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  color: #113142;
  background: #f1f6eb;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
}
a {
  color: #24536b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7fa167;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input[type='button'], input[type='submit'] {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}

/* --- FONT FACE (with fallbacks for vintage/retro style) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Montserrat:wght@400;600&family=Lato:wght@400;700&display=swap');

/* --- VINTAGE RETRO PALETTE EXTENSIONS --- */
:root {
  --primary: #24536b;
  --secondary: #7fa167;
  --accent: #f1f6eb;
  --cream: #f9ecd0;
  --coral: #ec9072;
  --vintage-brown: #c7a589;
  --retro-yellow: #fada68;
  --retro-blue: #49778a;
  --retro-green: #a0b16a;
  --vintage-text: #21404c;
  --card-shadow: rgba(64,49,36,0.09);
  --border-radius: 14px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-shadow: 1px 2px 0px var(--cream), 0 2px 8px rgba(36,83,107,0.07);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--secondary);
  letter-spacing: 1.5px;
}
h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.lead {
  font-size: 1.25rem;
  color: var(--vintage-text);
  margin-bottom: 24px;
  font-family: 'Lato', Arial, sans-serif;
}
p {
  margin-bottom: 18px;
  color: var(--vintage-text);
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
blockquote {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  background: var(--cream);
  border-left: 4px solid var(--coral);
  color: var(--primary);
  margin-bottom: 10px;
  padding: 14px 18px 14px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 12px var(--card-shadow);
}

/* === GENERAL SPACING PATTERNS === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- LAYOUT FLEX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--cream);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 18px var(--card-shadow);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid var(--vintage-brown);
}
.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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--card-shadow);
  border: 1.5px solid var(--retro-yellow);
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--border-radius);
  padding: 26px 20px;
  box-shadow: 0 4px 18px var(--card-shadow);
  border: 1.5px solid var(--vintage-brown);
  flex: 1 1 260px;
  min-width: 240px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--primary);
  padding: 0;
  box-shadow: 0 4px 16px rgba(36, 83, 107, 0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  height: 50px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--cream);
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 90%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-yellow);
}
.mobile-menu-toggle {
  display: none;
  background: var(--coral);
  color: #fff;
  font-size: 2rem;
  border-radius: 7px;
  margin-left: 18px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1200;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--retro-blue);
  color: #fff;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--primary);
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.78,.16,.24,.87);
  padding: 0 32px;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--coral);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  margin: 36px 0 30px 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2200;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px dotted var(--accent);
  width: 100%;
  display: block;
  letter-spacing: 2px;
  transition: color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-yellow);
  background: rgba(255,255,255,0.07);
}

/* --- HERO/CTA SECTIONS --- */
.hero {
  background: var(--retro-yellow);
  background-image: url('../assets/patterns/retro-pattern.png'), var(--retro-yellow);
  background-size: 140px, auto;
  background-repeat: repeat, no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 5px solid var(--vintage-brown);
  box-shadow: 0 4px 24px var(--card-shadow);
}
.cta {
  background: var(--secondary);
  box-shadow: 0 4px 18px var(--card-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}
.cta-button, button.cta-button, .quick-add {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 13px 32px;
  margin-top: 16px;
  border-radius: 999px;
  border: 2px solid var(--coral);
  transition: background 0.22s, color 0.15s, border 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 7px var(--card-shadow);
  letter-spacing: 1.3px;
}
.cta-button:hover, .cta-button:focus, .quick-add:hover, .quick-add:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  border: 2px solid var(--retro-yellow);
  box-shadow: 0 4px 22px var(--card-shadow);
}

/* --- CARD & FEATURE STYLING --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: flex-start;
}
.collection-list {
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 5px solid var(--vintage-brown);
  padding-left: 18px;
  background: var(--cream);
  border-radius: var(--border-radius);
}
.collection-list li h3 {
  color: var(--coral);
}
.pro-tips {
  background: var(--retro-yellow);
  border-left: 4px solid var(--secondary);
  padding: 16px 22px 16px 20px;
  font-size: 1.08rem;
  margin-top: 18px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--card-shadow);
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.product {
  flex: 1 1 250px;
  background: var(--cream);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--card-shadow);
  border: 1.5px solid var(--secondary);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow 0.18s, border 0.18s, transform 0.17s;
}
.product:hover, .product:focus-within {
  box-shadow: 0 8px 28px var(--card-shadow);
  border: 2px solid var(--coral);
  transform: translateY(-2px) scale(1.015);
}
.quick-add {
  margin-top: 10px;
  font-size: 1rem;
  background: var(--secondary);
  color: #fff;
  padding: 8px 19px;
  border-radius: 24px;
  border: 2px solid var(--secondary);
}
.quick-add:hover, .quick-add:focus {
  background: var(--primary);
  border-color: var(--coral);
  color: var(--retro-yellow);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--accent);
  box-shadow: 0 4px 14px var(--card-shadow);
  border-top: 6px solid var(--coral);
  border-bottom: 8px double var(--secondary);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: var(--primary);
  min-width: 280px;
  border-left: 10px solid var(--retro-yellow);
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 6px 20px var(--card-shadow);
  transition: box-shadow 0.2s, border 0.18s;
  font-size: 1.08rem;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(36,83,107,.15);
  border-left: 10px solid var(--coral);
}
.testimonial-author {
  color: var(--secondary);
  font-weight: 700;
  margin-top: 8px;
  font-size: 0.97rem;
}

/* --- FOOTER --- */
footer {
  background: var(--retro-blue);
  color: var(--accent);
  padding: 38px 0 28px 0;
  border-top: 4px solid var(--primary);
  box-shadow: 0 -3px 18px var(--card-shadow);
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.footer-branding img {
  height: 38px;
}
.footer-tagline {
  color: #fff;
  opacity: 0.89;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px #113142;
  margin-top: 0;
}

/* --- SECTION STYLES FOR VINTAGE/RETRO FEEL --- */
.features {
  background: var(--accent);
  box-shadow: 0 2px 18px var(--card-shadow);
  border-radius: var(--border-radius);
}
.features ul, .service-list ul, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 15px;
  flex-direction: column;
}
.features ul li,
.service-list ul li {
  background: var(--cream);
  border-radius: var(--border-radius);
  padding: 14px 18px 13px 22px;
  border-left: 4px solid var(--retro-green);
  color: var(--primary);
  box-shadow: 0 2px 10px var(--card-shadow);
  font-size: 1rem;
}

.category-navigation {
  background: var(--vintage-brown);
  border-radius: var(--border-radius);
  margin-bottom: 18px;
  box-shadow: 0 2px 12px var(--card-shadow);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  margin-top: 6px;
}
.category-filters a {
  color: var(--coral);
  background: var(--cream);
  padding: 9px 18px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1.5px dotted var(--secondary);
  transition: background 0.13s, color 0.13s, border 0.12s;
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--coral);
  color: #fff;
  border: 1.5px solid var(--primary);
}

input[type='search'] {
  width: 100%;
  max-width: 400px;
  padding: 12px 18px;
  font-size: 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid var(--secondary);
  box-shadow: 0 1px 7px var(--card-shadow);
  font-family: 'Lato', Arial, sans-serif;
  margin-top: 10px;
}
input[type='search']:focus {
  border-color: var(--primary);
}

.policy, .about-story, .confirmation, .contact, .faq, .team, .garden-services, .shop-services {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 18px var(--card-shadow);
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.faq-list li {
  background: var(--cream);
  border-left: 4px solid var(--coral);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--card-shadow);
  padding: 13px 20px 13px 18px;
}
.faq-list strong {
  color: var(--primary);
}

.map-location {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--retro-yellow);
  padding: 9px 15px;
  border-radius: 13px;
  margin: 22px 0 0 0;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  color: #fff;
  padding: 22px 16px 16px 16px;
  border-top: 3px solid var(--coral);
  box-shadow: 0 -2px 24px rgba(36,83,107,.17);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.32s, opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
  gap: 14px;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 19px;
  padding: 11px 26px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  transition: background 0.18s, color 0.18s, border 0.15s;
  margin-bottom: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-yellow);
  color: var(--primary);
  border-color: var(--primary);
}

/* --- COOKIE MODAL (PREFERENCES) --- */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 70%) scale(0.96);
  opacity: 0;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 96vw;
  width: 410px;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 40px rgba(36,83,107,.23);
  border-radius: 22px;
  padding: 36px 34px 31px 34px;
  transition: opacity 0.24s, transform 0.26s;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, 0%) scale(1);
  pointer-events: all;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: var(--retro-green);
  width: 20px; height: 20px;
}
.cookie-modal .cookie-category.essential label {
  color: var(--coral);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 9px 22px;
  border-radius: 18px;
  font-size: 1rem;
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  border-color: var(--retro-yellow);
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 18px;
  background: transparent;
  color: var(--coral);
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--secondary);
}

/* --- RESPONSIVE DESIGN / MOBILE-FIRST --- */
@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
  .feature-grid {
    gap: 18px;
  }
  .product-list {
    gap: 16px;
  }
}
@media (max-width: 860px) {
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .container {
    padding: 0 12px;
  }
  header .container {
    height: 64px;
    padding: 0 12px;
  }
  .logo img {
    height: 39px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .product-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card, .testimonial-card, .product {
    min-width: unset;
  }
  .collection-list {
    padding-left: 10px;
  }
  .footer-nav {
    gap: 15px;
    font-size: 0.99rem;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .footer-branding img {
    height: 28px;
  }
}

/* --- MODERN MICRO-INTERACTIONS & HOVER EFFECTS --- */
.cta-button, .quick-add, .feature-item, .card, .product, .testimonial-card, .category-filters a {
  transition: box-shadow 0.17s, background 0.17s, border 0.16s, color 0.13s, transform 0.18s;
}
.feature-item:hover, .product:hover, .card:hover {
  box-shadow: 0 8px 42px var(--card-shadow);
  background: var(--retro-yellow);
  transform: translateY(-2px);
}
.feature-item img {
  width: 44px; height: 44px; object-fit: contain;
  filter: grayscale(0.11) brightness(0.88) contrast(1.1);
  margin-bottom: 8px;
}

/* --- SCROLLBAR RETRO STYLE --- */
::-webkit-scrollbar {
  width: 11px;
  background: var(--vintage-brown);
}
::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 15px;
  border: 2px solid var(--vintage-brown);
}

/* --- Z-INDEX LAYERING RULES --- */
header, footer { z-index: 10; position: relative; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

/* --- FORM STYLES (if any form used) --- */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  padding: 12px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1.5px solid var(--secondary);
  font-size: 1rem;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}

/* --- ACCESSIBILITY IMPROVEMENTS --- */
:focus {
  outline: 2px dotted var(--coral);
  outline-offset: 2px;
}

/* --- SPECIAL VINTAGE PATTERN DECOR (optional graphic overlays) --- */
.hero::before, .features::before, .testimonials::before {
  content: '';
  display: block;
  position: absolute;
  left: -48px; top: -32px;
  width: 120px; height: 120px;
  background: url('../assets/patterns/retro-shape.svg') repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero::before, .features::before, .testimonials::before {
    display: none;
  }
}

/* --- UTILITY SPACING CLASSES & MARGINS --- */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-24 { margin-top: 24px!important; }
.mb-24 { margin-bottom: 24px!important; }
.gap-20 { gap: 20px!important; }

/* --- END --- */
