/* =========================================================
   Lush Savings - Vintage Retro Flexbox CSS
   Brand: Lush Savings | Style: vintage_retro
   ========================================================= */

/* --------------------
   FONT IMPORTS
--------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); /* For retro accent headings */

/* --------------------
   CSS VARIABLES
--------------------- */
:root {
  --primary: #204B57;
  --secondary: #A7C957;
  --accent: #F4F4F9;
  --retro-orange: #F4A259;
  --retro-red: #D7263D;
  --retro-yellow: #F7D716;
  --retro-blue: #3B9C9C;
  --retro-brown: #8B6F47;
  --retro-bg: #F9F6F1;
  --text-dark: #2B2B2B;
  --text-light: #FFF;
  --shadow: 0 4px 24px 0 rgba(32,75,87,0.08);
  --border-radius: 18px;
  --border-radius-sm: 8px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23F4A259" fill-opacity="0.05"/><circle cx="20" cy="20" r="4" fill="%23A7C957" fill-opacity="0.12"/></svg>');
}

/* --------------------
   RESET & BASE
--------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  background: var(--retro-bg);
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--retro-bg);
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius-sm);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--retro-orange);
  text-decoration: underline;
}

/* --------------------
   TYPOGRAPHY
--------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  margin: 0 0 18px 0;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: 'Pacifico', 'Montserrat', cursive;
  color: var(--retro-orange);
  text-shadow: 1px 2px 0 #fff, 2px 4px 0 #A7C957;
}
h2 {
  font-size: 2rem;
  color: var(--retro-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 3px dotted var(--retro-yellow);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  color: var(--retro-blue);
  font-family: 'Montserrat', Arial, sans-serif;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--primary);
}
p, ul, ol {
  margin: 0 0 18px 0;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* Retro list style */
ul, ol {
  padding-left: 1.5em;
}
ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 0.5em;
}
ul li:before {
  content: '\25A0';
  color: var(--retro-orange);
  font-size: 0.8em;
  position: absolute;
  left: -1.2em;
  top: 0.2em;
}

/* --------------------
   CONTAINER & LAYOUT
--------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pattern-url), var(--retro-bg);
  border-radius: var(--border-radius);
}

/* --------------------
   HEADER & NAVIGATION
--------------------- */
header {
  background: var(--primary);
  color: var(--text-light);
  padding: 0;
  box-shadow: 0 2px 16px 0 rgba(32,75,87,0.10);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: var(--retro-orange);
  color: var(--primary);
}
nav .btn-primary {
  background: var(--retro-orange);
  color: var(--primary);
  border: none;
  font-weight: 900;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: var(--border-radius-sm);
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 rgba(244,162,89,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav .btn-primary:hover, nav .btn-primary:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  box-shadow: 0 4px 16px 0 rgba(247,215,22,0.13);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px 0 rgba(244,162,89,0.10);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}

/* --------------------
   MOBILE MENU OVERLAY
--------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, var(--retro-orange) 60%, var(--retro-yellow) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 0 100vw rgba(32,75,87,0.10);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  margin: 24px 0 0 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  padding: 8px 0;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}

/* --------------------
   HERO SECTION
--------------------- */
.hero {
  background: linear-gradient(120deg, var(--retro-yellow) 0%, var(--retro-orange) 100%);
  padding: 60px 0 40px 0;
  border-bottom: 6px double var(--retro-brown);
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 40px 28px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.hero h1 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  color: var(--retro-orange);
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 #A7C957;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: var(--primary);
}
.hero .btn-primary {
  font-size: 1.1rem;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--retro-yellow);
  border-radius: var(--border-radius-sm);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 2px 12px 0 rgba(32,75,87,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: var(--retro-red);
  color: var(--text-light);
  box-shadow: 0 4px 24px 0 rgba(215,38,61,0.13);
}

/* --------------------
   FLEXBOX LAYOUTS
--------------------- */
.feature-grid, .article-cards, .testimonial-slider, .testimonial-list, .faq-list, .team-bios, .client-logos, .client-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div, .article-cards > div, .faq-list > div, .team-bios > div {
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover, .article-cards > div:hover, .faq-list > div:hover, .team-bios > div:hover {
  box-shadow: 0 8px 32px 0 rgba(32,75,87,0.13);
  transform: translateY(-4px) scale(1.03);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.text-image-section > div {
  flex: 1 1 320px;
  min-width: 220px;
}
.text-image-section img {
  max-width: 340px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px 0 rgba(32,75,87,0.10);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,75,87,0.13);
  transform: translateY(-4px) scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fffbe8;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 12px 0 rgba(32,75,87,0.07);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 420px;
  border-left: 8px solid var(--retro-orange);
  color: var(--primary);
  font-size: 1.08rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,75,87,0.13);
  border-left: 8px solid var(--retro-yellow);
}
.testimonial-card p {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--retro-brown);
  font-weight: 700;
}

.client-logos, .client-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
}
.client-logos img, .client-photos img {
  height: 48px;
  width: auto;
  border-radius: var(--border-radius-sm);
  background: #fff;
  padding: 6px 12px;
  box-shadow: 0 2px 8px 0 rgba(32,75,87,0.07);
}

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

/* FAQ List */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 0;
  color: var(--primary);
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #e5e5e5;
}
.pricing-table th {
  background: var(--retro-yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: var(--retro-brown);
}

/* Newsletter Section */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.categories-filter a {
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  padding: 4px 12px;
  margin-right: 6px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
}

/* Contact Details */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.contact-details li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--primary);
}
.map {
  margin-top: 18px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(32,75,87,0.10);
}

/* --------------------
   BUTTONS
--------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  background: var(--retro-orange);
  color: var(--primary);
  box-shadow: 0 2px 8px 0 rgba(244,162,89,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  box-shadow: 0 4px 16px 0 rgba(247,215,22,0.13);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--retro-blue);
  color: var(--text-light);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-red);
  color: var(--text-light);
}

/* --------------------
   FOOTER
--------------------- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 24px 0;
  border-top: 6px double var(--retro-yellow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--retro-orange);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact img {
  height: 36px;
  margin-bottom: 8px;
}
.footer-contact span {
  font-size: 0.98rem;
  color: var(--accent);
}

/* --------------------
   COOKIE CONSENT BANNER
--------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--retro-yellow) 70%, var(--retro-orange) 100%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 24px 0 rgba(32,75,87,0.10);
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  animation: cookie-slide-in 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  color: var(--primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin: 0;
}
.cookie-banner .accept {
  background: var(--retro-orange);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}
.cookie-banner .reject {
  background: var(--retro-red);
  color: var(--text-light);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}
.cookie-banner .settings {
  background: var(--retro-blue);
  color: var(--text-light);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,75,87,0.25);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.3s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe8;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 rgba(32,75,87,0.13);
  padding: 36px 28px 28px 28px;
  max-width: 420px;
  width: 90vw;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  animation: modal-slide-in 0.4s cubic-bezier(.77,0,.18,1);
  position: relative;
}
@keyframes modal-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--retro-orange);
  margin-bottom: 18px;
  border-bottom: 2px dotted var(--retro-yellow);
  padding-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--retro-orange);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category .always-on {
  color: var(--retro-brown);
  font-size: 0.98rem;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--retro-red);
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--primary);
}

/* --------------------
   RESPONSIVE DESIGN
--------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .article-cards, .testimonial-slider, .testimonial-list, .faq-list, .team-bios, .client-logos, .client-photos {
    gap: 16px;
  }
  .content-wrapper {
    padding: 24px 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 10px 8px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero .content-wrapper {
    padding: 28px 8px;
  }
  .feature-grid, .article-cards, .testimonial-slider, .testimonial-list, .faq-list, .team-bios, .client-logos, .client-photos {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
    padding: 18px 8px 14px 8px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
  .cookie-modal {
    padding: 22px 8px 18px 8px;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .hero .content-wrapper {
    padding: 14px 2px;
  }
  .section {
    padding: 18px 4px;
  }
}

/* --------------------
   MICRO-INTERACTIONS
--------------------- */
.btn-primary, .btn-secondary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal .close-modal {
  outline: none;
}
.btn-primary:active, .btn-secondary:active, .cookie-banner button:active, .mobile-menu-toggle:active, .mobile-menu-close:active, .cookie-modal .close-modal:active {
  transform: scale(0.97);
}

/* --------------------
   MISC RETRO ELEMENTS
--------------------- */
.section {
  box-shadow: 0 4px 24px 0 rgba(32,75,87,0.06);
  border: 2px solid var(--retro-yellow);
  background-blend-mode: lighten;
}
.content-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; left: -18px;
  width: 48px; height: 48px;
  background: var(--retro-yellow);
  border-radius: 50%;
  opacity: 0.13;
  z-index: 0;
}
.content-wrapper:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px; right: -18px;
  width: 38px; height: 38px;
  background: var(--retro-orange);
  border-radius: 50%;
  opacity: 0.09;
  z-index: 0;
}

/* Hide pseudo-decorations on mobile */
@media (max-width: 768px) {
  .content-wrapper:before, .content-wrapper:after {
    display: none;
  }
}

/* --------------------
   PRINT STYLES
--------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  .content-wrapper, .section { box-shadow: none !important; background: #fff !important; }
}
