/* 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 {
  /* Use full viewport height */
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F7F9;
  color: #203354;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #3BA8C8;
  transition: color 0.2s;
  text-decoration: none;
}
a:hover, a:focus {
  color: #ffb13c;
  text-decoration: underline;
}
:focus-visible {
  outline: 2px solid #ffb13c;
  outline-offset: 2px;
}

/* ROOT COLORS & FONT FACES (fallbacks provided) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --primary: #203354;
  --secondary: #3BA8C8;
  --accent: #F7F7F9;
  --highlight: #ffb13c;
  --positive: #22bb77;
  --danger: #ff549a;
  --shadow: rgba(32, 51, 84, 0.09);
  --display-font: 'Montserrat', Montserrat, Arial, sans-serif;
  --body-font: 'Roboto', Roboto, Arial, sans-serif;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--shadow);
}

/* TYPOGRAPHY */
h1, .hero h1, .products-hero h1, .promo-hero h1, .news-hero h1, .support-hero h1, .thank-you-section h1, .contact-main h1, .about-mission h1, .privacy-policy h1, .rodo-section h1, .terms-section h1, .cookies-policy h1 {
  font-family: var(--display-font);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--primary);
  line-height: 1.15;
}
h2, .features h2, .products-preview h2, .testimonials h2, .cta h2, .key-features h2, .our-team h2,
.categories h2, .product-grid h2, .cta-news h2, .cta-promo h2, .cta-contact h2, .faq h2, .support-channels h2 {
  font-family: var(--display-font);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
h3 {
  font-family: var(--display-font);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
p, li, ul {
  font-family: var(--body-font);
  font-size: 1rem;
  margin-bottom: 0.5em;
}
ul {
  list-style: disc inside;
  padding-left: 1.2em;
}
li {
  margin-bottom: 0.65em;
}
strong { font-weight: 700; }

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand-logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
}
.brand-logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 10px;
  background: #ffe4b1;
  padding: 4px;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: 16px;
  font-family: var(--display-font);
  font-weight: 500;
}
nav.main-nav a {
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 16px;
  color: var(--primary);
  position: relative;
  transition: background 0.14s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* CTA Button (shared) */
.cta-button, .filter-buttons button, .category-item, .product-tag, .discount-label, .testimonial-meta img {
  font-family: var(--display-font);
}
.cta-button {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 36px;
  cursor: pointer;
  box-shadow: 0 2px 16px var(--shadow);
  text-shadow: 0 1px 0 #0e283d1f;
  margin-top: 14px;
  transition: background 0.20s cubic-bezier(0.4,1,0.7,1), transform 0.17s;
  outline: none;
}
.cta-button.secondary {
  background: var(--highlight);
  color: var(--primary);
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.06) rotate(-2.5deg);
  box-shadow: 0 8px 32px 0 #ffb13c43;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--highlight);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 25;
  box-shadow: 0 2px 12px var(--shadow);
  cursor: pointer;
  transition: background 0.18s, transform 0.16s;
}
.mobile-menu-toggle:active {
  background: var(--danger);
  color: #fff;
}
.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: linear-gradient(90deg, #ffe4b1 0%, #f7f7f9 80%);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.39s cubic-bezier(.8,-0.01,.33,1.03);
  box-shadow: 0 8px 48px #6ea3c814;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.17s;
  z-index: 1015;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--highlight);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 90px;
  margin-left: 32px;
  width: 90vw;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 18px;
  padding: 12px 22px;
  margin-right: 18px;
  margin-bottom: 8px;
  text-shadow: 0 1px 0 #d0eeff65;
  box-shadow: 0 2px 12px #85cfeb15;
  transition: background 0.17s, color 0.17s, transform 0.23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--danger);
  color: #fff;
  transform: scale(1.03) skewX(-2deg);
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  nav.main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* HERO SECTIONS */
.hero, .products-hero, .promo-hero, .news-hero, .support-hero, .thank-you-section, .contact-main, .about-mission, .privacy-policy, .rodo-section, .terms-section, .cookies-policy {
  background: linear-gradient(93deg,#ffe4b1 0%, #f7f7f9 62%, #ffee7d 100%);
  box-shadow: 0 2px 14px #eecc8055;
  margin-bottom: 60px;
  padding: 52px 0 50px 0;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper, .products-hero .content-wrapper, .about-mission .content-wrapper, .promo-hero .content-wrapper, .news-hero .content-wrapper, .thank-you-section .content-wrapper, .contact-main .content-wrapper {
  align-items: flex-start;
}
.hero h1, .products-hero h1, .promo-hero h1, .news-hero h1, .support-hero h1, .thank-you-section h1, .contact-main h1, .about-mission h1, .privacy-policy h1, .rodo-section h1, .terms-section h1, .cookies-policy h1 {
  color: #203354;
}

/* FEATURES SECTION */
.features, .key-features {
  background: #f9fdff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 14px #e0eaff29;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-item {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 26px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px #8be3fd29;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #ffee9c;
  padding: 8px;
}
.feature-item:hover {
  box-shadow: 0 8px 36px #ffb13c22;
  transform: translateY(-4px) scale(1.025) rotate(-1.4deg);
}

/* PRODUCTS PREVIEW, PRODUCT GRID & PROMO LIST */
.product-cards, .promo-cards, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.product-card, .promo-card {
  min-width: 220px;
  flex: 1 1 250px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px #3ba8c841;
  position: relative;
  transition: box-shadow 0.14s, transform 0.2s;
}
.product-card img, .promo-card img {
  width: 50px;
  margin-bottom: 10px;
}
.product-tag, .discount-label {
  display: inline-block;
  font-size: 0.90rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 13px;
  margin-bottom: 8px;
  background: var(--highlight);
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: 0 1px 3px #ffb13c26;
  transition: background 0.2s, color 0.13s;
}
.discount-label {
  background: var(--positive);
  color: #fff;
}
.product-card:hover, .promo-card:hover {
  box-shadow: 0 10px 36px #3ba8c877;
  transform: translateY(-4px) scale(1.031) rotate(1deg);
}

/* CATEGORY LIST */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 19px;
  padding: 22px 12px;
  min-width: 110px;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 14px #3ba8c828;
  transition: background 0.13s, box-shadow 0.16s, transform 0.12s;
}
.category-item img {
  width: 36px;
  height: 36px;
}
.category-item:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 24px #3ba8c84f;
  transform: scale(1.06) skewY(-2deg);
}
.category-item span {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 5px;
  color: var(--primary);
}
.category-item:hover span {
  color: #fff;
}

/* FILTER BUTTONS */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.filter-buttons button {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: 18px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, border-color 0.14s, transform .12s;
}
.filter-buttons button:hover, .filter-buttons button.active {
  background: var(--secondary);
  color: #fff;
  border-color: var(--highlight);
  transform: scale(1.04) rotate(-2.5deg);
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(96deg,#fbe9e6 0%, #fff 80%);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 18px #ff549a16;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #203354;
  border-radius: 23px;
  padding: 26px 22px;
  box-shadow: 0 3px 24px #ffb13c18;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 260px;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-family: var(--display-font);
  font-weight: 500;
  color: #203354;
  margin-bottom: 8px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial-meta span {
  font-size: 0.98rem;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--secondary);
}
.testimonial-meta img {
  width: 64px;
  border-radius: 6px;
}

/* CTA SECTIONS */
.cta, .cta-news, .cta-promo, .cta-contact {
  background: linear-gradient(95deg,#ffe4b1 0%, #f8ffc2 80%);
  padding: 44px 20px;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 2px 15px #ffeabb26;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ (Accordion style - currently static) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 14px #3ba8c81b;
  padding: 20px 18px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.faq-item:hover {
  box-shadow: 0 8px 22px #ffb13c37;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--secondary);
}

/* CONTACT PAGE */
.contact-details {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px #3ba8c80f;
  margin-bottom: 12px;
}
.address-map {
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 16px 0px;
}
.address-map span {
  font-weight: 600;
  font-size: 1.08rem;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 24px 0;
  margin-top: 52px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 180px;
}
.footer-brand img {
  width: 50px;
  margin-bottom: 4px;
}
.footer-brand span { font-size: 1.05rem; color: #fff; opacity: 0.75; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 4px;
  transition: color 0.13s;
}
.footer-nav a:hover { color: var(--highlight); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #ffe4b1;
  color: #203354;
  box-shadow: 0 -2px 18px #3BA8C829;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  z-index: 1100;
  font-family: var(--body-font);
  animation: cookie-slide-in 0.5s cubic-bezier(.52,1.62,.49,.94);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0.3; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 60%;
  font-size: 1rem;
  padding-right: 16px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  margin-right: 4px;
  margin-bottom: 4px;
  box-shadow: 0 2px 7px #3ba8c81f;
  transition: background 0.15s, color 0.14s, transform 0.12s;
}
.cookie-btn.accept {
  background: var(--positive);
}
.cookie-btn.reject {
  background: var(--danger);
}
.cookie-btn.settings {
  background: var(--highlight);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.93);
  background: #fff;
  color: var(--primary);
  border-radius: 24px;
  padding: 36px 28px 22px 28px;
  max-width: 97vw;
  width: 360px;
  box-shadow: 0 8px 52px #3ba8c843;
  z-index: 1200;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.37s cubic-bezier(.72,2.05,.33,.95);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-in {
  from { opacity: 0.2; transform: translate(-50%,-55%) scale(0.85); }
  to   { opacity: 1;   transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal-header {
  font-size: 1.29rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--display-font);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-family: var(--body-font);
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--secondary);
}
.cookie-category label span {
  color: #555;
  font-size: 0.94rem;
  opacity: 0.86;
}
.cookie-category .essential {
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn.close {
  background: #ffedc1;
  color: var(--danger);
  border: 1.7px solid var(--danger);
}
.cookie-modal .cookie-btn.close:hover { background: var(--danger); color: #fff; }
/* Hide scrollbar in modal on mobile */
.cookie-modal::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Utility Spacing Patterns*/
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/* Responsive: Mobile-First */
@media (max-width: 768px) {
  h1, .hero h1, .products-hero h1, .promo-hero h1, .news-hero h1, .support-hero h1, .thank-you-section h1, .contact-main h1 {
    font-size: 1.43rem;
  }
  h2, .features h2, .products-preview h2, .testimonials h2, .cta h2, .key-features h2, .categories h2, .product-grid h2 {
    font-size: 1.18rem;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-grid, .product-cards, .promo-cards, .testimonial-cards, .category-list {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .content-grid, .contact-details, .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .address-map {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .section, .features, .key-features, .testimonials, .footer, .cta, .cta-news, .cta-promo, .cta-contact {
    padding: 24px 4px;
    border-radius: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 8px;
    gap: 13px;
  }
  .cookie-banner-text { padding-right: 0px; }
}

@media (max-width: 370px) {
  .cta-button, .filter-buttons button, .cookie-btn {
    font-size: .95rem;
    padding: 7px 11px;
  }
}

/* Subtle playful micro-animation (static elements wiggle/float for style) */
@keyframes float-wiggle {
  0% { transform: translateY(0px) rotate(-1deg); }
  45% { transform: translateY(-5px) rotate(1deg); }
  85% { transform: translateY(3px) rotate(-2deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}
.product-card img, .promo-card img, .feature-item img, .category-item img {
  animation: float-wiggle 3.6s ease-in-out infinite alternate;
  will-change: transform;
}
.category-item:hover img {
  animation: float-wiggle 1.2s cubic-bezier(.49,1.8,.63,1) infinite alternate;
}

/* Playful hover bounce on clickable cards */
.category-item:active, .product-card:active, .promo-card:active {
  transform: scale(0.98) rotate(1.5deg);
}

/* Mark required input if present (future-proofing for forms) */
input:required, textarea:required {
  border-color: var(--danger);
}

/* Hide visually but keep accessible (for cookie modal close, hamburger, etc) */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Z-Index Fallback/Layers */
header, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner, .cookie-modal {
  z-index: 1000 !important;
}

/* Avoid any cards/text overlapping - all elements have gap/margin-bottom: 20px+ */
