/* -------------------- CSS RESET & NORMALIZE -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3B4A3B;
  background: #EFEADD;
  min-height: 100vh;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style-position: outside;
  padding-left: 1.5em;
  margin-bottom: 20px;
}
a {
  color: #3B4A3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8DAA9D;
  text-decoration: underline;
}
button {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #8DAA9D;
  padding: 10px 14px;
  margin: 0 6px 0 0;
  background: #fff;
  color: #3B4A3B;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid #3B4A3B;
  box-shadow: 0 0 0 2px #EFEADD;
}

/* --------------------- BRAND FONTS --------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #3B4A3B;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }

p, li, input, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  color: #5A6054;
  margin-bottom: 22px;
  max-width: 550px;
}

/* -------------------- SPACING & CONTAINER -------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  /* for consistent alignment */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(139,170,157,0.06);
  padding: 0;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
header nav {
  display: flex;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  color: #3B4A3B;
  transition: background 0.19s, color 0.19s;
}
header nav a:hover, header nav a.active {
  background: #EFEADD;
  color: #8DAA9D;
}
header img {
  height: 40px;
}

.mobile-menu-toggle {
  display: none;
  background: #EFEADD;
  color: #3B4A3B;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(139,170,157,0.12);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #8DAA9D;
  color: #fff;
}

/* -------------------- MOBILE BURGER MENU LOGIC -------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1000;
  transform: translateX(100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.35s cubic-bezier(.48,.02,.56,1.23);
  box-shadow: -2px 0 16px rgba(60,47,29,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2rem;
  background: #EFEADD;
  color: #3B4A3B;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 0 2px 8px rgba(139,170,157,0.1);
  transition: background 0.2s, color 0.2s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8DAA9D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 90px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #EFEADD;
  color: #3B4A3B;
  transition: color 0.18s;
}
.mobile-nav a:hover {
  color: #8DAA9D;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}
/* -------------------- HERO SECTION -------------------- */
.hero-section {
  background: #EFEADD;
  margin-bottom: 0;
  padding: 72px 0 52px 0;
  border-bottom-left-radius: 70px 32px;
  border-bottom-right-radius: 70px 32px;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  max-width: 650px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 36px 0 22px 0;
    border-bottom-left-radius: 32px 12px;
    border-bottom-right-radius: 32px 12px;
  }
  .hero-section .content-wrapper h1 {
    font-size: 1.7rem;
  }
}

/* -------------------- BUTTONS -------------------- */
.cta-btn, .cta-btn.primary, .cta-btn.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 24px;
  padding: 14px 32px;
  transition: background 0.21s, color 0.2s, box-shadow 0.19s, transform 0.09s;
  box-shadow: 0 3px 12px rgba(139,170,157,0.08);
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
}
.cta-btn.primary {
  background: #8DAA9D;
  color: #fff;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #3B4A3B;
  color: #EFEADD;
  transform: translateY(-2px) scale(1.035);
}
.cta-btn.secondary {
  background: #fff;
  color: #3B4A3B;
  border: 2px solid #8DAA9D;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: #ECE7CF;
  color: #3B4A3B;
  border-color: #3B4A3B;
  transform: scale(1.03);
}

/* -------------------- FLEX LAYOUTS: SPACING, CARDS -------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  border-radius: 22px;
  box-shadow: 0 2px 13px rgba(139,170,157,0.09);
  background: #fff;
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(139,170,157,0.14);
  transform: translateY(-3px) scale(1.015);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(139,170,157,0.07);
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.13s;
  border-left: 6px solid #8DAA9D;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(139,170,157,0.15);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: #8DAA9D;
  letter-spacing: 0.01em;
  margin-top: 6px;
  align-self: flex-end;
}

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

/* -------------------- FEATURES SECTION, GRIDS & TEASERS -------------------- */
.features-section, .feature-grid {
  width: 100%;
}
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(139,170,157,0.07);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 300px;
  padding: 28px 18px 21px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(139,170,157,0.15);
}

.product-teasers, .item-grid, .service-cards, .team-bios, .highlighted-articles, .case-study-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.product-teaser, .item-card, .service-card, .article-preview, .case-study-summary, .bio {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(139,170,157,0.08);
  padding: 26px 16px 20px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.12s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-teaser:hover, .item-card:hover, .service-card:hover, .article-preview:hover, .bio:hover {
  box-shadow: 0 6px 22px rgba(139,170,157,0.13);
  transform: translateY(-2px) scale(1.01);
}

.item-card img, .product-teaser img, .service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.service-price {
  margin-top: 12px;
  color: #8DAA9D;
  font-weight: 700;
  font-size: 1rem;
}

/* -------------------- FILTERS, TAGS, SORTING -------------------- */
.filters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-categories, .filter-materials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-tag, .material-tag {
  background: #8DAA9D;
  color: #fff;
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.19s;
  margin-bottom: 4px;
  cursor: pointer;
}
.category-tag:hover, .material-tag:hover {
  background: #3B4A3B;
}
.sorting-options {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.sort-option {
  background: #EFEADD;
  color: #3B4A3B;
  border-radius: 16px;
  padding: 5px 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
}
.sort-option:hover {
  background: #8DAA9D;
  color: #fff;
}

/* -------------------- ABOUT, TEAM, LISTS, QUOTES -------------------- */
.about-short-section ul,
.values-list {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vision-mission {
  margin: 16px 0 15px 0;
  font-weight: 500;
  color: #5A6054;
}
.founder-quote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #8DAA9D;
  font-style: italic;
  background: #ece7cf;
  border-radius: 16px;
  padding: 18px 25px;
  margin-top: 32px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(139,170,157,0.07);
}
.team-bios {
  gap: 24px;
}
.bio h3 {
  font-size: 1.08rem;
  margin-bottom: 9px;
}

/* -------------------- TIPS, ARTICLES, CASE STUDIES -------------------- */
.tip-list {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.article-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(139,170,157,0.07);
  padding: 22px 16px 16px 16px;
  transition: box-shadow 0.15s;
}

.case-study-list {
  gap: 24px;
}
.case-study-summary {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(139,170,157,0.07);
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
}

/* -------------------- CONTACT & MAP -------------------- */
.contact-info-block, .contact-info {
  background: #fff;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 1px 7px rgba(139,170,157,0.08);
  margin-bottom: 20px;
}
.contact-info-block {
  margin-bottom: 10px;
}
.contact-description {
  color: #5A6054;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ece7cf;
  border-radius: 20px;
  min-height: 180px;
  margin-bottom: 18px;
  padding: 16px;
}
.directions-text {
  color: #4E6150;
  margin-bottom: 0;
  font-size: 1rem;
}

/* -------------------- FOOTER -------------------- */
footer {
  background: #EFEADD;
  border-top-left-radius: 60px 24px;
  border-top-right-radius: 60px 24px;
  box-shadow: 0 -1px 14px rgba(139,170,157,0.06);
  padding: 38px 0 30px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  font-size: 0.98rem;
  color: #3B4A3B;
  padding: 5px 8px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
footer nav a:hover {
  color: #8DAA9D;
  background: #fff;
}
footer img {
  height: 36px;
}
footer .contact-info {
  background: #fff;
  box-shadow: 0 1px 7px rgba(139,170,157,0.07);
  border-radius: 14px;
  padding: 16px 16px 12px 16px;
  color: #4E6150;
  font-size: 1rem;
}
footer .contact-info a {
  color: #3B4A3B;
  word-break: break-all;
}
footer .contact-info a:hover {
  color: #8DAA9D;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 14px;
  }
}

/* -------------------- LEGAL PAGE SECTIONS -------------------- */
.legal-section .content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(139,170,157,0.07);
  padding: 32px 18px 24px 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.policy-text, .gdpr-text, .cookie-policy-text, .terms-text {
  margin-top: 15px;
  color: #485845;
}
.policy-text ul, .gdpr-text ul, .cookie-policy-text ul, .terms-text ul {
  margin-bottom: 14px;
  margin-top: 8px;
}

/* -------------------- THANK YOU / SPECIAL SECTIONS -------------------- */
.thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px 22px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(139,170,157,0.07);
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: left;
}

/* -------------------- RESPONSIVE DESIGN -------------------- */
@media (max-width: 1150px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 700px;
  }
  .feature-grid, .product-teasers, .item-grid, .service-cards, .team-bios, .case-study-list, .highlighted-articles {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 34px;
  }
  .feature-card, .item-card, .service-card, .product-teaser {
    max-width: 98vw;
    min-width: 0;
    padding: 22px 12px;
  }
  .testimonial-card, .team-bios, .bio, .article-preview, .case-study-summary {
    padding: 14px 7px;
    min-width: 0;
  }
  .about-short-section ul, .values-list {
    padding-left: 10px;
  }
}

/* -------------------- ANIMATIONS & MICRO-INTERACTIONS -------------------- */
.cta-btn, .cta-btn.primary, .cta-btn.secondary, .category-tag, .material-tag, .sort-option, .feature-card, .testimonial-card, .product-teaser, .item-card, .service-card, .bio, .team-bios, .article-preview, .case-study-summary {
  transition: box-shadow 0.18s, background 0.18s, color 0.16s, transform 0.11s;
}
input:focus, button:focus, textarea:focus, .cta-btn:focus {
  outline: 2px solid #8DAA9D;
  outline-offset: 2px;
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: #3B4A3B;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  box-shadow: 0 -3px 20px rgba(139,170,157,0.13);
  gap: 18px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform 0.34s, opacity 0.22s;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  margin: 0 8px 0 0;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px rgba(139,170,157,0.09);
  font-size: 1rem;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #8DAA9D;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.accept:hover {
  background: #3B4A3B;
  color: #EFEADD;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #fff;
  color: #8DAA9D;
  border: 1.5px solid #8DAA9D;
}
.cookie-consent-banner .cookie-btn.reject:hover {
  background: #efeadd;
  color: #3B4A3B;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #EFEADD;
  color: #3B4A3B;
}
.cookie-consent-banner .cookie-btn.settings:hover {
  background: #8DAA9D;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2100;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  box-shadow: 0 8px 36px rgba(139,170,157,0.24);
  border-radius: 24px;
  min-width: 320px;
  max-width: 92vw;
  max-height: 96vh;
  padding: 38px 30px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.25s, transform 0.19s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-45%) scale(0.95);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 2rem;
  border: none;
  background: #EFEADD;
  color: #3B4A3B;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px rgba(139,170,157,0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  z-index: 2101;
}
.cookie-modal .modal-close:hover {
  background: #8DAA9D;
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 11px;
  padding: 12px 4px 8px 0;
  border-radius: 10px;
  background: #f7f7f3;
}
.cookie-modal .cookie-category strong {
  min-width: 120px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  font-size: 1.18rem;
}
/* Toggle switches for categories */
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EFEADD;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: #8DAA9D;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 3.5px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 5px rgba(139,170,157,0.09);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .btn-group {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  background: #8DAA9D;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  font-size: 1rem;
}
.cookie-modal .cookie-btn.reject {
  background: #fff;
  color: #8DAA9D;
  border: 1.5px solid #8DAA9D;
}
.cookie-modal .cookie-btn.reject:hover {
  background: #EFEADD;
  color: #3B4A3B;
}
/* -------------------- UTILITY CLASSES -------------------- */
.hide { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* -------------------- END :: DOMOV INSPIRACÍ CUSTOM CSS -------------------- */