/* RESET & BASE -------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1b1b1b;
  background: linear-gradient(135deg, #f4f5ef 0%, #eaf4e5 100%);
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
a {
  color: #234B27;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2B280;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  outline: none;
  border: none;
}
:focus {
  outline: 2px solid #234B27;
  outline-offset: 2px;
}

/* TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #234B27;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}
small {
  font-size: 0.923rem;
  color: #5a5c57;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}

/* LAYOUT & CONTAINERS --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}

/* FLEX LAYOUT UTILITIES ------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px -8px rgba(35,75,39,0.10);
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 14px 38px -12px rgba(35,75,39,0.18);
  transform: translateY(-4px) scale(1.02);
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px -10px rgba(35,75,39,0.10);
  margin-bottom: 20px;
  margin-top: 8px;
  max-width: 600px;
  transition: box-shadow 0.22s, transform 0.16s;
  border-left: 4px solid #C2B280;
}
.testimonial-card p {
  color: #1a1a1a;
  font-size: 1.1rem;
}
.testimonial-card small {
  color: #234B27;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f4f5ef;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(35,75,39,0.06);
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  max-width: 330px;
}
.feature-item img {
  width: 44px;
  margin-bottom: 6px;
}
.features-grid, .products-overview-grid, .brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.product-category, .brand-item {
  background: #fff;
  border-radius: 15px;
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  max-width: 350px;
  box-shadow: 0 2px 8px 0 rgba(35,75,39,0.06);
  margin-bottom: 20px;
}

/***** HERO SECTION *****/
.hero {
  background: linear-gradient(112deg, #eaf4e5 70%, #C2B280 170%);
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 650px;
}
.hero h1 {
  color: #1f3922;
  font-size: 2.6rem;
}
.hero p {
  color: #234B27;
  font-size: 1.2rem;
}

/***** CTA BUTTONS *****/
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2.1em;
  background: linear-gradient(95deg, #234B27 88%, #C2B280 100%);
  color: #fff;
  border-radius: 25px;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  margin-top: 10px;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(35,75,39,0.15);
  transition: background 0.25s, box-shadow 0.2s, color 0.22s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #C2B280 18%, #234B27 100%);
  color: #234B27;
  box-shadow: 0 4px 20px 0 rgba(35,75,39,0.21);
  transform: translateY(-2px) scale(1.03);
}

/***** HEADER *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(35,75,39,0.06);
  position: relative;
  z-index: 21;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 14px;
}
header a img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #234B27;
  font-weight: 500;
  transition: color 0.17s;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #C2B280;
  border-radius: 2px;
  transition: width 0.22s;
  position: absolute;
  left: 0; bottom: -2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #C2B280;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
}

/***** MOBILE MENU (Burger) *****/
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #234B27;
  border: none;
  margin-left: 10px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, #234B27 60%, #C2B280 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.5,.09,0,1.00);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin-bottom: 26px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, background 0.15s;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C2B280;
  background: rgba(255,255,255,0.04);
}

/***** FOOTER *****/
footer {
  background: #234B27;
  color: #fff;
  padding: 44px 0 30px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  width: 50px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #C2B280;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  margin-bottom: 7px;
  font-size: 1rem;
  color: #f4f5ef;
}

/***** CONTACT DETAILS BRIEFS *****/
.contact-brief, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.contact-brief img, .contact-details img {
  height: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.address {
  font-style: normal;
}

/***** FAQ SECTION (advice.html) *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 26px 0 0 0;
}
.faq-item {
  background: #F4F5EF;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(35,75,39,0.07);
  padding: 17px 18px 16px 18px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.faq-item:hover {
  box-shadow: 0 3px 16px 0 rgba(194,178,128,0.18);
  transform: scale(1.015);
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.faq-item p {
  font-size: 1rem;
}

/***** RESPONSIVE -------------------------------------------------- */
@media (max-width: 1150px) {
  .container {
    max-width: 1000px;
  }
  .hero .content-wrapper {
    max-width: 520px;
  }
}
@media (max-width: 900px) {
  .footer-logo img { width: 39px; }
  .footer-nav { gap: 6px; }
  .container { max-width: 96vw; }
  .features-grid, .products-overview-grid, .brands-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .cta-btn {
    display: none;
  }
  .hero {
    padding: 48px 0 36px 0;
    min-height: 180px;
  }
  .features-grid, .products-overview-grid, .brands-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  .footer-nav { flex-direction: column; gap: 5px; margin-bottom: 17px; }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-brief, .contact-details {
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 6px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.75em 1.7em;
  }
}

/***** COOKIE BANNER & MODAL ***************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8001;
  background: linear-gradient(92deg, #234B27 77%, #C2B280 130%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  font-size: 1rem;
  box-shadow: 0 -2px 18px 0 rgba(35,75,39,0.18);
  gap: 20px;
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1 0 200px;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-btn {
  background: #fff;
  color: #234B27;
  border-radius: 17px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 9px 19px;
  margin-left: 0;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(35,75,39,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.22s;
}
.cookie-btn.accept {
  background: #C2B280;
  color: #234B27;
}
.cookie-btn.reject {
  background: #fff;
  color: #234B27;
  border: 1px solid #C2B280;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  font-weight: 400;
  box-shadow: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #234B27;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #C2B280;
  background: transparent;
}

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 10px;
    gap: 12px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-message {
    margin-right: 0;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 9001;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(29,40,25,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #1b1b1b;
  border-radius: 17px;
  min-width: 320px;
  max-width: 430px;
  padding: 36px 30px 26px 30px;
  box-shadow: 0 12px 44px -6px rgba(35,75,39,0.22);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.26s, opacity 0.16s;
}
.cookie-modal-overlay.open .cookie-modal {
  opacity: 1;
  transform: translateY(0);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #234B27;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-right: 5px;
}
.cookie-category input:disabled + label {
  color: #aaa;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #234B27;
}
.cookie-modal .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

/***** MISC STYLES *********************************************/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #C2B280;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #f4f5ef;
}

/***** LIST STYLES & MARKUP ENHANCEMENTS *****/
ul, ol {
  margin-top: 14px;
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 7px;
}
ul li strong, ol li strong {
  color: #234B27;
}
hr {
  border: none;
  border-top: 1px solid #e0e0da;
  margin: 35px 0 28px 0;
}

/***** ACCESSIBILITY (FORMS, NOTICEABLE FOCUS) *************/
input, textarea, select {
  font-family: inherit;
  border-radius: 7px;
  border: 1px solid #C2B280;
  padding: 8px 13px;
  margin-bottom: 13px;
  font-size: 1rem;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #234B27;
}

/***** CARD-GRID FIX FOR PRODUCTS & BRANDS *********************/
.products-overview-grid, .brands-grid {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product-category, .brand-item {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

/***** VISUAL MICRO-INTERACTIONS *****/
.card, .product-category, .brand-item, .faq-item, .feature-item {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .product-category:hover, .brand-item:hover, .faq-item:hover, .feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(194,178,128,0.21);
  transform: translateY(-2px) scale(1.015);
}

/***** Z-INDEX SAFEGUARD *****/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 9001; }

/***** ENSURE PROPER SPACING/NO OVERLAP **********************/
.card, .feature-item, .testimonial-card,
.product-category, .brand-item {
  margin-right: 0;
  margin-left: 0;
}

/***** END ********************************************************/
