/* ====================================================================
   VOLTARK SURGE - Scandinavian Clean Style
   Responsive, accessible, mobile-first, with mobile menu and cookie banner
   ==================================================================== */

/* ===== CSS RESET & BASES ===== */
html { box-sizing: border-box; font-size: 100%; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: #F9F9F9;
  color: #17213C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #16BFA6; text-decoration: none; transition: color .2s; word-break: break-word; }
a:hover, a:focus { color: #17213C; text-decoration: underline; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #17213C;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem;  line-height: 1.18; }
h3 { font-size: 1.25rem; line-height: 1.2; }
strong, b { font-weight: 600; color: #17213C; }
blockquote { font-style: italic; color: #16BFA6; background: #F3F8F7; border-left: 4px solid #16BFA6; padding: 16px 24px; border-radius: 0 8px 8px 0; margin: 24px 0; }

/* =============================
   LAYOUT
============================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(23,33,60,0.05);
}

/* Predefined Flexbox Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(23,33,60,0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 32px 20px 24px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(23,33,60,0.07);
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
}


/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: #FFF;
  box-shadow: 0 2px 18px 0 rgba(23,33,60,0.03);
  position: relative;
  z-index: 1002;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #17213C;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #16BFA6;
  border-bottom: 2px solid #16BFA6;
}
.btn-primary {
  background: #16BFA6;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 34px;
  box-shadow: 0 2px 8px 0 rgba(22,191,166,0.06);
  transition: background .2s, box-shadow .2s, color .2s;
  border: 2px solid #16BFA6;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-left: 14px;
 }
.btn-primary:hover, .btn-primary:focus {
  background: #17213C;
  color: #fff;
  border-color: #17213C;
  box-shadow: 0 6px 20px 0 rgba(22,191,166,0.11);
}
.btn-secondary {
  background: #FFF;
  color: #16BFA6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 28px;
  border: 2px solid #16BFA6;
  transition: background .2s, color .2s, border-color .2s;
  box-shadow: 0 2px 8px 0 rgba(22,191,166,0.04);
  display: inline-block;
 }
.btn-secondary:hover, .btn-secondary:focus {
  background: #16BFA6;
  color: #fff;
  border-color: #17213C;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #16BFA6;
  color: #FFF;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(22,191,166,0.09);
  margin-left: 12px;
  transition: background .2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #17213C;
  color: #FFF;
}

/* Hide on desktop, show on mobile */
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1023px) {
  .main-nav,
  .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}

/* =============================
   MOBILE MENU OVERLAY
============================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.68,-0.2,.27,1.25);
  box-shadow: -8px 0 28px 0 rgba(23,33,60,0.08);
  padding: 0 0 0 0;
  height: 100vh;
  width: 100vw;
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #16BFA6;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
  margin: 24px 20px 8px 0;
  box-shadow: 0 2px 12px 0 rgba(22,191,166,.16);
  transition: background .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #17213C;
  color: #fff;
}
.mobile-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0 40px 40px 40px;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #17213C;
  padding: 14px 0 11px 0;
  border-radius: 6px;
  transition: background .18s, color .18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #16BFA6;
  color: #fff;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   HERO / TOP SECTIONS
============================= */
#hero, #about-hero, #shop-hero, #new-hero, #bestseller-hero, #blog-hero, #thank-you {
  background: #F3F8F7;
  margin-bottom: 60px;
  padding: 48px 0 60px 0;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 3px 40px 0 rgba(23,33,60,0.05);
  text-align: left;
}
#hero h1, #about-hero h1, #shop-hero h1, #new-hero h1, #bestseller-hero h1, #blog-hero h1, #thank-you h1 {
  color: #17213C;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
#hero p, #about-hero p, #shop-hero p, #new-hero p, #bestseller-hero p, #blog-hero p, #thank-you p {
  font-size: 1.16rem;
  margin-bottom: 18px;
  color: #334055;
}

@media (max-width: 600px) {
  #hero, #about-hero, #shop-hero, #new-hero, #bestseller-hero, #blog-hero, #thank-you {
    padding: 32px 0 30px 0;
    border-radius: 0 0 20px 20px;
  }
  #hero h1, #about-hero h1, #shop-hero h1, #new-hero h1, #bestseller-hero h1, #blog-hero h1, #thank-you h1 {
    font-size: 1.45rem;
  }
}

/* =============================
   FEATURE & CARD GRIDS
============================= */
#features ul, #about-values ul, #shop-usp ul, #shop-categories ul, #new-items ul, #bestseller-grid ul, #blog-list ul, #collections .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  width: 100%;
}
#features ul li, #about-values ul li, #shop-usp ul li, #shop-categories ul li, #new-items ul li, #bestseller-grid ul li, #blog-list ul li, #collections .categories > div {
  background: #fff;
  border-radius: 13px;
  padding: 24px 22px 20px 22px;
  box-shadow: 0 2px 10px 0 rgba(23,33,60,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 370px;
  margin-bottom: 20px;
  align-items: flex-start;
  border: 1px solid #F0F2F3;
  transition: box-shadow .22s, transform .2s;
  position: relative;
}
#features ul li:hover, #about-values ul li:hover, #shop-usp ul li:hover, #shop-categories ul li:hover, #new-items ul li:hover, #bestseller-grid ul li:hover, #collections .categories > div:hover {
  box-shadow: 0 8px 32px 0 rgba(23,33,60,0.11);
  transform: translateY(-2px) scale(1.02);
}
#features ul li img, #about-values ul li img, #shop-usp ul li img, #collections .categories > div img {
  width: 42px; height: 42px; margin-bottom: 8px;
}
#features ul li h3, #collections .categories > div h3, #shop-categories ul li h3,
#about-values ul li strong, #shop-usp ul li p, #new-items ul li h3, #bestseller-grid ul li h3, #blog-list ul li h3 {
  font-family: 'Montserrat'; font-weight: 700; color: #17213C; margin-bottom: 8px; font-size: 1.09rem;
}
#features ul li p, #about-values ul li p, #shop-usp ul li p, #shop-categories ul li p, #new-items ul li p, #collections .categories > div p, #bestseller-grid ul li p, #blog-list ul li p {
  color: #334055; font-size: 1rem; margin-bottom: 0;
}

/* Categories section */
#collections .categories {
  width: 100%;
  gap: 20px;
}
#collections .categories > div {
  flex: 1 1 210px;
}

/* Shop categories navigation */
.shop-categories-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.shop-categories-menu a {
  padding: 7px 18px;
  background: #F6FAFA;
  border-radius: 20px;
  color: #16BFA6;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid #16BFA6;
  transition: background .17s, color .17s;
}
.shop-categories-menu a:hover, .shop-categories-menu a:focus {
  background: #16BFA6;
  color: #FFF;
}

/* Blog preview & CTA */
#blog-preview ul, #blog-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%; padding: 0;
}
#blog-preview ul li, #blog-list ul li {
  flex: 1 1 270px;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(23,33,60,0.07);
  padding: 22px 20px 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #F0F0F1;
}
#blog-preview ul li h3, #blog-list ul li h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #17213C;
}
#blog-preview ul li a, #blog-list ul li a {
  color: #16BFA6;
  font-size: 1rem;
  font-weight: 600;
}
#blog-preview ul li a:hover, #blog-list ul li a:hover {
  color: #17213C;
}

/* =============================
  TESTIMONIALS
============================= */
.testimonial-card {
  background: #F8FCFB;
  color: #17213C;
  border-left: 4px solid #16BFA6;
}
.testimonial-card .stars {
  color: #16BFA6;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #607085;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* =============================
   FOOTER
============================= */
footer {
  background: #F3F8F7;
  border-top: 2px solid #E9EFEF;
  padding: 38px 0 24px 0;
  margin-top: 40px;
  box-shadow: 0 -2px 28px 0 rgba(23,33,60,0.03);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 14px;
  align-items: flex-start;
  font-size: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  color: #17213C;
  flex: 1 1 260px;
}
.footer-nav, .footer-menu, .footer-contact, .footer-social, .footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-menu a {
  color: #16BFA6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-menu a:hover {
  color: #17213C;
  text-decoration: underline;
}
.footer-contact {
  flex: 1 1 230px;
  gap: 8px;
  font-size: 1rem;
  color: #334055;
  margin-top: 12px;
}
.footer-contact a {
  color: #16BFA6;
}
.footer-contact img{
  max-width: 50px;
}
.footer-contact a:hover {
  color: #17213C;
}
.footer-social {
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px; height: 28px; opacity: 0.92; transition: opacity .17s; }
.footer-social a:hover img {
  opacity: 1;
}
.footer-newsletter {
  font-size: 1rem;
  color: #334055;
  margin-top: 18px;
  max-width: 230px;
}

@media (max-width: 1023px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px 0;
  }
  .footer-brand, .footer-contact, .footer-newsletter { margin-top: 0; }
}

/* =============================
   PAGE UTILITY SECTIONS
============================= */
#main-cta, #shop-cta, #new-cta {
  text-align: center;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(23,33,60,0.08);
  margin-bottom: 48px;
  padding: 42px 10px;
}
#main-cta h2, #shop-cta h2, #new-cta h2 {
  font-size: 1.7rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
#main-cta a, #shop-cta a, #new-cta a {
  margin-top: 24px;
  display: inline-block;
}

/* =============================
   TEXT/IMAGE SECTIONS
============================= */
.text-section, .brand-contact-details, .google-map-mockup {
  margin-bottom: 24px;
  color: #334055;
}
.text-section a {
  color: #16BFA6;
  font-weight: 500;
  text-decoration: underline;
}
.google-map-mockup {
  padding: 18px 10px;
  border-radius: 8px;
  background: #EEF6F3;
  color: #6A778B;
  font-style: italic;
}
.brand-contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.brand-contact-details img {
  width: 21px; height: 22px; margin-right: 8px; vertical-align: middle; display: inline-block;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1090;
  width: 100%;
  box-shadow: 0 -2px 24px 0 rgba(23,33,60,0.10);
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 14px 18px 14px;
  gap: 18px;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(70px);
  transition: opacity .25s cubic-bezier(.62,-0.1,.33,1.14), transform .29s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner__text {
  color: #17213C;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  padding: 8px 16px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: #EEF6F3;
  color: #17213C;
  transition: background .17s, color .17s;
  cursor: pointer;
}
.cookie-banner .accept-all {
  background: #16BFA6;
  color: #fff;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #17213C;
}
.cookie-banner .reject-all {
  background: #fff;
  color: #17213C;
  border: 2px solid #D8E1E1;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #F9F9F9;
  color: #16BFA6;
}
.cookie-banner .cookie-settings {
  background: #F3F8F7;
  color: #16BFA6;
  border: 2px solid #16BFA6;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #16BFA6;
  color: #fff;
}

/* =============================
   COOKIE SETTINGS MODAL
============================= */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23,33,60,0.32);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.cookie-modal-overlay.visible {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 300px;
  max-width: 92vw;
  box-shadow: 0 16px 60px 0 rgba(23,33,60,0.18);
  padding: 40px 30px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal h2 {
  font-size: 1.41rem;
  color: #17213C;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #16BFA6;
  width: 20px; height: 20px;
}
.cookie-modal .cookie-sublabel {
  color: #6A778B;
  font-size: .97rem;
  margin-left: 30px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 14px; right: 16px;
  background: #16BFA6;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .16s;
}
.cookie-modal .close-modal-btn:hover, .cookie-modal .close-modal-btn:focus {
  background: #17213C;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 22px;
}

/* =============================
   MEDIA QUERIES & RESPONSIVE
============================= */
@media (max-width: 1040px) {
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  .footer-brand img { width: 46px; height:auto; }
}
@media (max-width: 750px) {
  .content-wrapper, .footer-contact, .footer-newsletter {
    gap: 10px;
  }
  .card-container,
  .content-grid,
  #features ul,
  #about-values ul,
  #shop-usp ul,
  #bestseller-grid ul,
  #collections .categories,
  #blog-preview ul,
  #blog-list ul,
  .shop-categories-menu {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch;
  }
  .main-nav { gap: 12px; }
  .section { padding: 24px 6px; margin-bottom: 26px; border-radius: 10px; }
}
@media (max-width: 600px) {
  .testimonial-card { padding: 17px 10px 17px 10px; }
  .footer-newsletter { font-size: 0.96rem; max-width: 100%; }
  .footer-contact { font-size: 0.97rem; }
  #main-cta, #shop-cta, #new-cta { padding: 18px 3px; border-radius: 12px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.07rem; }
  .footer-brand { font-size: 0.93rem; }
  .btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal button { font-size: .97rem; padding: 8px 12px; }
}

/* =============================
   FLEXBOX ORIENTATION BREAKPOINTS
 ============================= */
@media (max-width: 800px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 14px; }
}

/* =============================
   TYPOGRAPHY SCALE & UTILITIES
============================= */
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-48 { font-size: 48px; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-18 { margin-bottom: 18px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* =============================
   MISCELLANEOUS
============================= */
::-webkit-scrollbar { width: 8px; background: #F3F8F7; }
::-webkit-scrollbar-thumb { background: #E4EAEA; border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: #C9DFDF; }

/* =============================
   FOCUS STATES FOR ACCESSIBILITY
============================= */
a, button, .btn-primary, .btn-secondary {
  outline: none;
  transition: box-shadow .22s, border .13s;
}
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  box-shadow: 0 0 0 2px #16BFA6, 0 0 2px #FFF inset;
  border-radius: 6px;
}

/* =============================
   FORM/INPUTS (for modals, future-proofing)
============================= */
input[type="text"], input[type="email"], input[type="password"], textarea {
  border: 1.5px solid #D1DDE4;
  border-radius: 6px;
  padding: 8px 11px;
  font-size: 1rem;
  color: #17213C;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: none;
  margin-bottom: 18px;
}
input:focus, textarea:focus {
  border-color: #16BFA6;
  outline: none;
}

/* =============================
   OVERRIDES FOR KEY HTML SECTIONS
============================= */
#privacy-policy, #terms, #rodo, #cookies-policy {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 22px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px 0 rgba(23,33,60,0.07);
  color: #17213C;
}
#privacy-policy h2, #terms h2, #rodo h2, #cookies-policy h2 {
  font-size: 1.28rem;
  color: #16BFA6;
}
#privacy-policy ul, #terms ul, #rodo ul, #cookies-policy ul {
  margin-bottom: 18px;
  padding-left: 20px;
  list-style: disc inside none;
}
#privacy-policy li, #terms li, #rodo li, #cookies-policy li {
  margin-bottom: 6px; color: #334055;
}

/* =============================
   ORDER/THANK YOU PAGE
============================= */
#thank-you ul, #thank-you ol {
  margin-bottom: 16px;
  margin-left: 18px;
}
#thank-you li { color: #334055; }
#thank-you a {
  color: #16BFA6;
  font-weight: 600;
}
#thank-you a:hover { color: #17213C; }

/* Ensure NO elements overlap and all cards have 20px min margin */
.card, .testimonial-card, #features ul li, #about-values ul li, #shop-usp ul li, #blog-preview ul li, #blog-list ul li, #bestseller-grid ul li, #collections .categories > div, #new-items ul li {
  margin-bottom: 20px;
}
/* Columns/gaps are flex only everywhere (no grid, no columns used) */
