/* 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: #F5F6FA;
  color: #1c2232;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* COLORS & VARIABLES */
:root {
  --primary: #20416A;
  --secondary: #F2A71B;
  --accent: #F5F6FA;
  --white: #fff;
  --black: #181C23;
  --dark-text: #1c2232;
  --light-grey: #EFF1F5;
  --border: #D6DBE9;
  --shadow: 0 2px 16px 0 rgba(32, 65, 106, 0.10);
  --radius: 18px;
  --radius-small: 10px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}

/* GENERAL CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 768px) {
  .section {
    padding: 25px 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* FLEX SPACING & ALIGNMENT RULES */
.card-container, .feature-grid, .categories-overview, .category-tiles, .new-product-list, .latest-news-snippets, .product-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-small);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px 0 rgba(32,65,106, 0.05);
  max-width: 460px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.categories-overview,
.category-tiles,
.new-product-list {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .card-container, .feature-grid, .categories-overview,
  .category-tiles, .product-listing, .new-product-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 1px 10px 0 rgba(32, 65, 106, 0.04);
  position: sticky;
  top: 0;
  z-index: 995;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.main-nav a {
  color: var(--primary);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 10px 26px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(32, 65, 106, 0.12);
  text-transform: uppercase;
  margin-left: 18px;
  letter-spacing: 0.07em;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 16px 0 rgba(32,65,106, 0.20);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary);
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width:768px) {
  header .container {
    padding: 14px 10px;
    min-height: 56px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--white);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.66,0,0.34,1);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--secondary);
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 15px 26px 10px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.mobile-nav a {
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(242,167,27,0.1);
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(140deg, var(--primary), var(--white) 90%);
  padding: 50px 0 30px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 240px;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 600px;
  color: var(--white);
  gap: 25px;
}
.hero h1 {
  color: var(--white);
  font-size: 2.4rem;
}
.hero p {
  color: var(--white);
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.hero .cta-btn {
  background: var(--secondary);
  color: var(--black);
  border-radius: 26px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero .container {
    min-height: 160px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    gap: 16px;
  }
}

/* FEATURE GRID & CARDS */
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  max-width: 330px;
  flex: 1;
  transition: box-shadow 0.16s, transform 0.18s;
  border: 1.2px solid var(--border);
}
.feature img {
  width: 46px;
  height: 46px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 22px 0 rgba(32,65,106,0.13);
  transform: translateY(-4px) scale(1.03);
  border-color: var(--primary);
}
@media (max-width: 900px) {
  .feature {
    min-width: 180px;
  }
}
@media (max-width: 655px) {
  .feature {
    min-width: none;
    width: 100%;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* CATEGORIES OVERVIEW / TILES */
.categories-overview, .category-tiles {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.category-item, .category-tile {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 12px 18px 12px;
  min-width: 175px;
  max-width: 210px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border: 1.2px solid var(--border);
  transition: box-shadow 0.19s, border-color 0.15s, transform 0.17s;
}
.category-item:hover, .category-tile:hover, .category-tile:focus-within {
  box-shadow: 0 6px 24px 0 rgba(32,65,106,0.12);
  border-color: var(--primary);
  transform: scale(1.03);
}
.category-item img, .category-tile img {
  width: 43px;
  height: 43px;
  margin-bottom: 6px;
}
.category-item a, .category-tile h3 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.category-tile p {
  font-size: 0.97rem;
  text-align: center;
  color: var(--dark-text);
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .categories-overview, .category-tiles {
    flex-direction: column;
    gap: 18px;
  }
  .category-item, .category-tile {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

/* PRODUCT LISTS AND ITEMS (SHOP) */
.product-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product-item {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.4px solid var(--primary);
  padding: 22px 16px 20px 16px;
  min-width: 220px;
  max-width: 290px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, border-color 0.13s, transform 0.16s;
}
.product-item img {
  width: 46px;
  height: 46px;
}
.product-item h3 {
  color: var(--primary);
}
.product-item p {
  text-align: center;
  font-size: 0.98rem;
}
.product-item .add-to-cart {
  margin-top: 8px;
  background: var(--secondary);
  color: var(--black);
  border: none;
  border-radius: 30px;
  padding: 7px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(32,65,106,0.10);
  transition: background 0.13s, color 0.16s;
}
.product-item .add-to-cart:hover, .product-item .add-to-cart:focus {
  background: var(--primary);
  color: var(--white);
}
.product-item:hover, .product-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(32,65,106,0.15);
  border-color: var(--secondary);
  transform: translateY(-4px) scale(1.04);
  z-index: 1;
}
@media (max-width:700px) {
  .product-listing {
    flex-direction: column;
    gap: 18px;
  }
  .product-item {
    max-width: 100%;
    min-width: unset;
  }
}

/* TESTIMONIALS / SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: var(--accent);
  border: 1.8px solid var(--primary);
  border-radius: var(--radius-small);
  box-shadow: 0 4px 20px rgba(32,65,106, 0.06);
  max-width: 360px;
  min-width: 220px;
  padding: 24px 18px 20px 18px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.testimonial-card p {
  color: var(--dark-text);
  font-size: 1.07rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (max-width: 700px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}

/* NEW PRODUCTS + NEWS SNIPPETS */
.new-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.new-product {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.2px solid var(--primary);
  padding: 20px 14px;
  min-width: 200px;
  max-width: 265px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: border-color 0.14s, box-shadow 0.16s, transform 0.19s;
}
.new-product img {
  width: 44px;
  height: 44px;
}
.new-product h3 {
  text-align: center;
  font-size: 1.11rem;
  margin-bottom: 6px;
}
.new-product p {
  text-align: center;
  font-size: 0.97rem;
}
.new-product:hover, .new-product:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 5px 18px rgba(32,65,106,0.13);
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .new-product-list {
    flex-direction: column;
    gap: 16px;
  }
  .new-product {
    max-width: 100%;
    min-width: unset;
  }
}

.latest-news-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.news-snippet {
  background: var(--white);
  border-radius: var(--radius-small);
  box-shadow: 0 2px 12px 0 rgba(32,65,106,0.08);
  border: 1px solid var(--border);
  padding: 16px 12px 12px 16px;
  max-width: 320px;
  flex: 1 1 320px;
}
.news-snippet h4 {
  margin-bottom: 8px;
  color: var(--primary);
  text-transform: uppercase;
}
.news-snippet p a {
  color: var(--secondary);
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .latest-news-snippets {
    flex-direction: column;
    gap: 16px;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 22px 0;
  font-size: 1rem;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--white);
  text-decoration: underline;
}
footer p {
  margin-bottom: 8px;
  color: var(--white);
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px 28px;
  flex-wrap: wrap;
  color: var(--accent);
  font-size: 0.99rem;
}
.contact-info img {
  width: 17px;
  height: 17px;
  margin-right: 3px;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .contact-info {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  footer .container {
    gap: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* VALUES LIST (ABOUT PAGE) */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.045rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: var(--radius-small);
  padding: 7px 12px;
}
.values-list img {
  width: 26px;
  height: 26px;
}

/* FAQ ACCORDION (GUIDES PAGE) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.faq-item {
  background: var(--accent);
  border: 1.2px solid var(--primary);
  border-radius: var(--radius-small);
  box-shadow: 0 2px 10px rgba(32,65,106,0.06);
  padding: 15px 16px 8px 16px;
  transition: box-shadow 0.14s, border 0.16s;
}
.faq-item h4 {
  font-size: 1.07rem;
  margin-bottom: 0px;
  cursor: pointer;
  color: var(--primary);
  user-select: none;
}
.faq-answer {
  margin-top: 7px;
  font-size: 1rem;
  color: var(--dark-text);
}

/* GUIDE SNIPPET */
.guide-snippet {
  background: var(--white);
  border-radius: var(--radius-small);
  box-shadow: 0 2px 12px rgba(32,65,106,0.10);
  border: 1px solid var(--border);
  padding: 15px 14px 10px 15px;
  margin-bottom: 14px;
}
.guide-snippet h3 {
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.guide-snippet p a {
  color: var(--secondary);
  text-decoration: underline;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -2px 24px rgba(32,65,106,0.07);
  border-radius: 16px 16px 0 0;
  padding: 26px 22px 22px 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 0.99rem;
  color: var(--dark-text);
  animation: cookie-slideup 0.45s cubic-bezier(.33,1.21,.53,1.01);
}
@keyframes cookie-slideup {
  0% { transform: translate(-50%, 90px); opacity: 0; }
  100% { transform: translateX(-50%); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-accept, .cookie-reject {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat',Arial,sans-serif;
  padding: 8px 22px;
  font-size: 1.01rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-accept {
  background: var(--secondary);
  color: var(--black);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-reject {
  background: var(--primary);
  color: var(--white);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--secondary);
  color: var(--black);
}
.cookie-settings {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
@media (max-width: 640px) {
  .cookie-banner {
    max-width: 98vw;
    border-radius: 11px 11px 0 0;
    padding: 16px 8px 14px 9px;
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL/POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10010;
  inset: 0 0 0 0;
  background: rgba(32,65,106,0.34);
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fadein 0.24s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(32,65,106,0.23);
  padding: 32px 28px 26px 28px;
  max-width: 420px;
  width: 94vw;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: var(--accent);
  border-radius: 20px;
  border: 1px solid var(--primary);
  position: relative;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 1.6px;
  left: 2px;
  width: 19px;
  height: 19px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.18s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  left: 23px;
  background: var(--secondary);
}
.cookie-category.disabled label {
  color: #888;
}
.cookie-category.disabled .cookie-toggle {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* THANK YOU PAGE */
.thank-you-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.thank-you-section p {
  font-size: 1.01rem;
}

/* Misc spacing for main content sections */
main > section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  main > section {
    margin-bottom: 32px;
    padding: 22px 0 0 0;
  }
}

/* SMALL ANIMATIONS / INTERACTIONS */
.card, .feature, .category-item, .category-tile, .product-item,
.testimonial-card, .new-product, .faq-item, .guide-snippet, .news-snippet {
  transition: box-shadow 0.18s, border 0.18s, transform 0.17s;
}
.cta-btn, .add-to-cart, .cookie-accept, .cookie-reject, .cookie-settings, .cookie-modal-close{
  transition: background 0.16s, color 0.15s, box-shadow 0.16s;
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 7px;
}

/* UTILITIES */
.text-section {
  margin-bottom: 24px;
}
.text-center {
  text-align: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* END */
