/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* BODY & TYPOGRAPHY */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #215B38;
  background-color: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #215B38;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.15rem;
}
p, ul li, ol li {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #215B38;
}
strong {
  font-weight: 700;
  color: #215B38;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
}

/* HEADER */
header {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(33, 91, 56, 0.04);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img {
  height: 40px;
  width: auto;
}
/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 0;
  color: #215B38;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #DFB13E;
}

.cta-btn {
  background: #215B38;
  color: #FFFFFF;
  border-radius: 28px;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(33, 91, 56, 0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 8px;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #DFB13E;
  color: #215B38;
  box-shadow: 0 4px 20px rgba(223, 177, 62, 0.12);
}


/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 22px;
  background: #215B38;
  color: #FFF;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  z-index: 1030;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #DFB13E;
  color: #215B38;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 12px 40px rgba(33,91,56,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 32px 32px 32px;
  z-index: 1050;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  opacity: 1;
  visibility: visible;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #DFB13E;
  color: #215B38;
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1060;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #215B38;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  padding: 12px 0 12px 0;
  color: #215B38;
  border-radius: 4px;
  transition: background 0.1s, color 0.22s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DFB13E;
  color: #215B38;
}

/* Show/hide desktop nav/hamburger on mobile only */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========== HERO & GENERAL SECTIONS =========== */
.hero, .cta, .thank-you-message, .category-headline, .delivery-headline {
  background: #F9FAF8;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(33, 91, 56, 0.06);
  padding: 60px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper, .category-headline .content-wrapper, .delivery-headline .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-btn {
  align-self: flex-start;
}
.cta .cta-btn, .thank-you-message .cta-btn {
  align-self: center;
}

/* Features/Highlights/Services */
.features .content-wrapper, .services .content-wrapper {
  gap: 30px;
}
.features ul, .services .service-list, .features.highlights ul, .features.occasions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0px;
}
.features ul li {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33, 91, 56, 0.04);
  padding: 24px 20px;
  min-width: 230px;
  max-width: 290px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  transition: box-shadow 0.19s, background 0.14s;
}
.features ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.features ul li strong {
  font-size: 1.13em;
  margin-bottom: 5px;
}
.features ul li:hover {
  background: #F5F8F6;
  box-shadow: 0 4px 24px rgba(33,91,56,.12);
}

.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.services .service-list > div {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33, 91, 56, 0.04);
  padding: 26px 22px;
  flex: 1 1 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 200px;
  transition: box-shadow 0.19s, background 0.14s;
}
.services .service-list > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.services .service-list > div:hover {
  box-shadow: 0 4px 24px rgba(33,91,56,.12);
  background: #FAF8F3;
}

/* Individualization section (call to action) */
.services.individual, .cta.order-now {
  background: #F9FAF8;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(33, 91, 56, 0.05);
}

/* =================== CARDS ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(33, 91, 56, 0.06);
  padding: 28px 22px;
  min-width: 220px;
  transition: box-shadow 0.17s, background 0.13s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(33,91,56,0.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

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

/* =================== TESTIMONIALS ============ */
.testimonials {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(33, 91, 56, 0.05);
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px;
  background: #FAF8F3;
  border-radius: 13px;
  min-width: 260px;
  box-shadow: 0 2px 10px rgba(33, 91, 56, 0.09);
  transition: box-shadow 0.16s, background 0.13s;
}
.testimonial-card p {
  color: #215B38; /* dark text on light bg for contrast */
  font-size: 1rem;
}
.testimonial-meta strong {
  color: #215B38;
}
.testimonial-card:hover {
  background: #FFF;
  box-shadow: 0 6px 24px rgba(33, 91, 56, 0.15);
}

/* Carousels for testimonials (scroll on mobile) */
@media (max-width: 700px) {
  .testimonial-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 18px;
    scrollbar-width: none;
  }
  .testimonial-slider::-webkit-scrollbar {
    display: none;
  }
}

/* ================ FOOTER ================== */
footer {
  background: #FFF;
  border-top: 1px solid #EBEBEB;
  margin-top: 60px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px 0 32px 0;
}
.footer-logo img {
  width: 90px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 1rem;
  color: #215B38;
  opacity: 0.93;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #DFB13E;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.98rem;
  color: #215B38;
  opacity: 0.82;
}
.footer-contact img {
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-contact a {
  color: #215B38;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #DFB13E;
}

/* =============== CONTENT-RELATED CLASSES =============== */
.order-summary {
  background: #F9FAF8;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(33, 91, 56, 0.07);
  padding: 20px 18px;
  margin: 20px 0 16px 0;
}
.order-summary h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.order-summary ul {
  margin-left: 16px;
}
.order-summary li {
  margin-bottom: 11px;
  list-style-type: disc;
  color: #215B38;
}

.legal.privacy-policy, .legal.gdpr, .legal.terms, .legal.cookie-policy {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(33, 91, 56, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal.privacy-policy h1,
.legal.gdpr h1,
.legal.terms h1,
.legal.cookie-policy h1 {
  margin-bottom: 18px;
}
.legal.privacy-policy ul,
.legal.gdpr ul,
.legal.terms ul,
.legal.cookie-policy ul {
  margin-left: 20px;
  margin-bottom: 18px;
}
.legal.privacy-policy ul li, .legal.gdpr ul li, .legal.terms ul li, .legal.cookie-policy ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.contact-info .content-wrapper > div > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.contact-info strong {
  margin-right: 6px;
}
.contact-info a {
  color: #215B38;
  text-decoration: underline;
}
.contact-info a:hover, .contact-info a:focus {
  color: #DFB13E;
}

/* =============== FEATURE/LIST UTILITIES =============== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============== BUTTONS, INTERACTIONS, TRANSITIONS =============== */
button, .cta-btn, .mobile-menu-close {
  transition: background 0.14s, color 0.16s, box-shadow 0.12s;
}

a, .cta-btn, .footer-nav a, button, .mobile-nav a {
  outline: none;
}
:focus-visible {
  outline: 2px solid #215B38;
  outline-offset: 3px;
}

/* =============== COOKIE BANNER =============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  width: 100vw;
  background: #215B38;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 23px 20px;
  box-shadow: 0 -2px 18px rgba(33,91,56,0.08);
  gap: 12px;
  animation: fadeInUp 0.6s cubic-bezier(.42,0,.3,1);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  } to {
    opacity: 1;
    transform: translateY(0);  
  }
}
.cookie-banner .cookie-banner-text {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #FFF;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner .cookie-btn {
  border-radius: 28px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  box-shadow: 0 1px 7px rgba(223,177,62,0.07);
  cursor: pointer;
  font-weight: 600;
  margin: 0;
  outline: none;
  transition: background 0.14s, color 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: #DFB13E;
  color: #215B38;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #215B38;
  color: #FFF;
}
.cookie-banner .cookie-btn.reject {
  background: #FFF;
  color: #215B38;
  border: 1.3px solid #DFB13E;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #DFB13E;
  color: #215B38;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  border: 1.3px solid #FFF;
  color: #FFF;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #DFB13E;
  color: #215B38;
  border-color: #DFB13E;
}

/* ------- COOKIE MODAL -------- */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2020;
  background: rgba(33,91,56,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 18px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 6px 42px rgba(33,91,56,0.18);
  padding: 38px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.34s cubic-bezier(.42,0,.3,1);
}
@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: scale(1.06);
  } to {
    opacity:1;
    transform: scale(1);
  }
}
.cookie-modal-content h3 {
  font-size: 1.2rem;
  color: #215B38;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #215B38;
}
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background: #F9FAF8;
  border-radius: 15px;
  border: 1px solid #DFB13E;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle[aria-checked="true"] {
  background: #DFB13E;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.17s cubic-bezier(.42,0,.3,1), background 0.14s;
}
.cookie-toggle[aria-checked="true"]:before {
  transform: translateX(16px);
  background: #215B38;
}
.cookie-toggle[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .modal-btn {
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 20px;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #DFB13E;
  color: #215B38;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal .modal-btn.close {
  background: transparent;
  border: 1px solid #215B38;
  color: #215B38;
}
.cookie-modal .modal-btn:hover {
  background: #215B38;
  color: #FFF;
}
.cookie-modal .modal-btn.close:hover {
  background: #DFB13E;
  color: #215B38;
  border-color: #DFB13E;
}


/* =============== RESPONSIVE DESIGN ============= */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-flex {
    gap: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
  }
  .cta .content-wrapper, .thank-you-message .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .features ul,
  .services .service-list,
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li, .services .service-list > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    flex-basis: 100%;
  }
  .hero, .cta, .thank-you-message, .category-headline, .delivery-headline, .section, section {
    padding: 32px 0 22px 0;
    border-radius: 10px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 18px 0 16px 0;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.42rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.11rem;
    margin-bottom: 12px;
  }
  .container {
    padding: 0 4vw;
  }
}
/* Text/image section stacking on small screens */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =============== SPACING FOR ALL CARDS/SECTIONS ============= */
.section, section, .hero, .cta, .thank-you-message, .category-headline, .delivery-headline, .legal {
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.card-container > *, .content-grid > *, .features ul > *, .services .service-list > *, .testimonial-slider > *, .footer-flex > *, .main-nav > *, .mobile-nav > * {
  margin-bottom: 0 !important;
}

/* Always ensure minimum margin/gap of 20px between all content cards/sections */
section > * + *, .content-wrapper > * + *, .footer-flex > * + *, .card-container > * + *, .content-grid > * + *, .testimonial-slider > * + * {
  margin-top: 20px;
}

/* ========== MISCELLANEOUS ========== */
::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

/* Hide number input arrows */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}


/* =============== Z-INDEX =============== */
header, .mobile-menu, .cookie-banner, .cookie-modal-content { z-index: 1000; }

/* =============== PRINT =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, main { box-shadow: none !important; background: #FFF !important; }
}
