/* === 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;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background-color: #F7ECD4;
  color: #3E6357;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
strong { font-weight: 700; }
ul, ol { list-style: none; }
button {
  background: none;
  border: none;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

/* === VARIABLES (fallbacks for custom) === */
:root {
  --color-primary: #3E6357;
  --color-secondary: #A57A5B;
  --color-accent: #F7ECD4;
  --color-green-accent: #77A36F;
  --color-earth: #E4DCC4;
  --color-brown-dark: #795548;
  --color-brown: #B59B76;
  --color-success: #63816B;
  --font-display: 'Quicksand', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-card: 18px;
  --radius-btn: 22px;
  --shadow-card: 0 2px 16px 0 rgba(62, 99, 87, 0.07);
  --shadow-btn: 0 2px 6px 0 rgba(62,99,87,0.12);
  --shadow-hover: 0 6px 32px 0 rgba(62,99,87,0.19);
  --shadow-modal: 0 12px 40px rgba(62,99,87,0.22);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
}
.subheadline {
  color: var(--color-green-accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 22px;
  max-width: 48ch;
}
p, li, address {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #4B5454;
  margin-bottom: 8px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.22rem;
  background: var(--color-earth);
  border-left: 7px solid var(--color-green-accent);
  border-radius: 0 14px 14px 0;
  margin-bottom: 12px;
  padding: 14px 18px 14px 20px;
  color: #3E6357;
}

/* === CONTAINERS & SECTIONS === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* Hero Section (Nature/Organic) */
.hero {
  background: linear-gradient(145deg, #F7ECD4 60%, #E4DCC4 100%);
  border-radius: 0 0 36px 36px;
  margin-bottom: 44px;
  padding: 54px 0 32px 0;
  min-height: 320px;
}

/* Cards & Grids */
.card-container, .category-grid, .feature-grid, .value-list, .advantage-list, .featured-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .category-grid li, .feature-grid li, .value-list li, .advantage-list li, .featured-products-list li {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 330px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.card:hover, .category-grid li:hover, .feature-grid li:hover, .value-list li:hover, .advantage-list li:hover, .featured-products-list li:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.024);
}

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

.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;
}

/* Service List */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.service-list li {
  padding: 20px 22px;
  background: var(--color-accent);
  border-radius: 14px;
  margin-bottom: 12px;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.service-list strong, .service-list .price {
  color: var(--color-green-accent);
  font-weight: 700;
}

/**** Testimonials & Review cards ****/
.testimonials {
  background-color: #ECE3CD;
  border-radius: 0 0 42px 42px;
  padding: 38px 0 36px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
  max-width: 480px;
}
.testimonial-card blockquote {
  color: #3E6357;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.testimonial-card .customer {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-brown-dark);
  min-width: 120px;
}

/**** Categories & Product Grids ****/
.category-grid {
  margin-top: 22px;
}
.category-grid li {
  background: #F7ECD4;
  border: 1.5px dashed #A57A5B;
}
.featured-products-list {
  margin-top: 22px;
  gap: 20px;
}
.featured-products-list li {
  background: #fff;
  border-left: 8px solid var(--color-green-accent);
}

/**** Step By Step (Gift wrap) ****/
.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.gift-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.gift-examples li {
  padding: 13px 18px;
  background: #FFF9EE;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(122,86,59,0.06);
}

/**** FAQ & Article blocks ****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list li {
  border-radius: 13px;
  background: #faf8f5;
  box-shadow: 0 1px 3px rgba(62,99,87,0.07);
  padding: 16px 17px;
  margin-bottom: 8px;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.quick-tips {
  background: #F0F6F3;
  border-left: 7px solid var(--color-green-accent);
  border-radius: 0 15px 15px 0;
  padding: 18px 16px;
  margin-bottom: 22px;
}
.faq-snippets {
  background: #FFF9EE;
  border-radius: 16px;
  padding: 18px 14px;
  margin-bottom: 28px;
}

/**** Value + Advantages lists ****/
.value-list, .advantage-list {
  gap: 30px;
}
.value-list li, .advantage-list li {
  min-width: 210px;
  border: 0;
  background: #F7ECD4;
}
.value-list img, .advantage-list img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 1px 4px rgba(167,122,91, .09));
  margin-bottom: 5px;
}

/**** Map and Contact blocks ****/
.contact-block, .map-block {
  margin-bottom: 38px;
  background: #FFF9EE;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 1px 7px rgba(62,99,87,0.07);
}
.address-block {
  margin-bottom: 12px;
}

/**** Footer ****/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 28px 0;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -3px 10px 2px rgba(62,99,87,0.08);
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-navigation a {
  color: #fff;
  font-size: 1rem;
  text-decoration: underline dotted 2px #A57A5B;
  margin-bottom: 6px;
  transition: color .2s, text-decoration-color .2s;
}
.footer-navigation a:hover {
  color: #F7ECD4;
  text-decoration-color: #77A36F;
}
.branding img {
  width: 52px;
  margin-bottom: 6px;
}
.branding p {
  font-size: 1.05rem;
  color: #ECE3CD;
  max-width: 250px;
}
.contact-info p, .contact-info a {
  color: #e4dcc4;
  font-size: 0.95rem;
}
.contact-info a:hover {
  color: #aecbaf;
}

/**** Buttons & Interactions ****/
.btn-primary {
  min-width: 120px;
  padding: 12px 32px;
  background: var(--color-green-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  border-radius: var(--radius-btn);
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-btn);
  margin-top: 16px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.19s, transform 0.16s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #3E6357;
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-1.5px) scale(1.03);
}

.btn-secondary {
  background: var(--color-green-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  margin-left: 10px;
  transition: background 0.17s, color 0.11s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff3e9;
}

/**** HEADER & NAV ****/
header {
  background: #fff;
  box-shadow: 0 1.5px 18px rgba(62,99,87,0.09);
  padding: 12px 0 0 0;
  border-radius: 0 0 22px 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1.07rem;
  padding: 9px 10px;
  border-radius: 999px;
  transition: background 0.19s, color 0.12s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-earth);
  color: var(--color-green-accent);
}
header img {
  height: 44px;
  margin-right: 16px;
}

/**** Mobile Burger Menu ****/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.1rem;
  align-items: center;
  z-index: 99;
  transition: box-shadow 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: var(--shadow-hover);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 90vw;
  max-width: 349px;
  background: #fff;
  box-shadow: var(--shadow-modal);
  transform: translateX(-105%);
  transition: transform .34s cubic-bezier(.8,.14,.35,1.25);
  z-index: 1100;
  padding: 28px 8px 32px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--color-primary);
  padding: 6px 13px;
  font-size: 2.2rem;
  border: none;
  margin-bottom: 20px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ECE3CD;
  color: var(--color-green-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 8px;
  margin: 4px 0;
  border-radius: 13px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3E6357;
  transition: background 0.13s, color 0.12s;
  background: none;
}
.mobile-nav a:hover {
  background: #E4DCC4;
  color: var(--color-green-accent);
}

/**** Responsive Layouts ****/
@media (max-width: 1100px) {
  .container { max-width: 98%; }
}
@media (max-width: 900px) {
  .card-container, .category-grid, .feature-grid, .value-list, .advantage-list, .featured-products-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .category-grid li, .value-list li, .advantage-list li, .featured-products-list li {
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.33rem; }
  .hero {
    padding: 37px 0 24px 0;
    border-radius: 0 0 30px 30px;
  }
  .section { padding: 30px 10px; }
  .container { padding: 0 8px; }
  header .container { gap: 8px; }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
  }
}
@media (max-width: 650px) {
  header nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero, .testimonials {
    border-radius: 0 0 16px 16px;
    padding: 24px 0 14px 0;
    min-height: 170px;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
  }
}
@media (max-width: 500px) {
  .testimonial-card {
    max-width: 97vw;
    padding: 14px 6px;
  }
  h1, h2, h3, h4 {
    margin-bottom: 11px;
  }
  .footer-navigation a { font-size: 0.97rem; }
}

/**** Cookie Consent Banner ****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff6ec;
  color: #3E6357;
  box-shadow: 0 -3px 14px 1px rgba(62,99,87,0.08);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 18px 16px;
  gap: 20px;
  font-size: 1rem;
  border-top: 2.5px solid #E4DCC4;
  animation: slideUpCookie 0.56s cubic-bezier(.42,.02,.2,1.1);
}
@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 18px;
  padding: 8px 20px;
  background: var(--color-green-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 2px;
  box-shadow: var(--shadow-btn);
  transition: background .18s, color .13s, transform .18s;
}
.cookie-btn.reject {
  background: #DDD5BC;
  color: var(--color-brown-dark);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.2px solid #A57A5B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff6ec;
  transform: translateY(-1px) scale(1.04);
}

/**** Cookie Modal Preferences ****/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62,99,87,0.10);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .4s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(62,99,87,0.13);
  padding: 36px 28px 22px 28px;
  max-width: 410px;
  min-width: 290px;
  z-index: 2200;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: popModal .29s;
}
@keyframes popModal {
  from { transform: scale(.84); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.44rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.cookie-pref-category label {
  flex: 1;
  font-weight: 600;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 13px;
  background: #D0E4C5;
  position: relative;
  transition: background 0.14s;
  margin-left: 13px;
  cursor: pointer;
  border: 1px solid #b6d6ac;
}
.cookie-toggle[data-checked="true"] {
  background: var(--color-green-accent);
  border-color: #97ca8b;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b6d6ac;
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  z-index: 9;
  transition: transform 0.18s;
}
.cookie-toggle[data-checked="true"]:before {
  transform: translateX(16px);
  border-color: #6ea866;
}
.cookie-pref-required {
  color: #63816B;
  font-size: 0.97rem;
  margin-left: 10px;
}
.cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/**** Animations on scroll & hover ****/
.card, .testimonial-card, .category-grid li, .feature-grid li, .value-list li, .advantage-list li, .featured-products-list li, .service-list li {
  transition: box-shadow .18s, transform .15s, background .13s;
}
.card:hover, .testimonial-card:hover, .category-grid li:hover, .feature-grid li:hover, .value-list li:hover, .advantage-list li:hover, .featured-products-list li:hover, .service-list li:hover {
  background: #F0F6F3;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2.5px) scale(1.018);
}

/**** Organic Decor (for .hero or background sections) ****/
.hero, .testimonials, .gift-wrap-hero {
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  top: -58px;
  right: -88px;
  width: 230px;
  height: 220px;
  background: radial-gradient(ellipse 66% 60% at 53% 48%, #77A36F11 60%, #F7ECD400 100%);
  z-index: 0;
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -64px;
  left: -90px;
  width: 188px;
  height: 176px;
  background: radial-gradient(ellipse 70% 57% at 52% 44%, #A57A5B17 60%, #F7ECD400 100%);
  z-index: 0;
}
.gift-wrap-hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 130px;
  height: 120px;
  background: radial-gradient(ellipse 63% 57% at 59% 47%, #63816B14 60%, #f7ecd400 100%);
  z-index: 0;
}
.gift-wrap-hero:after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -70px;
  width: 100px;
  height: 85px;
  background: radial-gradient(ellipse 51% 50% at 51% 52%, #A57A5B14 65%, #f7ecd400 100%);
  z-index: 0;
}

/**** Misc Spacing Consistency ****/
.section, .hero, .testimonials, .gift-wrap-hero, .about-story, .confirmation-section {
  margin-bottom: 60px !important;
}
.card, .testimonial-card, .service-list li, .category-grid li, .feature-grid li, .value-list li, .advantage-list li, .featured-products-list li {
  margin-bottom: 20px !important;
}
.card-container, .category-grid, .feature-grid, .value-list, .advantage-list, .featured-products-list {
  gap: 24px !important;
}
.content-grid, .text-image-section {
  gap: 20px !important;
}

/**** Utilities ****/
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }

/**** Hide element utility ****/
.hidden { display: none !important; }

/**** Z-Index Controls for overlays ****/
[aria-modal="true"], .cookie-modal-overlay, .mobile-menu {
  z-index: 2000;
}

/**** Print fallback ****/
@media print {
  body { background: #fff !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .section, .hero, .testimonials, .about-story, .confirmation-section { background: #fff !important; box-shadow: none !important; }
}
