/* RESET & BASE --------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #374151;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #8EBEA2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #495c49;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button, [type=button], [type=submit] {
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
:focus {
  outline: 2px solid #8EBEA2;
  outline-offset: 2px;
}

/* TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #2D3037;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p, .text-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
strong {
  color: #374151;
  font-weight: 700;
}

/* CONTAINER & MAIN STRUCTURE -------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
  min-height: 60vh;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEX LAYOUT PATTERNS -------------------------------------------- */
.card-container,
.brand-grid,
.category-grid,
.feature-grid,
.card-grid,
.services-list,
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px 0px rgba(244, 231, 220, 0.55), 0 1.5px 6px 0px rgba(142,190,162,0.06);
  margin-bottom: 20px;
  max-width: 420px;
  min-width: 240px;
}

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

/* HERO SECTION ---------------------------------------------------- */
.hero {
  background: #F4E7DC;
  border-radius: 0 0 36px 36px;
  margin-bottom: 48px;
  padding: 56px 0 48px 0;
  box-shadow: 0px 4px 30px 0px rgba(244,231,220,0.2);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}

/* NAVIGATION ------------------------------------------------------ */
header {
  background: #fff;
  padding: 0;
  border-bottom: 2px solid #F4E7DC;
  box-shadow: 0 2px 12px 0px rgba(244,231,220,0.08);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 990;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  position: relative;
}
.logo img {
  height: 44px;
  border-radius: 12px;
  background: #F4E7DC;
  padding: 4px 8px;
}
.main-nav {
  display: flex;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
  border-radius: 8px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4E7DC;
  color: #8EBEA2;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 26px;
  border-radius: 23px;
  font-weight: 700;
  font-size: 1.1rem;
  background: #8EBEA2;
  color: #fff;
  box-shadow: 0 2px 12px 0px rgba(142, 190, 162, 0.10);
  margin-left: 14px;
  border: 0;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #6FA089;
  color: #fff;
  box-shadow: 0 4px 20px 0px rgba(142, 190, 162, 0.18);
}

/* MOBILE BURGER NAV ----------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #8EBEA2;
  color: #fff;
  font-size: 2.1rem;
  padding: 5px 12px;
  border-radius: 12px;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 12px;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #6FA089;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F4E7DC;
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.7,.23,.44,1.02);
  display: flex;
  flex-direction: column;
  padding: 40px 24px 40px 24px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #8EBEA2;
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.9rem;
  display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 1202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6FA089;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 16px 0;
  color: #374151;
  border-radius: 10px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8EBEA2;
  color: #fff;
}
.mobile-menu {
  overflow-y: auto;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}
/* END MOBILE NAVIGATION */

/* FOOTER --------------------------------------------------------- */
footer {
  background: #F4E7DC;
  margin-top: 64px;
  padding: 32px 0 10px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 18px 0px rgba(244,231,220,0.20);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo img {
  height: 40px;
  border-radius: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #8EBEA2;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #495c49;
}
footer p {
  font-size: 0.97rem;
  color: #374151;
}

/* CARDSL & FEATURES & GRIDS --------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0px rgba(244,231,220,0.21);
  padding: 28px 20px 24px;
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature:hover {
  box-shadow: 0 4px 32px 0px rgba(142,190,162,0.13), 0 8px 36px 0px rgba(244,231,220,0.26);
  transform: translateY(-4px) scale(1.02);
}
.feature img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.category-item {
  flex: 1 1 165px;
  max-width: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 6px 0px rgba(142,190,162,0.09);
  padding: 20px 10px 14px 10px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.18s;
}
.category-item img {
  margin: 0 auto 8px; height: 40px;
}
.category-item:hover, .category-item:focus {
  box-shadow: 0 8px 36px 0px rgba(244,231,220,0.2);
  transform: translateY(-2px) scale(1.03);
}

.brand-grid {
  gap: 24px;
}
.brand-item {
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 200px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0px rgba(244,231,220,0.16);
  padding: 23px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.18s;
  margin-bottom: 16px;
}
.brand-item img {
  height: 36px; width: 36px;
}
.brand-item:hover, .brand-item:focus {
  box-shadow: 0 4px 32px 0px rgba(142,190,162,0.14), 0 8px 36px 0px rgba(244,231,220,0.19);
  transform: translateY(-4px) scale(1.02);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.services-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 8px 0px rgba(142,190,162,0.09);
  padding: 24px 22px 20px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;
  gap: 6px;
}
.services-list .price {
  color: #8EBEA2;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 10px;
}

.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.testimonial-card {
  background: #fff;
  color: #374151;
  box-shadow: 0 2px 16px 0px rgba(244,231,220,0.55), 0 1.5px 6px 0px rgba(142,190,162,0.06);
  border-radius: 18px;
  max-width: 420px;
  min-width: 240px;
  position: relative;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 12px;
  margin-top: 2px;
}
.testimonial-card strong {
  color: #8EBEA2;
}
.testimonial-card p {
  margin-bottom: 2px;
  font-size: 1rem;
  color: #84796B;
}

.article-list {
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
}
.article-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0px rgba(244,231,220,0.12);
  padding: 22px 22px 18px 22px;
  margin-bottom: 0;
}

.style-tips {
  background: #F4E7DC;
  border-radius: 14px;
  padding: 18px 22px 14px 22px;
  margin-top: 18px;
  margin-bottom: 0;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #F4E7DC;
  border-radius: 12px;
  padding: 20px 20px 12px 20px;
  box-shadow: 0 1.5px 8px 0px rgba(244,231,220,0.13);
}

/* FILTER CONTROLS ------------------------------------------------ */
.filter-controls {
  margin-top: 16px;
  margin-bottom: 0;
  background: #F4E7DC;
  border-radius: 14px;
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-controls h4 {
  margin-bottom: 10px;
  font-weight: 600;
}
.filter-controls ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter-controls a {
  padding: 7px 15px;
  background: #fff;
  border-radius: 10px;
  color: #374151;
  border: none;
  transition: background 0.16s, box-shadow 0.13s, color 0.13s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.filter-controls a:hover, .filter-controls a:focus {
  background: #8EBEA2;
  color: #fff;
  box-shadow: 0 2px 8px 0px rgba(142,190,162,0.07);
}

.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0px rgba(244,231,220,0.11);
  padding: 26px 20px 18px 24px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER --------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: #fff;
  color: #374151;
  box-shadow: 0 -2px 32px 0px rgba(244,231,220,0.35);
  border-radius: 22px 22px 0 0;
  padding: 30px 16px 17px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.05rem;
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(.53,.02,.18,.84), opacity 0.36s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner .cookie-banner-content {
  flex: 1 1 60%;
  max-width: 500px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-right: 5px;
}
.cookie-btn.accept {
  background: #8EBEA2;
  color: #fff;
  margin-right: 0;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #6FA089;
}
.cookie-btn.reject {
  background: #F4E7DC;
  color: #374151;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #edd8c2;
}
.cookie-btn.settings {
  background: #fff;
  color: #8EBEA2;
  border: 1.5px solid #8EBEA2;
  margin-right: 0;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #8EBEA2;
  color: #fff;
}

/* COOKIE MODAL ----------------------------------------------------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1501;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(55,65,81,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 30px 22px 24px 22px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 4px 44px 0px rgba(244,231,220,0.45), 0 1.5px 6px 0px rgba(142,190,162,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1502;
  animation: modalShow 0.27s cubic-bezier(.67,.04,.24,1.01);
}
@keyframes modalShow {
  0% { transform: scale(.93) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0 14px 0;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F4E7DC;
  border-radius: 12px;
  padding: 11px 15px;
  min-width: 220px;
}
.cookie-modal-category .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #374151;
  font-weight: 600;
}
.cookie-modal-category .category-toggle {
  appearance: none;
  width: 42px; height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal-category .category-toggle:checked {
  background: #8EBEA2;
}
.cookie-modal-category .category-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal-category .category-toggle:checked:before {
  left: 20px;
}
.cookie-modal-category input[disabled] + label, .cookie-modal-category input[disabled] {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}

/* RESPONSIVE ------------------------------------------------------ */
@media (max-width: 1020px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero {
    padding: 38px 0 28px 0;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 850px;
    padding: 0 9px;
  }
  .feature-grid,
  .brand-grid,
  .category-grid,
  .content-grid,
  .card-container,
  .services-list {
    gap: 16px;
  }
  .footer-nav {
    gap: 9px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding: 0 5vw;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    padding: 24px 0 16px 0;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 9px 22px 9px;
  }
  .feature, .brand-item, .category-item, .testimonial-card {
    min-width: 95%;
    max-width: 100%;
  }
  .feature-grid,
  .brand-grid,
  .category-grid,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-logo img {
    height: 32px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    padding: 18px 7px 14px 7px;
    border-radius: 18px 18px 0 0;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .container {
    padding: 0 4vw;
  }
}

/* MICROINTERACTIONS & ANIMATIONS ---------------------------------- */
.cta-btn, .cookie-btn,
.feature, .category-item, .brand-item, .testimonial-card, .services-list li {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta-btn:active {
  transform: scale(0.97);
}
.feature:active, .category-item:active, .brand-item:active,
.testimonial-card:active, .services-list li:active {
  transform: scale(0.97);
}

/* FORM ELEMENTS --------------------------------------------------- */
input, textarea, select {
  font-family: inherit;
  border: 1.5px solid #F4E7DC;
  border-radius: 10px;
  padding: 12px 10px;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  background: #fff;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #8EBEA2;
  box-shadow: 0 2px 10px 0px rgba(142,190,162,0.08);
}

/* UTILITIES ------------------------------------------------------- */
.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

/* Z-INDEX LAYERING ------------------------------------------------ */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  z-index: 99;
}
.mobile-menu {
  z-index: 1200;
}
.cookie-banner {
  z-index: 1500;
}
.cookie-modal-backdrop, .cookie-modal {
  z-index: 1501;
}

/* CONTRAST IN TESTIMONIALS ---------------------------------------- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card p, .testimonial-card strong {
  color: #282633;
  background: #fff;
}

/* NO ABSOLUTE POSITIONING OF CONTENT - only for decor elements */

/* END CSS */
