/* CSS RESET & BASE ------------------------------------------------------- */
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,
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, sans-serif;
  background: #F5F5F5;
  color: #294B29;
  line-height: 1.5;
  font-size: 16px;
  box-sizing: border-box;
  overflow-x: hidden;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}
a {
  color: #294B29;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #C9B468;
}
ul {
  list-style: none;
}

/* TYPOGRAPHY -------------------------------------------------------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: #294B29;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: #C9B468;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #294B29;
}
strong {
  font-weight: 700;
}
p, .text-section {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #294B29;
}
.text-section {
  background: #fffad3;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 22px 0 rgba(201,180,104,0.09);
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
}
div.text-section ul {
  margin: 8px 0;
  padding-left: 22px;
  color: #5c7a5c;
}
.category {
  font-weight: 600;
}

/* GENERAL LAYOUT ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(41,75,41,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
  }
  .container {
    padding: 0 8px;
  }
}

/* MAIN NAVIGATION --------------------------------------------------------- */
header {
  width: 100%;
  background: #294B29;
  position: sticky;
  z-index: 20;
  top: 0;
  left: 0;
  box-shadow: 0 3px 12px 0 rgba(41,75,41,0.10);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7px 20px;
  width: 100%;
  position: relative;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(201,180,104,0.2));
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-nav ul li a:hover {
  background: #C9B468;
  color: #294B29;
  box-shadow: 0 2px 8px 0 rgba(41,75,41,0.14);
}

/* MOBILE MENU ------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fffad3;
  border: none;
  font-size: 2.0rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  color: #294B29;
  box-shadow: 0 3px 12px 0 rgba(201,180,104,0.14);
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #C9B468;
  color: #fff;
}
@media (max-width: 990px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fffad3;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.75,-0.01,.23,1.02);
  box-shadow: 0 16px 60px 0 rgba(41,75,41,0.09);
  will-change: transform;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #C9B468;
  border: none;
  color: #294B29;
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  margin: 8px 20px 18px 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 4px 16px 0 rgba(41,75,41,0.10);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #C9B468;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding: 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #294B29;
  font-size: 1.14rem;
  letter-spacing: 0.03em;
  padding: 12px 0;
  border-radius: 14px;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.23s;
  width: 100%;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: #C9B468;
  color: #fff;
}

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

/* HERO SECTIONS ----------------------------------------------------------- */
section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(201,180,104,0.11);
}
@media (max-width: 768px) {
  section {
    padding: 22px 4px;
    border-radius: 18px;
  }
}

/* BUTTONS & CALL TO ACTIONS ----------------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C9B468;
  color: #294B29;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.20rem;
  border: none;
  border-radius: 36px;
  padding: 13px 36px;
  margin-top: 4px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.14s, color 0.22s, transform 0.18s;
  box-shadow: 0 4px 16px 0 rgba(41,75,41,0.15);
  outline: none;
  gap: 8px;
}
.cta-button:hover,
.cta-button:focus {
  background: #f7e9af;
  color: #294B29;
  transform: scale(1.045) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(41,75,41,0.13);
}

/* CARDS, FEATURES, COLLECTIONS, CATEGORIES -------------------------------- */
.features-list,
.collections-list,
.categories-list,
.product-grid,
.guides-list,
.team-list,
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.features-list li,
.collections-list li,
.categories-list li,
.product-grid li,
.guides-list li,
.team-list li,
.benefits-list li {
  flex: 1 1 260px;
  background: #fffad3;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(201,180,104,0.10);
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.02rem;
  transition: transform 0.20s, box-shadow 0.20s;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.features-list li:hover,
.collections-list li:hover,
.categories-list li:hover,
.product-grid li:hover,
.guides-list li:hover,
.team-list li:hover,
.benefits-list li:hover {
  transform: translateY(-5px) scale(1.025) rotate(-2deg);
  box-shadow: 0 8px 30px 0 rgba(41,75,41,0.13);
}
.features-list li img,
.benefits-list li img,
.team-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  border-radius: 10px;
}
.features-list li h3,
.collections-list li h3,
.categories-list li h3,
.product-grid li h3,
.benefits-list li h3,
.team-list li strong {
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #C9B468;
  margin-bottom: 4px;
}

@media (max-width: 850px) {
  .features-list,
  .collections-list,
  .categories-list,
  .product-grid,
  .guides-list,
  .team-list,
  .benefits-list {
    gap: 16px;
  }
  .features-list li,
  .collections-list li,
  .categories-list li,
  .product-grid li,
  .guides-list li,
  .team-list li,
  .benefits-list li {
    max-width: 100%;
    min-width: 180px;
    flex: 1 1 100%;
  }
}
@media (max-width: 650px) {
  .features-list,
  .collections-list,
  .categories-list,
  .product-grid,
  .guides-list,
  .team-list,
  .benefits-list {
    flex-direction: column;
  }
}

/* TESTIMONIALS ------------------------------------------------------------ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px 0 rgba(41,75,41,0.10);
  padding: 20px 34px 20px 34px;
  margin-bottom: 20px;
  max-width: 560px;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #294B29;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 0px;
}
.testimonial-card strong {
  color: #C9B468;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.stars {
  color: #FFD046;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

/* ADDRESS & FOOTER -------------------------------------------------------- */
footer {
  background: #294B29;
  color: #fff;
  padding: 32px 20px 36px 20px;
  margin-top: 32px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -4px 22px 0 rgba(41,75,41,0.11);
  width: 100%;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
footer nav a {
  color: #C9B468;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.20s;
}
footer nav a:hover {
  color: #fffad3;
}
footer address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.98rem;
  font-style: normal;
  margin-top: 8px;
  color: #fff;
}
footer address img {
  width: 15px;
  height: 15px;
  margin-right: 4px;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 800px) {
  footer {
    font-size: 0.96rem;
    padding: 18px 7px 21px 7px;
  }
}

/* TABLES (for any possible faq, rgpd) ------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fffad3;
  margin-bottom: 28px;
  border-radius: 12px;
  font-size: 1rem;
  overflow: hidden;
}
th, td {
  padding: 16px 10px;
  text-align: left;
  border-bottom: 1px solid #e7e3bb;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #C9B468;
  color: #fff;
}

/* MISCELLANEOUS ----------------------------------------------------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffad3;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(201,180,104,0.09);
  padding: 18px 15px;
  min-width: 200px;
  max-width: 360px;
  transition: box-shadow .18s, transform .20s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(41,75,41,.11);
  transform: scale(1.03) rotate(1deg);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TEXT STYLES ------------------------------------------------------------- */
.contact-confirmation {
  background: #dbffe0;
  color: #017103;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(41,75,41,0.06);
}
.categories {
  margin-bottom: 8px;
  font-size: 1.03rem;
  color: #488054;
  background: #ddfbe7;
  border-radius: 10px;
  padding: 9px 18px;
  font-family: 'Lato', sans-serif;
}

/* ANIMATIONS & MICRO-INTERACTIONS ----------------------------------------- */
section, .card, .cta-button, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .card, .features-list li, .product-grid li {
  transition: all 0.18s cubic-bezier(.86,0,.07,1), box-shadow 0.19s cubic-bezier(.56,0,.09,1.12);
}
.cta-button {
  box-shadow: 0 4px 16px 0 rgba(201,180,104,0.21);
}
.cta-button:active {
  transform: scale(0.98) rotate(1.5deg);
  background: #B2953F;
  color: #fff;
}

/* PLAYFUL DECORATIVE ACCENTS ---------------------------------------------- */
.features-list li:before, .collections-list li:before, .categories-list li:before, .product-grid li:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: 15px; left: 15px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #C9B468;
  opacity: 0.16;
  z-index: 1;
}
.testimonial-card:before {
  left: auto; right: 20px; top: 16px;
  background: #cbe2c6;
}

/* RESPONSIVE TYPOGRAPHY -------------------------------------------------- */
@media (max-width: 650px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.07rem; }
  h3 { font-size: 1rem; }
  p, .text-section {
    font-size: 0.99rem;
  }
}

/* COOKIE CONSENT BANNER -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 99;
  background: #fffad3;
  color: #294B29;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 14px 20px 18px;
  box-shadow: 0 -6px 22px 0 rgba(201,180,104,.11);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookieSlideIn 0.38s cubic-bezier(.82,0,.13,1.06);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  display: inline-block;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.00rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .17s, color .19s, transform .18s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #C9B468;
  color: #294B29;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #FFD046;
  color: #294B29;
}
.cookie-banner .settings {
  background: #fff;
  color: #C9B468;
  border: 1px solid #c9b468;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #C9B468;
  color: #fff;
}
.cookie-banner .reject {
  background: #fdd8d8;
  color: #B92323;
  border: 1px solid #B92323;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #B92323;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    font-size: 0.94rem;
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 13px 8px 13px 8px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* COOKIE MODAL ----------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(41,75,41,0.30);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fffad3;
  border-radius: 18px;
  box-shadow: 0 6px 44px 0 rgba(41,75,41,0.12);
  padding: 38px 30px 28px 30px;
  min-width: 320px;
  max-width: 98vw;
  animation: modalfade .32s cubic-bezier(.71,0,.13,0.98);
  position: relative;
}
@keyframes modalfade {
  from { opacity: 0; transform: scale(0.9) translateY(60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #294B29;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
}
.cookie-modal label {
  font-size: 1.01rem;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  color: #294B29;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #C9B468;
  opacity: 0.53;
}
.cookie-modal input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #C9B468;
}
.cookie-modal .modal-actions {
  display: flex; flex-direction: row; gap: 12px; margin-top: 26px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  font-size: 1.7rem;
  color: #C9B468;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .close-modal:hover {
  color: #294B29;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 4vw 18px 4vw;
    min-width: unset;
  }
  .cookie-modal h3 { font-size: 1.01rem; }
}

/* UTILITY CLASSES -------------------------------------------------------- */
.gap-8 { gap: 8px!important; }
.gap-16 { gap: 16px!important; }
.gap-20 { gap: 20px!important; }
.gap-32 { gap: 32px!important; }
.text-center { text-align: center!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mt-16 { margin-top: 16px!important; }

/* SCROLLBAR -------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 11px;
  background: #fffad3;
}
::-webkit-scrollbar-thumb {
  background: #C9B468;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bca039;
}

/* PLAYFUL DYNAMIC ACCENTS ------------------------------------------------ */
section, .testimonial-card, .features-list li, .collections-list li, .categories-list li,
.product-grid li, .card, .content-section, footer {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .features-list li, .collections-list li, .categories-list li, .product-grid li,
  .testimonial-card, .card {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

/* ACCESSIBLE FOCUS STATES ------------------------------------------------ */
a:focus,
button:focus,
.cta-button:focus {
  outline: 2px solid #C9B468;
  outline-offset: 2px;
}

/* ---- The End ---- */
