/* === 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4ECE5;
  color: #335F28;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
p, li, ul, ol, dl, dd, dt {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}

/* === BRANDING & CREATIVE ARTISTIC THEME === */
:root {
  --primary: #335F28;
  --secondary: #F4ECE5;
  --accent: #8DC63F;
  --text-dark: #1F3220;
  --white: #fff;
  --shadow-card: 0 4px 24px rgba(51, 95, 40, 0.12);
  --shadow-hover: 0 8px 24px rgba(141,198,63,0.20);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-xs: 5px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--secondary);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex; flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  gap: 32px;
}

.section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.03);
}

.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: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  max-width: 600px;
  border-left: 8px solid var(--accent);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.03em;
}

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

/* === TYPOGRAPHY === */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 1px 2px 0 var(--accent),0 2px 6px rgba(51,95,40,0.02);
}
h2 {
  font-size: 2.1rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 1px 1px 0 rgba(141,198,63,0.10);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
p, ul li, ol li, dl, dd {
  font-size: 1rem;
  color: var(--text-dark);
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
}
strong {
  font-weight: 700; color: var(--primary);
}

/* === BUTTONS & LINKS === */
.cta-btn,
button.cta-btn,
input[type="submit"],
button[type="submit"] {
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(141,198,63,0.09);
  cursor: pointer;
  transition: background 0.18s, transform 0.13s;
  margin-top: 10px;
  letter-spacing: 0.02em;
  display: inline-block;
  outline: none;
}
.cta-btn:hover,
button.cta-btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(51, 95, 40, 0.14);
}

nav a:not(.logo):not(.cta-btn) {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 14px;
  border-radius: var(--radius-xs);
  transition: background 0.15s, color 0.15s;
}
nav a:not(.logo):not(.cta-btn):hover {
  color: var(--white);
  background: var(--accent);
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(51, 95, 40, 0.07);
  padding: 0 0 6px 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 995;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
  width: 100%;
}
nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav ul li {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 54px;
  height: 46px;
  margin-right: 8px;
  border-radius: 12px 22px 10px 18px; /* Slightly playful corners */
  background: var(--accent);
  padding: 5px 7px 5px 5px;
  box-shadow: 0 1px 8px rgba(141,198,63,0.13);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(141,198,63,0.14);
  cursor: pointer;
  margin-left: 12px;
  z-index: 1202;
  transition: background 0.15s, color 0.15s, transform 0.14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(52,58,54,0.95);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.7,0.2,0.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  width: 100vw;
  overflow: auto;
  box-shadow: 2px 0 12px rgba(51,95,40,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(141,198,63,0.12);
  padding: 5px 15px;
  position: absolute;
  top: 18px;
  right: 14px;
  cursor: pointer;
  z-index: 1210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 60px 40px 40px 34px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.48rem;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  transition: background 0.14s, color 0.14s;
  margin-right: auto;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* === HERO/BANNERS === */
.hero {
  min-height: 350px;
  padding: 50px 0 30px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #F4ECE5 70%, #8DC63F 118%);
  position: relative;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero .container, .hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero h2 {
  color: var(--primary);
}
.hero a.cta-btn {
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(141,198,63,0.15);
}

/* === FEATURES === */
.features ul,
.product-highlights ul,
.product-benefits ul,
.product-categories ul,
.team ul,
.certifications ul,
.about ul,
.tips ul,
.recipes ul,
.contact ul,
.footer-contact p {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}
.features ul li,
.product-highlights ul li,
.product-benefits ul li,
.product-categories ul li,
.team ul li,
.certifications ul li,
.about ul li,
.tips ul li,
.contact ul li {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: rgba(141,198,63,0.09);
  border-radius: var(--radius-xs);
  padding: 10px 16px;
  box-shadow: 0 1px 4px rgba(141,198,63,0.07);
  margin-bottom: 0;
}
.features ul li img,
.product-benefits ul li img,
.tips ul li img,
.contact ul li img,
.footer-contact p img,
.certifications ul li img,
.sustainability ul li img {
  width: 32px; min-width: 28px; height: 32px; margin-right: 7px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(51,95,40,0.09);
  object-fit: contain;
}

/* === CARDS & GRID === */
.blog-list ul, .product-list ul, .about-snippet ul, .recipes ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.blog-list ul li,
.product-list ul li,
.product-benefits ul li,
.certifications ul li,
.team ul li,
.about-snippet ul li {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  font-size: 1.07rem;
  margin-bottom: 0;
}

/* === CTA SECTIONS === */
.cta {
  background: linear-gradient(100deg, #8DC63F 70%, #335F28 120%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: left;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(51, 95, 40, 0.08);
}
.cta h2 {
  color: #fff;
  text-shadow: 0 2px 10px #335F28;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  background: var(--white);
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: 0 4px 18px rgba(255,255,255,0.22);
}
.cta .cta-btn:hover {
  background: #335F28;
  color: #fff;
}

/* === TABLES (EKO vs KONWENCJONALNE) === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px 0;
  font-size: 1.06rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
table thead th {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  border: none;
  padding: 16px 10px;
}
table tbody td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--secondary);
  font-size: 1rem;
}
table tr:last-child td {
  border-bottom: none;
}
table tbody tr:nth-child(even) td {
  background: #F7FAF3;
}

/* === DL/FAQ === */
dt {
  font-weight: 700;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 1rem;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 70px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -2px 18px rgba(51, 95, 40, 0.04);
}
footer .container {
  flex-direction: column;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding-bottom: 38px;
  margin-bottom: 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand img {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 20px;
  margin-bottom: 4px;
}
.footer-brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.85;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
  min-width: 160px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.82;
  transition: color 0.1s, background 0.1s;
  padding: 3px 0;
}
.footer-menu a:hover {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact p {
  color: #fff;
  opacity: 0.90;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer {
  border-top: 4px solid var(--accent);
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  padding: 28px 15px 18px 15px;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  z-index: 1400;
  box-shadow: 0 -4px 20px rgba(51,95,40,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  animation: cookieBannerIn 0.7s cubic-bezier(0.68,0.1,0.28,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-text {
  flex: 2 1 290px;
  font-size: 1.05rem;
  text-align: left;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 11px 20px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.05rem;
  margin-left: 13px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(141,198,63,0.09);
  transition: background 0.15s, transform 0.11s, color 0.16s;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}
.cookie-btn.secondary {
  background: #7b9669;
  color: #fff;
}
.cookie-btn.secondary:hover {
  background: #fff;
  color: var(--primary);
}

/* Cookie modal overlay */
#cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(51,95,40,0.55);
  z-index: 1500;
  display: none;
  justify-content: center;
  align-items: center;
  animation: cookieModalIn 0.5s cubic-bezier(0.68,0.1,0.28,1);
}
#cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-lg);
  max-width: 410px;
  min-width: 290px;
  padding: 35px 28px 20px 28px;
  box-shadow: 0 10px 32px rgba(51,95,40,0.19);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieModalBoxIn 0.5s cubic-bezier(0.68,0.1,0.28,1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@keyframes cookieModalBoxIn {
  from { transform: scale(0.8) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
#cookie-modal h3 {
  font-size: 1.32rem;
  color: var(--primary);
  margin-bottom: 7px;
}
#cookie-modal label {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
}
#cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
#cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1;
}
#cookie-modal .cookie-modal-close:hover {
  color: var(--accent);
}

/* ====== ANIMATIONS & MICRO-INTERACTIONS ====== */
.cta-btn, .card, .testimonial-card, .cookie-btn, .cookie-settings-btn, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow .18s, background .13s, color .13s, transform .17s;
}

/* ====== RESPONSIVE DESIGN - MOBILE FIRST ====== */
@media (max-width: 1140px) {
  .container {
    max-width: 100%;
    padding: 0 9px;
  }
  .footer-brand img {
    width: 62px;
    height: 62px;
  }
}
@media (max-width: 920px) {
  .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 34px;
  }
  .footer-menu, .footer-contact {
    min-width: unset;
  }
}
@media (max-width: 768px) {
  /* Header nav to burger */
  nav ul {
    display: none;
  }
  nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    min-height: 200px;
    padding: 36px 0 16px 0;
  }
  .section {
    padding: 22px 5px;
    margin-bottom: 36px;
    border-radius: var(--radius-md);
  }
  .footer-brand img {
    width: 45px;
    height: 45px;
  }
  .footer-contact, .footer-menu {
    font-size: 0.98rem;
  }
  .about-snippet, .features, .product-benefits, .product-highlights, .team, .product-categories, .tips, .recipes, .faq, .contact, .cta, .certifications, .eco-benefits, .sustainability {
    margin-bottom: 30px;
    padding-bottom: 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 18px 14px;
    border-left-width: 4px;
    font-size: 1rem;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 6px 17px 6px;
    gap: 14px;
    font-size: 0.95rem;
  }
  #cookie-modal {
    padding: 21px 10px 18px 10px;
    min-width: 90vw;
    max-width: 98vw;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.12;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 6px;
  }
  .footer-contact, .footer-menu {
    font-size: 0.91rem;
  }
  .cta-btn, button.cta-btn, input[type="submit"], button[type="submit"] {
    font-size: 0.98rem;
    padding: 12px 15px;
  }
  nav {
    padding: 7px 0;
  }
}

/* Extra breathing room between all major sections/cards */
.section + .section,
.card + .card,
.card-container + .card-container,
.testimonial-card + .testimonial-card,
.card + .testimonial-card {
  margin-top: 32px !important;
}

/* === SCROLLBARS (subtle artistic accent) === */
body::-webkit-scrollbar {
  width: 8px;
  background: #F4ECE5;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #335F28 65%, #8DC63F 100%);
  border-radius: 6px;
}

/* === PRINTABLE LEGAL PAGES === */
.legal {
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  margin-bottom: 50px;
  box-shadow: 0 2px 14px rgba(51,95,40,0.08);
}

/* ========== END ==========
All styles follow the flexbox-only rule with creative_artistic look, brand colors, spacing, dark-on-light testimonials, strong accent buttons, burger menu, and animated cookie consent banner & modal.
*/
