/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F7F8;
  color: #2C3A41;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  /* background bubbles for playful feel */
  position: relative;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #3A4B54;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,1,.6,1);
}
a:focus {
  outline: 2px dashed #A0B08D;
  outline-offset: 2px;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}

/* --- VARIABLES (FALLBACKS) --- */
:root {
  --color-primary: #3A4B54;
  --color-secondary: #E2DED9;
  --color-bg: #F6F7F8;
  --color-accent: #FFC14D;   /* playful sun yellow for energy */
  --color-brand-accent: #A0B08D;
  --color-danger: #FF5A5F;
  --color-success: #38B87C;
  --color-white: #FFF;
  --color-black: #21272A;
  --color-gradient-1: #FFF7EC;
  --shadow-1: 0 2px 10px rgba(58, 75, 84, 0.07);
  --shadow-card: 0 6px 24px rgba(163, 184, 153, 0.10), 0 1.5px 4px rgba(163,184,153,0.09);
  --radius-outer: 2.2rem;
  --radius-card: 1.4rem;
  --radius-btn: 2em;
  --gap-main: 32px;
  --gap-section: 60px;
  --transition-main: .3s cubic-bezier(.44, .13, .48, 1);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --- LAYOUT FOUNDATION --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
  box-sizing: border-box;
}

main {
  flex: 1 1 auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-bg);
  /* playful bubbles decoration */
  position: relative;
}

/* --- PLAYFUL BACKGROUND BUBBLES --- */
body::before, body::after {
  content: '';
  position: fixed;
  z-index: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--color-secondary);
  opacity: .15;
  pointer-events: none;
}
body::before {
  top: -80px;
  left: -100px;
  background: var(--color-accent);
  opacity: .13;
}
body::after {
  bottom: -120px;
  right: -80px;
  background: var(--color-brand-accent);
  opacity: .11;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: .02em;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.subheadline {
  font-family: var(--font-body);
  margin-bottom: 26px;
  font-size: 1.18rem;
  color: #5a6370;
}
strong {
  font-weight: 700;
}
blockquote {
  background: #FFFCEB;
  padding: 24px 32px;
  border-radius: var(--radius-card);
  font-style: italic;
  font-size: 1.1em;
  margin-bottom: 24px;
  color: #80580A;
  border-left: 10px solid var(--color-accent);
}

/* --- HEADER + NAVIGATION --- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-1);
  z-index: 900;
  position: sticky;
  top: 0;
}
header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.logo-link {
  display: flex; align-items: center;
  margin-right: 20px;
  transition: transform .24s cubic-bezier(.44,.13,.48,1);
}
.logo-link img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 9px #a0b08d33);
}
.logo-link:hover {
  transform: scale(1.05) rotate(-7deg);
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 6px;
  transition: background var(--transition-main), color var(--transition-main), transform .14s;
  position: relative;
  text-shadow: 0 0.5px 1px #fff6, 0 1px 4px #fff1;
}
.main-nav a:hover:not(.primary-btn), .main-nav a:focus:not(.primary-btn) {
  background: var(--color-secondary);
  color: var(--color-accent);
  transform: translateY(-4px) scale(1.06);
}
.main-nav .primary-btn {
  margin-left: 16px;
  padding: 10px 32px;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  background: var(--color-accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-white);
  border: none;
  transition: background .22s, color .22s;
  margin-left: 16px;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-brand-accent);
  color: var(--color-primary);
}
/* Hide hamburger on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(58,75,84,.98);
  color: #fff;
  z-index: 2000;
  transform: translateX(100vw);
  display: flex;
  flex-direction: column;
  transition: transform .34s cubic-bezier(.77,0,.18,1);
  box-shadow: -4px 0 36px rgba(58,75,84,.08);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #fff;
  font-size: 2em;
  width: 54px;
  height: 54px;
  align-self: flex-end;
  border-radius: 50%;
  margin: 26px 34px 30px 0;
  box-shadow: var(--shadow-1);
  transition: background .21s, color .23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e69a06;
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 10px 37px 24px 37px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  letter-spacing: .03em;
  font-family: var(--font-display);
  color: #fff;
  padding: 12px 20px;
  border-radius: 1em;
  transition: background .20s, color .20s, transform .14s;
  margin: 0;
}
.mobile-nav a.primary-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 14px;
  box-shadow: var(--shadow-1);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff6;
  color: var(--color-accent);
  transform: scale(1.07) translateX(7px);
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- BUTTONS --- */
.primary-btn, a.primary-btn, button.primary-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  padding: 12px 38px;
  border-radius: var(--radius-btn);
  border: 0;
  cursor: pointer;
  box-shadow: 0 3px 13px #a0b08d41, 0 1px 4px #e2ded94a;
  transition: background .18s, color .18s, box-shadow .25s, transform .16s;
  text-align: center;
  text-shadow: 0 1px 4px #fff3;
  margin: 0 auto 8px;
  position: relative;
}
.primary-btn:hover, .primary-btn:focus {
  background: #e69a06;
  color: var(--color-white);
  box-shadow: 0 6px 20px #ffc14d38;
  transform: translateY(-4px) scale(1.048);
}
button.primary-btn:active {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(0.98);
}

/* --- HEADERS, SECTION, WRAPPER --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
section .container {
  flex: 1 1 auto;
  position: relative;
}
.content-wrapper {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* --- CARDS, FLEX CONTAINERS --- */
.card-container, .feature-grid, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.card, .category-list > li, .feature-grid > li {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px 26px 18px 26px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  flex: 1 1 200px;
  transition: transform .18s, box-shadow .18s;
  z-index: 1;
  overflow: hidden;
}
.card:hover, .category-list > li:hover, .feature-grid > li:hover {
  transform: translateY(-9px) scale(1.045) rotate(-2deg);
  box-shadow: 0 10px 36px #a0b08d23;
}
.card img, .category-list img, .feature-grid img {
  width: 52px; height: 52px; margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px #a0b08d29);
  border-radius: 14px; background: #fffbe7;
  display: block;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* --- TESTIMONIALS, QUOTES, MICRO SECTIONS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFCEB;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 9px #ded08644;
  font-style: italic;
  position: relative;
  margin-bottom: 20px;
  min-width: 220px;
  color: #704a13;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.01em;
  line-height: 1.6;
  color: #2C3A41;
}
.testimonial-card span {
  font-weight: 700;
  color: #80580A;
  margin-left: 14px;
  font-style: normal;
  font-size: 0.98em;
}

/* --- FLEX ALIGNMENT + LAYOUT --- */
.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;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* --- FEATURE CARDS, USP --- */
.feature-grid > li, .category-list > li {
  min-width: 200px;
  flex: 1 1 220px;
}
.feature-grid h3, .category-list h3 {
  font-size: 1.14em;
  color: var(--color-accent);
  margin-bottom: 0px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 40px 0 18px 0;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD94A;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 13px;
  align-items: center;
  font-size: .98rem;
}
.contact-footer span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #fff;
}
.contact-footer img {
  width: 22px;
  height: 22px;
  display: inline-block;
  filter: brightness(2);
}
.copyright {
  margin-top: 10px;
  text-align: left;
  font-size: .98rem;
  color: #E2DED9;
  opacity: .75;
}

/* --- MISC: INPUTS for forms (if any) --- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 1em;
  border: 1.5px solid #a0b08d50;
  background: #fff;
  margin-bottom: 20px;
  color: #30373F;
  box-shadow: 0 1.5px 7px #a0b08d09;
  transition: border .17s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 4.5px 12px #ffc14d0f;
}

/* --- SPECIFIC PAGE SECTIONS (playful enhancements) --- */
.hero {
  background: linear-gradient(90deg, #FFF7EC 30%, #E2DED9 100%);
  border-bottom-left-radius: var(--radius-outer);
  border-bottom-right-radius: var(--radius-outer);
  min-height: 410px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-1);
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta-inspire, .help-cta, .newsletter-cta, .product-cta, .phone-order-cta {
  background: #e6f6de;
  border-radius: var(--radius-outer);
  text-align: center;
  box-shadow: 0 1px 15px #a0b08d19;
  padding-top: 42px;
  padding-bottom: 42px;
  margin-bottom: 32px;
}

.history, .about-intro, .values, .mission-statement, .rodo-information, .privacy-policy, .cookies-policy, .terms-conditions, .order-steps, .faq, .contact-section, .office-hours, .thank-you-confirmation {
  background: #FFF;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* --- CAROUSEL-LIKE STORIES (IF USED IN FUTURE) --- */
.customer-stories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.customer-stories li {
  flex: 1 1 260px;
  min-width: 250px;
}

/* --- ORDER STEPS (PLAYFUL NUMBER ICONS) --- */
.order-steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-left: 0;
  margin-bottom: 2em;
}
.order-steps ol li {
  flex: 1 1 200px;
  min-width: 200px;
  background: #FFFCEB;
  border-radius: var(--radius-card);
  padding: 18px 18px 12px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  color: #80580A;
  font-size: 1.07em;
  margin-bottom: 12px;
}
.order-steps ol img {
  width: 38px;
  height: 38px;
  background: #FFD94A;
  border-radius: 50%;
  box-shadow: 0 2px 8px #ffc14d3c;
  padding: 3px;
}

/* --- FAQ --- */
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq ul li {
  background: #EDFCFE;
  border-left: 6px solid var(--color-brand-accent);
  padding: 16px 24px;
  border-radius: 1em;
  font-size: 1.09em;
  margin-bottom: 10px;
  transition: box-shadow .16s;
}
.faq ul li:hover {
  box-shadow: 0 5px 16px #a0b08d19;
}

/* --- NEWSLETTER CTA --- */
.newsletter-cta p {
  font-size: 1.2em;
  font-weight: 400;
}

/* --- ANIMATIONS --- */
@keyframes bouncy {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-9px); }
  50% { transform: translateY(3px); }
  70% { transform: translateY(-6px); }
}
.primary-btn:hover {
  animation: bouncy 0.61s cubic-bezier(.51,-0.61,.55,1.42); /* playful bounce */
}
@media (max-width: 768px) {
  .hero {
    min-height: 240px;
    padding: 30px 0;
    border-radius: 0 0 var(--radius-outer) var(--radius-outer);
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding: 28px 6px;
  }
  .card-container, .feature-grid, .category-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .order-steps ol, .customer-stories ul {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav, .contact-footer {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .content-wrapper {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.1rem; }
  .primary-btn, a.primary-btn {
    width: 100%;
    font-size: 1.01em;
    padding-left: 0;
    padding-right: 0;
  }
  .card, .category-list > li, .feature-grid > li {
    padding: 13px 9px 13px 12px;
    min-width: 95px;
  }
}

/* --- SPACING & FLEX LAYOUT CRITICALS --- */
.section, section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card { margin-bottom: 20px; position: relative; }
.card-container, .feature-grid, .category-list {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.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; align-items: center; gap: 20px; padding: 20px;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #FFFCEB;
  color: #2C3A41;
  box-shadow: 0 -6px 24px #d6b01126;
  z-index: 4010;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 20px 24px 20px 18px;
  font-size: 1rem;
  animation: cookie-slidein .56s cubic-bezier(.37,0,.4,1.62);
}
@keyframes cookie-slidein {
  from { opacity:0; transform: translateY(80px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex; flex-direction: row; gap: 12px;
}
.cookie-btn {
  padding: 8px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1em;
  cursor: pointer;
  border: none;
  transition: background .14s, color .15s;
  margin-left: 0px;
}
.cookie-btn.accept { background: var(--color-success); color: #fff; }
.cookie-btn.accept:hover { background: #1C9961; }
.cookie-btn.reject { background: var(--color-danger); color: #fff; }
.cookie-btn.reject:hover { background: #AD0410; }
.cookie-btn.settings {
  background: #ffecb4;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-btn.settings:hover { background: var(--color-accent); color:#fff; }

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  content: '';
  position: fixed;
  z-index: 4069;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,58,65,0.60);
  display: flex; align-items: center; justify-content: center;
  animation: cookieModalShow .3s cubic-bezier(.25,.6,.51,1.33);
}
@keyframes cookieModalShow {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: var(--radius-card);
  max-width: 420px;
  width: 94vw;
  padding: 32px 32px 22px 32px;
  color: var(--color-primary);
  box-shadow: 0 10px 32px #A0B08D39;
  display: flex; flex-direction: column; gap: 18px;
  animation: cookieModalPop .45s cubic-bezier(.25,.6,.51,1.33);
  position: relative;
}
@keyframes cookieModalPop {
  from { opacity:0; transform: scale(.7) translateY(60px); }
  to { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 8px; margin-bottom: 18px;
}
.cookie-category {
  display: flex; align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1.07em;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #F1F1F2;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top:1px; left:1px;
  background: #fff;
  border-radius: 50%;
  transition: left .22s;
  box-shadow: 0 2px 8px #ccc7;
}
.cookie-toggle:checked::before {
  left: 21px;
}
.cookie-category input[disabled] + label {
  color: #bbb;
}

.cookie-modal .cookie-actions {
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px; top: 10px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #bbb;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-primary);
}

/* --- UTILS --- */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 2rem!important; }
.text-center { text-align: center!important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/*** END OF CSS FILE ***/
