html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background-color: #008080; /* Warm brown background matching the image */
}

#main {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background-color: #008080; /* Warm brown background */
  /* background-color: black; */
}

/* Elegant h1 styling */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-logo {
  height: 3rem;
  width: auto;
}

.burger-menu {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

/* Burger Icon Styling */
.burger-icon {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.burger-icon .bar {
  background-color: #F3E5AB; /* higher contrast on teal */
  height: 3px;
  width: 100%;
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 2px;
  transform-origin: center; /* crisper animation */
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/* Navigation Menu Styling */
.nav-menu {
  position: fixed;
  top: 0;
  left: -300px; /* Start off-screen */
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #008080, #E56717);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  overflow-y: auto;
  color: white;
}

.nav-menu.active {
  left: 0;
}

.nav-header {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F3E5AB;
  margin-bottom: 0.5rem;
}

.nav-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.nav-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links li a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #F3E5AB;
  padding-left: 2rem;
}

.nav-footer {
  padding: 1.5rem;
  margin-top: auto;
}

.nav-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.nav-feature i {
  font-size: 1.2rem;
  color: #F3E5AB;
}

.nav-feature span {
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
}

/* Active State for Burger Icon */
.burger-icon.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-2px, 6px);
}

.burger-icon.active .bar:nth-child(2) {
  opacity: 0;
}

.burger-icon.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-2px, -6px);
}

/* Mobile responsive */
@media (max-width: 799px) {
  .burger-icon {
    top: 15px;
    left: 15px;
    width: 28px;
    height: 23px;
    padding: 6px;
  }
  
  .nav-menu {
    width: 280px;
    left: -280px;
  }
  
  .nav-logo {
    font-size: 1.3rem;
  }
  
  .nav-links li a {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .burger-icon {
    top: 12px;
    left: 12px;
    width: 26px;
    height: 21px;
    padding: 5px;
  }
  
  .nav-menu {
    width: 260px;
    left: -260px;
  }
  
  .nav-header {
    padding: 1.5rem 1rem;
  }
  
  .nav-logo {
    font-size: 1.2rem;
  }
  
  .nav-subtitle {
    font-size: 0.8rem;
  }
}

.section {
  width: 100%;
  height: 100vh;
}

.section1 {
  background-image: url(./Assets2/magicpattern-mesh-gradient-1722524507236.webp);
  background-size: cover;
  background-position: center;
}

.section1 h1 {
  font-size: 22vw;
  color: #fff;
}

.section1 img {
  position: absolute;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  z-index: 100; /* Limit z-index to prevent overlap with content */
}

#leaf1 {
  left: 20%;
  top: 20%;
}

#fanta {
  width: 35vw;
}

#orange {
  top: 65%;
  left: 48%;
  width: 20vw;
}

#leaf2 {
  top: 55%;
  left: 75%;
  width: 10vw;
}

#orange2 {
  top: 10%;
  left: 35%;
  width: 15vw;
}

/* -------section-2 */
.section2 {
  flex-direction: row;
  height: auto; /* Changed from 100vh to auto to accommodate content */
  min-height: 150vh; /* Increased to ensure all content fits including button and contact */
  padding: 2rem 0;
  overflow: visible; /* Ensure content is not cut off */
}

.section2 .lft {
  width: 50%;
  height: 100%;
  /* background-color: red; */
}

.section2 .rght {
  width: 50%;
  height: auto; /* Changed from 100% to auto */
  align-items: start;
  gap: 5vh;
  padding: 0vw 10vw 0vw 0vw;
  /* background-color: orange; */
  position: relative;
  z-index: 5;
  overflow: visible; /* Ensure content is not cut off */
  min-height: auto; /* avoid redundant space */
}

/* Content Section - Moved below product pouch to prevent overlap */
.content-section {
  margin-top: 80vh; /* more teal space so hero clears before content */
  width: 100%;
  z-index: 1000 !important;
  position: relative;
  padding: 2rem 0 0 0;
  min-height: auto;
  background: transparent; /* remove paragraph box */
}

/* White landing plate so oranges never overlap text */
.content-section::before {
  content: "";
  position: absolute;
  top: -8rem; /* extend teal upward over hero overlap */
  left: 0;
  width: 100%;
  height: 12rem;
  background: #008080; /* teal extension */
  border-radius: 0;
  box-shadow: none;
  z-index: 0;
}

/* Button Container - Ensure button is visible */
.btn-container {
  position: relative;
  z-index: 1001 !important;
  margin: 2rem 0 1rem 0;
  padding: 0;
  text-align: center;
}

/* Main Heading */
.mainHeading {
  font-size: 3vw;
  color: #fcfcfc; /* White color for better contrast on teal background */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem; /* Increased margin */
  z-index: 1000;
  position: relative;
  margin-top: 2rem; /* Add top margin to prevent overlap */
}

/* Main Paragraph */
.mainP {
  font-size: 1vw;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.8;
  margin: 1.5rem 0 1.5rem 0;
  text-align: justify;
  max-width: 90%;
  word-wrap: break-word;
}

/* Product Features Bullet Points */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.product-features li {
  color: #F3E5AB; /* Vanilla color for contrast */
  font-size: 1.2vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  display: inline-block;
  margin-right: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.product-features { position: relative; z-index: 1; }
.btn-container { position: relative; z-index: 1; }
.contact-section { position: relative; z-index: 1; }

.product-features li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 229, 171, 0.3);
}

/* Contact Section */
.contact-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section h3 {
  color: #F3E5AB;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-info {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.contact-info strong {
  color: #F3E5AB;
}

/* Animated Shine Button - Enhanced visibility */
.btn {
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #008080; /* teal blue text per request */
  background: rgb(252, 145, 13);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  z-index: 999 !important;
  box-shadow: 0 4px 15px rgba(252, 145, 13, 0.4);
  display: inline-block;
  width: auto;
  min-height: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline-offset: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 145, 13, 0.6);
  outline-color: rgba(255, 255, 255, 0.5);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(252, 145, 13, 0.4);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.65), /* brighter shine for visibility */
    transparent
  );
}

.btn-anim::before {
  left: -150%;
  animation: shine 3.5s linear infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  12%, 100% {
    left: 100%;
    transition-property: left;
  }
}

/* Popup Modal Styles with Animations */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-modal.show {
  opacity: 1;
}

.popup-content {
  background: linear-gradient(135deg, #008080, #E56717);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.7) translateY(-50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-modal.show .popup-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.close-popup {
  color: #F3E5AB;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.close-popup:hover {
  color: white;
  transform: rotate(90deg);
}

.popup-content h2 {
  color: #F3E5AB;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

.popup-body h4 {
  color: #F3E5AB;
  margin: 1.5rem 0 0.8rem 0;
  font-size: 1.2rem;
}

.popup-body p, .popup-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.popup-body ul, .popup-body ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.popup-body strong {
  color: #F3E5AB;
}

/* Section-3 */

.section3 {
  gap: 5vw;
  overflow: hidden;
  max-width: 100vw; /* Ensure section doesn't exceed viewport width */
}

.section3 .card {
  width: 25vw;
  height: 70vh;
  background-color: #fff2e5;
  padding: 1vw;
  gap: 2vh;
  border-radius: 20px;
  max-width: 100%; /* Ensure card doesn't exceed container */
}

.img-div {
  position: relative;
  width: 100%;
  height: 80%;
  /* background-color: rebeccapurple; */
  overflow: hidden; /* Prevent image overflow */
}

.img-div img {
  position: absolute;
  width: 100%;
  max-width: 100%; /* Ensure images don't exceed container */
  height: auto;
}

.card .mainHeading {
  color: #000;
}

.card button {
  padding: 1vw 2vw;
  background-color: rgb(245, 142, 64);
}

/* Ensure all images stay within bounds */
#pineapple {
  width: 12vw;
  max-width: 100%;
}
#yellow {
  width: 18vw;
  max-width: 100%;
}

#pineapplecut,
#orangefruit {
  width: 30vw;
  max-width: 100%;
}
#resp-orange {
  width: 50vw;
  max-width: 100%;
}
#resp-fanta {
  width: 90vw;
  max-width: 100%;
}
#resp-orange,
#resp-fanta {
  display: none;
}

/* Additional overflow prevention */
.section {
  overflow: hidden;
  max-width: 100vw;
}

.section1 {
  overflow: hidden;
  max-width: 100vw;
}

/* Allow section2 content (including Buy Now) to overflow naturally */
.section2 {
  overflow: visible;
  max-width: 100vw;
}

/* Ensure all floating elements stay within bounds */
#leaf1, #leaf2, #orange, #orange2, #fanta {
  max-width: 100vw;
  overflow: hidden;
}

@media (max-width: 799px) {
  .cntr-nav {
    display: none;
  }
  .ri-menu-line {
    font-size: 7vw;
  }
  .section1 h1 {
    font-size: 32vw;
  }
  #fanta {
    width: 95vw;
  }
  #orange2 {
    top: 18%;
    left: 8%;
    width: 34vw; /* smaller for breathing room */
  }
  #leaf1 {
    top: 12%;
    left: 72%;
    width: 16vw; /* reduce leaf size */
  }
  #orange {
    top: 60%;
    left: 50%;
    width: 38vw; /* slightly smaller */
  }
  #leaf2 {
    top: 74%;
    left: 10%;
    width: 13vw; /* slightly smaller */
  }
  .section2 {
    flex-direction: column;
    height: auto; /* let content define height */
    min-height: 140vh;
    overflow: visible; /* ensure button is not clipped */
  }
  .magicpattern {
    width: 100%;
    height: 40%;
  }
  .section2 .lft {
    width: 100%;
    height: 40%;
  }
  .section2 .rght {
    width: 100%;
    padding: 10vw;
    height: auto; /* allow full content */
    overflow: visible;
  }
  
  /* Reduce top offset so content (and button) stays in view */
  .content-section {
    margin-top: 80vh; /* match desktop spacing for consistent clearance */
    min-height: auto;
    padding-top: 1.5rem;
  }
  .content-section::before {
    top: -4rem;
    width: 88%;
    height: 8rem;
  }
  .mainHeading {
    font-size: 8vw;
    margin-top: 2rem;
  }
  .mainP {
    font-size: 4.2vw;
    max-width: 95%;
  }
  .product-features li {
    font-size: 4vw;
    margin-bottom: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .contact-section h3 {
    font-size: 1.3rem;
  }
  .contact-info {
    font-size: 0.9rem;
  }
  .section2 .rght button {
    padding: 5vw 10vw;
  }
  .section3 {
    flex-direction: column;
    height: 210vh;
  }
  .section3 .card {
    width: 80vw;
    padding: 5vw;
  }
  .card button {
    padding: 5vw 10vw;
  }
  #pineapple {
    width: 37vw;
  }
  #pineapplecut,
  #orangefruit {
    width: 75vw;
  }
  #pineapplecut,
  #orangefruit {
    width: 75vw;
  }
  #yellow {
    width: 57vw;
  }
  #resp-orange,
  #resp-fanta {
    display: initial;
  }
  .popup-content {
    width: 90%;
    margin: 10% auto;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mainHeading {
    font-size: 6vw;
    margin-top: 1.5rem;
  }
  
  .mainP {
    font-size: 4vw;
    max-width: 98%;
  }
  
  .product-features li {
    font-size: 3.5vw;
    margin-bottom: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-right: 0.5rem;
  }
  
  .contact-section {
    padding: 1rem;
  }
  
  .contact-section h3 {
    font-size: 1.2rem;
  }
  
  .contact-info {
    font-size: 0.8rem;
  }
  
  .section2 .rght button {
    padding: 4vw 8vw;
  }
  
  .popup-content {
    width: 95%;
    margin: 15% auto;
    padding: 1rem;
  }
  
  .popup-content h2 {
    font-size: 1.5rem;
  }
}

/* Footer Styling */
.footer {
  background-color: #010203;
  color: #ffffff;
  padding: 40px 0 20px 0;
  text-align: center;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.quick-links h3 {
  color: #F3E5AB;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.quick-links ul li {
  margin-bottom: 12px;
}

.quick-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.quick-links ul li a:hover {
  color: #F3E5AB;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
}

/* Mobile responsive footer */
@media (max-width: 799px) {
  .footer {
    padding: 30px 0 15px 0;
  }
  
  .quick-links h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .quick-links ul li {
    margin-bottom: 10px;
  }
  
  .quick-links ul li a {
    font-size: 0.95rem;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 0 12px 0;
  }
  
  .quick-links h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .quick-links ul li {
    margin-bottom: 8px;
  }
  
  .quick-links ul li a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
  
  .copyright {
    margin-top: 25px;
    padding-top: 15px;
  }
  
  .copyright p {
    font-size: 0.8rem;
  }
}

/* Glassmorphism Policy Page Styles */
.glass-container, .policy-glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(1, 2, 3, 0.18);
  margin: 3vw auto 3vw auto;
  padding: 2.5rem 2rem;
  max-width: 700px;
  color: #010203;
  position: relative;
}

.glass-container h1, .policy-glass h1 {
  color: #008080;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.glass-container h2, .policy-glass h2 {
  color: #E56717;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.glass-container p, .glass-container li, .policy-glass p, .policy-glass li {
  color: #010203;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.glass-container ul, .glass-container ol, .policy-glass ul, .policy-glass ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.glass-container ul li, .policy-glass ul li {
  list-style: disc inside;
  font-weight: 500;
  background: rgba(243, 229, 171, 0.25);
  border-radius: 12px;
  padding: 0.4em 0.8em;
  margin-bottom: 0.4em;
}

.glass-container ol li, .policy-glass ol li {
  list-style: decimal inside;
  background: rgba(243, 229, 171, 0.18);
  border-radius: 12px;
  padding: 0.4em 0.8em;
  margin-bottom: 0.4em;
}

.glass-container strong, .policy-glass strong {
  color: #E56717;
  font-weight: 700;
}

.glass-container .back-link, .policy-glass .back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #008080;
  background: #F3E5AB;
  padding: 0.7em 1.5em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.glass-container .back-link:hover, .policy-glass .back-link:hover {
  background: #E56717;
  color: #fff;
}

/* Policy Pages: immersive background and animations */
.policy-page {
  /* animated mesh gradient background */
  background: radial-gradient(1200px 600px at 10% 10%, rgba(243,229,171,0.18), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(229,103,23,0.12), transparent 60%),
              radial-gradient(800px 500px at 30% 90%, rgba(255,255,255,0.08), transparent 60%),
              #008080;
  min-height: 100vh;
  position: relative;
}

.policy-page::before,
.policy-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at var(--x,70%) var(--y,30%), rgba(255,255,255,0.12), transparent 60%);
  mix-blend-mode: soft-light;
  animation: bgPulse 8s ease-in-out infinite alternate;
  opacity: 0.5;
}

@keyframes bgPulse {
  0% { --x: 70%; --y: 30%; opacity: 0.35; }
  100% { --x: 30%; --y: 70%; opacity: 0.6; }
}

/* Floating particles for depth */
.policy-page .policy-container::before {
  content: "";
  position: absolute;
  top: -30px; left: -30px; right: -30px; bottom: -30px;
  background-image: radial-gradient(rgba(243,229,171,0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
  filter: blur(0.2px);
}

/* Elevate glass container interactions */
.policy-page .glass-container,
.policy-page .policy-glass,
.policy-page .policy-container {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  will-change: transform;
}

.policy-page .glass-container:hover,
.policy-page .policy-glass:hover,
.policy-page .policy-container:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 18px 55px rgba(1,2,3,0.25);
}

/* Heading accents */
.policy-page .glass-container h1,
.policy-page .policy-glass h1,
.policy-page .policy-container h1 {
  position: relative;
}

.policy-page .glass-container h1::after,
.policy-page .policy-glass h1::after,
.policy-page .policy-container h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 90px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F3E5AB, #E56717);
  box-shadow: 0 6px 16px rgba(229,103,23,0.35);
}

/* Section reveal animation */
.reveal { opacity: 0; transform: translateY(14px) scale(0.98); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); transition: opacity .7s ease, transform .7s cubic-bezier(0.22, 1, 0.36, 1); }

/* Subtle card accent for lists */
.policy-page .glass-container ul li,
.policy-page .policy-glass ul li,
.policy-page .glass-container ol li,
.policy-page .policy-glass ol li {
  box-shadow: 0 2px 8px rgba(1,2,3,0.06);
}

/* Link and button effects */
.policy-page .back-link {
  position: relative;
  overflow: hidden;
}
.policy-page .back-link::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: translateX(-120%);
}
.policy-page .back-link:hover::before { animation: btnShine 1.3s ease; }
@keyframes btnShine { to { transform: translateX(120%); } }

/* Fine-tune typography for readability */
.policy-page .glass-container p,
.policy-page .glass-container li,
.policy-page .policy-glass p,
.policy-page .policy-glass li,
.policy-page .policy-container p,
.policy-page .policy-container li {
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

/* Policy pages: white text, spacing, and glass buttons */
.policy-page .glass-container p,
.policy-page .policy-glass p,
.policy-page .policy-container p,
.policy-page .glass-container li,
.policy-page .policy-glass li,
.policy-page .policy-container li {
  color: #FFFFFF;
  line-height: 1.75;
  margin-bottom: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.policy-page .glass-container ul,
.policy-page .glass-container ol,
.policy-page .policy-glass ul,
.policy-page .policy-glass ol,
.policy-page .policy-container ul,
.policy-page .policy-container ol {
  margin: 0 0 1.2rem 1.2rem;
}

/* Headings and links in teal/orange from shop */
.policy-page h1 { color: #F3E5AB; }
.policy-page h2, .policy-page h3 { color: #E56717; }
.policy-page a { color: #008080; }
.policy-page a:hover { color: #F3E5AB; }

/* Glass button styling inspired by shop */
.glass-button {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.glass-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.03);
}

/* Increase container padding for breathing room */
.policy-page .glass-container,
.policy-page .policy-glass,
.policy-page .policy-container {
  padding: 2.2rem 1.6rem;
}

/* Mobile tuning */
@media (max-width: 600px) {
  .policy-page .glass-container,
  .policy-page .policy-glass,
  .policy-page .policy-container {
    margin: 4vw auto;
  }
  .policy-page .glass-container p,
  .policy-page .policy-glass p,
  .policy-page .policy-container p,
  .policy-page .glass-container li,
  .policy-page .policy-glass li,
  .policy-page .policy-container li {
    line-height: 1.8;
    margin-bottom: 12px;
  }
  .policy-page .glass-container,
  .policy-page .policy-glass,
  .policy-page .policy-container {
    padding: 1.2rem 1rem;
  }
}
