/* -----------------------------------------------------------------------------
   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 {
  scroll-behavior: smooth;
  background: #FFF8F3;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1b3052;
  background: #FFF8F3; /* subtle warm white */
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #234271;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5BBE42;
}

/* -----------------------------------------------------------------------------
   BRAND COLOR VARIABLES + FONT
----------------------------------------------------------------------------- */
:root {
  --brand-primary: #1b3052;
  --brand-secondary: #ffffff;
  --brand-accent: #5BBE42;
  --brand-warm-bg: #FFF8F3;
  --brand-warm-card: #FFF4EB;
  --brand-warm-shadow: 0 2px 16px rgba(208,128,38,0.10);
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), url('https://fonts.gstatic.com/s/montserrat/v25/JTURjIg1_i6t8kCHKm45_bZF3gnD-w.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Regular'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me4mxP.ttf') format('truetype');
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1b3052;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; line-height: 1.2; }
h2 { font-size: 1.5rem; margin-bottom: 16px; line-height: 1.25; }
h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.32; }
@media (min-width: 600px) {
  h1 { font-size: 2.5rem;}
  h2 { font-size: 2rem;}
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b {
  font-weight: 700;
  color: #234271;
}

/* -----------------------------------------------------------------------------
   LAYOUT CONTAINERS, SPACING, AND RESPONSIVE FLEXBOX
----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* --- FLEX UTILITY CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--brand-warm-card);
  border-radius: 18px;
  box-shadow: var(--brand-warm-shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(91,190,66,0.15);
}
.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;
  background: #ffffff;
  color: #1b3052;
  gap: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(51,55,81,0.07), 0 1.5px 4px rgba(91,190,66,0.09);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(91,190,66,0.18);
  transform: translateY(-2px) scale(1.022);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Gaps between list items & utility margins */
ul, ol { margin-bottom: 28px; padding-left: 24px; }
ul li, ol li { margin-bottom: 10px; }

/* -----------------------------------------------------------------------------
   HEADER, NAVIGATION, & MOBILE MENU
----------------------------------------------------------------------------- */
header {
  position: relative;
  width: 100%;
  background: var(--brand-secondary);
  box-shadow: 0 1px 9px rgba(208,128,38,0.06);
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 32px;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: #1b3052;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f5e8d6;
  color: #5BBE42;
}
a.cta-primary {
  background: #5BBE42;
  color: #fff;
  padding: 11px 32px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.04rem;
  box-shadow: 0 2px 10px rgba(91,190,66,0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  display: inline-block;
  letter-spacing: 0.02em;
}
a.cta-primary:hover, a.cta-primary:focus {
  background: #3ea628;
  color: #fff;
  transform: translateY(-1.5px) scale(1.025);
  box-shadow: 0 6px 20px rgba(91,190,66,0.18);
}

/* ---------- Mobile Burger menu ---------- */
.mobile-menu-toggle {
  display: none;
  background: #FDE0BD;
  border: none;
  color: #234271;
  font-size: 2.1rem;
  padding: 6px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(208,128,38,0.13);
  cursor: pointer;
  margin: 9px 12px 7px auto;
  z-index: 112;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE1C6;
  box-shadow: 0 4px 22px rgba(208,128,38,0.22);
}
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container { gap: 12px; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #FFF8F3;
  box-shadow: 0 0 16px rgba(51,55,81,0.11);
  z-index: 999;
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 22px 0 0;
  background: transparent;
  border: none;
  color: #1b3052;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.16s;
  padding: 6px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE1C6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1b3052;
  padding: 16px 44px;
  border-bottom: 1px solid #F4E6D7;
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fbe7d0;
  color: #5BBE42;
}

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

/* -----------------------------------------------------------------------------
   HERO SECTIONS, CTA, & CARDS
----------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(95deg, #FFE1C6 10%, #FFF8F3 89%);
  border-radius: 0 0 32px 32px;
  padding-top: 54px;
  padding-bottom: 48px;
  text-align: left;
  margin-bottom: 54px;
}
.hero .container {
  justify-content: flex-start;
  align-items: flex-start;
}
.hero h1 {
  color: #234271;
  margin-bottom: 14px;
  font-size: 2.4rem;
}
.hero p {
  color: #5D4B36;
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 1.18rem;
}
.hero .cta-primary {
  margin-top: 14px;
}
@media (max-width: 768px) {
  .hero { padding-top: 32px; padding-bottom: 24px; margin-bottom: 28px; }
  .hero h1 { font-size: 2rem; }
}

.cta-secondary {
  background: #FFE1C6;
  color: #1b3052;
  padding: 10px 26px;
  border-radius: 26px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  margin-left: 0;
  transition: background 0.18s, color 0.18s, transform 0.17s;
  box-shadow: 0 2px 7px rgba(208,128,38,0.07);
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FFD3A5;
  color: #3ea628;
  transform: translateY(-1.5px) scale(1.025);
}

/* --- Cards --- */
.feature-grid, .promo-product-grid, .product-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card, .promo-product-card, .product-card, .category-card {
  background: var(--brand-warm-card);
  border-radius: 16px;
  box-shadow: var(--brand-warm-shadow);
  padding: 28px 24px 22px 24px;
  flex: 1 1 270px;
  min-width: 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.feature-card img, .promo-product-card img, .product-card img, .category-card img {
  margin-bottom: 16px;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
}
.feature-card:hover, .promo-product-card:hover, .product-card:hover, .category-card:hover {
  box-shadow: 0 8px 30px rgba(208,128,38,0.17);
  transform: translateY(-3px) scale(1.02);
}

.promo-highlights, .promo-timer {
  background: #FFF4EB;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px rgba(244, 179, 94, 0.10);
  margin-bottom: 18px;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-highlights strong {
  color: #e08e13;
}

@media (max-width: 900px) {
  .feature-grid, .promo-product-grid, .product-grid, .category-grid { gap: 16px; }
}
@media (max-width: 650px) {
  .feature-card, .promo-product-card, .product-card, .category-card {
    min-width: 99%;
    padding: 21px 10px 14px 15px;
  }
}

/* --- Product call to action button --- */
.product-cta {
  margin-top: 16px;
  background: #5BBE42;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 7px rgba(91,190,66,0.11);
  transition: background 0.18s, color 0.18s, transform 0.17s;
  display: inline-block;
}
.product-cta:hover, .product-cta:focus {
  background: #3ea628;
  color: #fff;
  transform: scale(1.06);
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS, FAQ, CERTIFICATIONS, BENEFITS
----------------------------------------------------------------------------- */
.testimonials {
  background: linear-gradient(90deg, #FFF4EB 2%, #FFF8F3 98%);
  border-radius: 18px;
  padding: 34px 22px 36px 24px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #ffffff;
  color: #1b3052;
  font-size: 1.07rem;
  max-width: 340px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(51,55,81,0.07), 0 1.5px 4px rgba(91,190,66,0.09);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  min-height: 140px;
  margin-bottom: 20px;
  border-left: 5px solid #5BBE42;
  transition: box-shadow 0.22s;
}
.testimonial-author {
  font-size: 0.99rem;
  font-style: italic;
  color: #618392;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  .testimonial-list { flex-direction: column; gap: 10px; }
  .testimonial-card { max-width: unset; width: 100%; }
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 22px;
}
.faq-item {
  flex: 1 1 260px;
  background: #FFF8F3;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(208,128,38,0.08);
  padding: 18px 18px 13px 18px;
  font-size: 1.07rem;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  font-size: 1rem;
  color: #234271;
  margin-bottom: 8px;
}
.faq-item:hover {
  box-shadow: 0 6px 19px rgba(244,164,96,0.10);
}

.certification-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin-bottom: 22px;
}
.certification-list li {
  background: #FFF4EB;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.certification-list img {
  width: 36px; height: 36px; margin-bottom: 0;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.trust-badges img {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 1.5px 8px rgba(91,190,66,0.08);
  padding: 8px;
}

/* -----------------------------------------------------------------------------
   CATEGORY & PRODUCT OVERVIEW LAYOUT
 ----------------------------------------------------------------------------- */
.category-list ul, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 0;
}
.category-list li {
  background: #FFF4EB;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px rgba(208,128,38,0.06);
  font-size: 1.08rem;
  padding: 15px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}
.category-list li a {
  color: #234271;
  transition: color 0.17s;
}
.category-list li a:hover, .category-list li a:focus {
  color: #5BBE42;
}

.filter-sort-options {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.filter-sort-options button {
  background: #FFE1C6;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 14px;
  padding: 8px 18px;
  font-size: 1.03rem;
  color: #234271;
  font-weight: 600;
  box-shadow: 0 1px 7px rgba(208,128,38,0.07);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.1s;
}
.filter-sort-options button:hover, .filter-sort-options button:focus {
  background: #FFD3A5;
  color: #5BBE42;
  box-shadow: 0 4px 16px rgba(244,164,96,0.12);
}

.purchase-flow-diagram ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}
.purchase-flow-diagram li {
  background: #FFF4EB;
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1.5px 7px rgba(208,128,38,0.06);
}
.purchase-flow-diagram img {
  width: 32px; height: 32px;
}

@media (max-width: 900px) {
  .feature-grid, .promo-product-grid, .product-grid, .category-grid, .purchase-flow-diagram ul {
    flex-direction: column;
    gap: 14px;
  }
  .promo-product-card, .product-card, .category-card, .feature-card { min-width: 98%; }
}

/* -----------------------------------------------------------------------------
   PRIVACY, POLICY TEXT SECTIONS, LEGAL
 ----------------------------------------------------------------------------- */
.privacy-policy, .cookie-policy, .rodo-policy, .shop-terms {
  background: #FFF4EB;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(208,128,38,0.08);
  margin-bottom: 50px;
  padding: 32px 28px;
}
.text-section {
  background: none;
  padding: 0;
  margin-bottom: 0;
}
.text-section h2 {
  margin-bottom: 12px;
}
.text-section p {
  margin-bottom: 13px;
}

/* -----------------------------------------------------------------------------
   FOOTER & CONTACT
 ----------------------------------------------------------------------------- */
footer {
  background: linear-gradient(90deg, #FFF8F3 70%, #FFE1C6 100%);
  box-shadow: 0 -1px 12px rgba(244,164,96,0.06);
  border-radius: 28px 28px 0 0;
  font-size: 0.97rem;
  padding: 30px 0 20px 0;
  margin-top: 38px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #234271;
  padding: 6px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFE1C6;
  color: #5BBE42;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 200px;
}
.footer-contact img {
  width: 68px;
  height: auto;
  margin-bottom: 8px;
  border-radius: 14px;
}
.footer-contact p, .footer-contact a { color: #1b3052; }
.footer-contact a:hover, .footer-contact a:focus { color: #5BBE42; text-decoration: underline; }
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* -----------------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF4EB;
  color: #1b3052;
  padding: 19px 25px 19px 25px;
  box-shadow: 0 -2px 22px rgba(244,164,96,0.14);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font-size: 1rem;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  animation: cookieSlideUp 0.62s cubic-bezier(.8,0,.18,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(130%); }
  to { transform: translateY(0); }
}
.cookie-consent-banner button {
  margin-left: 10px;
  margin-right: 3px;
  background: #5BBE42;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, transform 0.16s;
  box-shadow: 0 1px 8px rgba(91,190,66,0.10);
  cursor: pointer;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #FFE1C6;
  color: #1b3052;
  border: 1px solid #FFD0B2;
  margin-right: 6px;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #FFD3A5;
  color: #5BBE42;
}
.cookie-consent-banner .cookie-reject-btn {
  background: #f8b445;
  color: #fff;
  margin-left: 6px;
}
.cookie-consent-banner .cookie-reject-btn:hover {
  background: #e08e13;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #3ea628;
  color: #fff;
  transform: scale(1.04);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(50,41,32,0.29);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.43s cubic-bezier(.8,0,.18,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF8F3;
  border-radius: 19px;
  box-shadow: 0 3px 28px rgba(244,164,96,0.18);
  padding: 38px 30px 26px 32px;
  min-width: 340px; max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  color: #234271;
  margin-bottom: 18px;
}
.cookie-modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #234271;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.1s;
  border-radius: 50%;
  padding: 4px 10px;
}
.cookie-modal-content .close-btn:hover {
  background: #FFE1C6;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #FFF4EB;
  border-radius: 10px;
  padding: 13px 18px;
}
.cookie-category label {
  font-size: 1.05rem;
  flex: 1 1 auto;
  color: #1b3052;
}
.cookie-category input[type="checkbox"] {
  width: 23px;
  height: 23px;
  accent-color: #5BBE42;
}
.cookie-category .always-on {
  background: #e08e13;
  color: #fff;
  border-radius: 9px;
  font-size: 0.98rem;
  padding: 3px 9px;
  margin-left: 9px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.cookie-modal-content .modal-actions button {
  background: #5BBE42;
  color: #fff;
  border-radius: 17px;
  padding: 8px 19px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  box-shadow: 0 1.5px 7px rgba(91,190,66,0.10);
  transition: background 0.15s;
}
.cookie-modal-content .modal-actions button.secondary {
  background: #FFE1C6;
  color: #1b3052;
  border: 1px solid #FFD0B2;
}
.cookie-modal-content .modal-actions button.secondary:hover {
  background: #FFD3A5;
  color: #5BBE42;
}
.cookie-modal-content .modal-actions button:hover, .cookie-modal-content .modal-actions button:focus {
  background: #3ea628;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal-content { padding: 22px 10px 15px 13px; min-width: 82vw; }
}

/* -----------------------------------------------------------------------------
   MAP, THANK YOU, & GENERAL ELEMENTS
 ----------------------------------------------------------------------------- */
.map-section, .thank-you-section {
  background: #FFF4EB;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(208,128,38,0.09);
  margin-bottom: 46px;
  padding: 32px 28px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 7px rgba(244,164,96,0.09);
  margin: 16px 0 0 0;
  padding: 15px 18px;
}

.cta-section {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  align-items: center;
}

@media (max-width: 650px) {
  .cta-section { flex-direction: column; gap: 9px; align-items: flex-start; }
}

/* -----------------------------------------------------------------------------
   MISCELLANEOUS
--------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #FFE1C6;
}
::-webkit-scrollbar-thumb {
  background: #FFD3A5;
  border-radius: 8px;
}

hr {
  border: none;
  border-top: 1px solid #FFE1C6;
  margin: 28px 0;
}

/* -----------------------------------------------------------------------------
   ANIMATIONS & TRANSITIONS
 ----------------------------------------------------------------------------- */
.card, .feature-card, .product-card, .promo-product-card, .category-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.22s, transform 0.22s;
}
button, .cta-primary, .cta-secondary, .product-cta {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
}
a, .footer-nav a {
  transition: color 0.16s, background 0.15s;
}

/* -----------------------------------------------------------------------------
   FORMS (in contact page)
 ----------------------------------------------------------------------------- */
input, textarea, select {
  border-radius: 12px;
  border: 1px solid #FFE1C6;
  padding: 10px 15px;
  background: #FFF8F3;
  font-size: 1.07rem;
  outline: none;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  width: 100%;
  color: #1b3052;
  box-shadow: 0 1.5px 7px rgba(208,128,38,0.04);
  transition: border 0.14s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #e08e13;
  box-shadow: 0 3px 14px rgba(91,190,66,0.13);
}
button, input[type="submit"] {
  cursor: pointer;
}

/* -----------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS & ADAPTIVE SIZING
 ----------------------------------------------------------------------------- */
@media (max-width: 650px) {
  h1 { font-size: 1.35rem !important; }
  h2 { font-size: 1.13rem !important; }
  h3 { font-size: 1.01rem !important; }
  .feature-card, .promo-product-card, .product-card, .category-card, .testimonial-card, .faq-item, .section, .privacy-policy, .cookie-policy, .rodo-policy, .shop-terms, .map-section, .thank-you-section {
    padding: 18px 7px !important;
    min-width: unset;
  }
  .container {
    padding: 0 3px;
    max-width: 100vw;
  }
}

/* -----------------------------------------------------------------------------
   PRINT SUPPORT (minimal)
 ----------------------------------------------------------------------------- */
@media print {
  header, .main-nav, .mobile-menu, .cookie-consent-banner, .footer-nav, .footer-contact, .footer {
    display: none !important;
  }
}
