@font-face {
  font-family: Product Sans;
  src: url(Fonts/Product\ Sans\ Regular.ttf);
}
@font-face {
  font-family: Product Sans B;
  src: url(Fonts/Product\ Sans\ Bold.ttf);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Product Sans;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}

#main {
  width: 100%;
  background-color: #f97316;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 10vh;
  padding: 0 10vw;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.1);
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-img {
  height: 35px;
  width: auto;
}

.logo-text {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-family: Product Sans B;
  color: #fff;
}

nav a, nav i {
  font-size: clamp(0.8rem, 1.2vw, 1.5rem);
  text-decoration: none;
  color: #fff;
}

.cntr-nav {
  display: flex;
  gap: clamp(2vw, 3vw, 5vw);
}

nav i {
  font-size: clamp(1rem, 2vw, 2rem);
  cursor: pointer;
  display: none;
}

/* ---------- CAROUSEL ---------- */
.product-section {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(150deg, #f4d860, #f4d860);
  overflow: hidden;
  transition: background-color 1.5s ease;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

/* Reduced font size for carousel headings */
.slide h1 {
  font-size: clamp(4rem, 20vw, 30rem);
  font-family: Product Sans B;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Background colors for each slide */
#slide-mango {
  background: linear-gradient(150deg, #f4d860, #f4d860);
}

#slide-lemon {
  background: linear-gradient(150deg, #91a639, #769008);
}

#slide-berry {
  background: linear-gradient(150deg, #c04993, #9d7f30);
}

/* Images */
.can, .fruit, .fruit-cut, .leaf-left-1, .leaf-left-2, .leaf2, .leaf3 {
  position: absolute;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.can {
  width: clamp(250px, 65%, 650px);
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Mango slide positioning */
#slide-mango .fruit-cut {
  top: 10%;
  left: 32%;
  width: clamp(120px, 18%, 600px);
  z-index: 1;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-mango .fruit {
  width: clamp(120px, 22%, 500px);
  z-index: 3;
  top: 55%;
  right: 30%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-mango .leaf-left-1 {
  top: 15%;
  left: 5%;
  width: clamp(30px, 10%, 200px);
  transform: rotate(30deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-mango .leaf-left-2 {
  top: 65%;
  left: 8%;
  width: clamp(35px, 12%, 250px);
  transform: rotate(-20deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-mango .leaf2 {
  top: 70%;
  left: 80%;
  width: clamp(30px, 10%, 200px);
  transform: rotate(-90deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-mango .leaf3 {
  top: 10%;
  right: 0%;
  width: clamp(45px, 16%, 350px);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* Lemon slide positioning */
#slide-lemon .fruit-cut {
  top: 15%;
  left: 28%;
  width: clamp(100px, 15%, 300px);
  z-index: 1;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-lemon .fruit {
  width: clamp(110px, 20%, 400px);
  z-index: 3;
  top: 60%;
  right: 25%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-lemon .leaf-left-1 {
  top: 20%;
  left: 5%;
  width: clamp(35px, 12%, 250px);
  transform: rotate(45deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-lemon .leaf-left-2 {
  top: 70%;
  left: 7%;
  width: clamp(40px, 13%, 270px);
  transform: rotate(-15deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-lemon .leaf2 {
  top: 75%;
  left: 75%;
  width: clamp(30px, 8%, 160px);
  transform: rotate(-120deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-lemon .leaf3 {
  top: 15%;
  right: 5%;
  width: clamp(40px, 15%, 300px);
  transform: rotate(15deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* Berry slide positioning */
#slide-berry .fruit-cut {
  top: 12%;
  left: 30%;
  width: clamp(90px, 16%, 320px);
  z-index: 1;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-berry .fruit {
  width: clamp(115px, 21%, 450px);
  z-index: 3;
  top: 58%;
  right: 28%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-berry .leaf-left-1 {
  top: 18%;
  left: 6%;
  width: clamp(38px, 13%, 270px);
  transform: rotate(60deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-berry .leaf-left-2 {
  top: 68%;
  left: 8%;
  width: clamp(42px, 14%, 290px);
  transform: rotate(-30deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-berry .leaf2 {
  top: 72%;
  left: 78%;
  width: clamp(32px, 9%, 180px);
  transform: rotate(-75deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

#slide-berry .leaf3 {
  top: 12%;
  right: 3%;
  width: clamp(48px, 16%, 330px);
  transform: rotate(-10deg);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* ---------- DOTS ---------- */
.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1vw;
  z-index: 10;
}
.dot {
  width: clamp(8px, 1vw, 16px);
  height: clamp(8px, 1vw, 16px);
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.dot.active {
  opacity: 1;
  transform: scale(1.3);
}

/* ---------- FLAVOR SECTIONS ---------- */
.flavor-section {
  min-height: 100vh;
  padding: 10vh 10vw;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mango-section {
  background: linear-gradient(135deg, #f4d860, #f9a826);
}

.lemon-section {
  background: linear-gradient(135deg, #91a639, #c0d72c);
}

.berry-section {
  background: linear-gradient(135deg, #c04993, #e84393);
}

.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 5vw;
}

.text-content {
  flex: 1;
  color: white;
  z-index: 2;
}

.text-content h2 {
  font-size: clamp(3rem, 3vw, 5rem);
  font-family: Product Sans B;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.text-content p {
  font-size: clamp(1.2rem, 0.5vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-button {
  background: white;
  color: #f97316;
  border: none;
  padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Product Sans B;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.image-content img {
  width: clamp(250px, 50vw, 600px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* ---------- FLOATING ELEMENTS FOR SECTIONS ---------- */
.floating-element {
  position: absolute;
  z-index: 1;
  opacity: 0.7;
}

.mango-section .floating-element {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.lemon-section .floating-element {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.berry-section .floating-element {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* ---------- FOOTER ---------- */
footer {
  background: #222;
  color: white;
  padding: 5rem 10vw 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-logo p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.link-group h3 {
  margin-bottom: 1rem;
  font-family: Product Sans B;
}

.link-group a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.link-group a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #aaa;
}

/* ---------- RESPONSIVENESS ---------- */
/* Extra small devices (200px - 576px) */
@media (max-width: 576px) {
  nav {
    height: 8vh;
    padding: 0 5vw;
  }
  
  .logo {
    gap: 0.5rem;
  }
  
  .logo-text {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  
  .cntr-nav { 
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
  }
  
  .cntr-nav.active {
    display: flex;
  }
  
  nav i {
    display: block;
  }
  
  /* Further reduced font size for carousel headings on small screens */
  .slide h1 {
    font-size: clamp(3rem, 15vw, 12rem);
  }
  
  .can {
    width: clamp(180px, 75%, 450px);
  }
  
  .fruit-cut, .fruit {
    width: clamp(60px, 30%, 250px);
  }
  
  .leaf-left-1, .leaf-left-2, .leaf2, .leaf3 {
    width: clamp(30px, 20%, 150px);
  }
  
  /* Mobile positioning adjustments */
  #slide-mango .fruit-cut,
  #slide-lemon .fruit-cut,
  #slide-berry .fruit-cut {
    top: 18%;
    left: 20%;
  }
  
  #slide-mango .fruit,
  #slide-lemon .fruit,
  #slide-berry .fruit {
    top: 65%;
    right: 15%;
  }
  
  .flavor-section {
    padding: 8vh 5vw;
  }
  
  .text-content h2 {
    margin-bottom: 1.5rem;
  }
  
  .logo-text {
    display: none; /* Hide text on very small screens */
  }
}

/* Small devices (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  nav {
    padding: 0 5vw;
  }
  
  .cntr-nav { 
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
  }
  
  .cntr-nav.active {
    display: flex;
  }
  
  nav i {
    display: block;
  }
  
  .slide h1 {
    font-size: clamp(4rem, 18vw, 20rem);
  }
  
  /* Mobile positioning adjustments */
  #slide-mango .fruit-cut,
  #slide-lemon .fruit-cut,
  #slide-berry .fruit-cut {
    top: 15%;
    left: 25%;
  }
  
  #slide-mango .fruit,
  #slide-lemon .fruit,
  #slide-berry .fruit {
    top: 60%;
    right: 20%;
  }
  
  .flavor-section {
    padding: 10vh 5vw;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Medium devices (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  nav {
    padding: 0 5vw;
  }
  
  .cntr-nav {
    gap: 4vw;
  }
  
  .section-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .text-content p {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .lemon-section .section-content {
    flex-direction: column-reverse;
  }
}

/* Large devices (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  nav {
    padding: 0 5vw;
  }
  
  .cntr-nav {
    gap: 4vw;
  }
  
  .flavor-section {
    padding: 10vh 5vw;
  }
}

/* Extra large devices (1201px - 2000px) */
@media (min-width: 1201px) and (max-width: 2000px) {
  .slide h1 {
    font-size: clamp(4.5rem, 22vw, 35rem);
  }
}

/* Ultra large devices (2001px - 3000px) */
@media (min-width: 2001px) and (max-width: 3000px) {
  .slide h1 {
    font-size: clamp(5rem, 25vw, 40rem);
  }
  
  .can {
    width: clamp(350px, 55%, 1000px);
  }
  
  .fruit-cut, .fruit {
    width: clamp(100px, 18%, 550px);
  }
  
  .leaf-left-1, .leaf-left-2, .leaf2, .leaf3 {
    width: clamp(60px, 12%, 400px);
  }
  
  .flavor-section {
    padding: 15vh 15vw;
  }
}

/* Extra ultra large devices (3001px - 5000px) */
@media (min-width: 3001px) {
  .slide h1 {
    font-size: clamp(6rem, 28vw, 45rem);
  }
  
  .can {
    width: clamp(450px, 65%, 1300px);
  }
  
  .flavor-section {
    padding: 20vh 20vw;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .product-section {
    height: 150vh;
  }
  
  .slide h1 {
    font-size: clamp(3rem, 15vw, 20rem);
  }
  
  .can {
    width: clamp(200px, 40%, 600px);
  }
  
  #slide-mango .fruit-cut,
  #slide-lemon .fruit-cut,
  #slide-berry .fruit-cut {
    top: 5%;
  }
  
  #slide-mango .fruit,
  #slide-lemon .fruit,
  #slide-berry .fruit {
    top: 70%;
  }
}


/* ---------- WHY RETHYM SECTION ---------- */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');
@import url(https://fonts.googleapis.com/css?family=Righteous);

.why-rethym-section {
  min-height: 100vh;
  padding: 10vh 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #f9a826);
  position: relative;
  overflow: hidden;
}

.why-rethym-container {
  max-width: 1400px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

/* Main Heading - Keeping your exact template */
.why-rethym-heading {
  display: inline-block;
  color: white;
  font-family: 'Righteous', serif;
  font-size: clamp(4rem, 12vw, 12rem);
  text-shadow: .03em .03em 0 hsla(230,40%,50%,1);
  margin-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
}

.why-rethym-heading:after {
  content: attr(data-shadow);
  position: absolute;
  top: .06em; 
  left: .06em;
  z-index: -1;
  text-shadow: none;
  background-image:
    linear-gradient(
      45deg,
      transparent 45%,
      hsla(48,20%,90%,1) 45%,
      hsla(48,20%,90%,1) 55%,
      transparent 0
    );
  background-size: .05em .05em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shad-anim 15s linear infinite;
}

@keyframes shad-anim {
  0% {background-position: 0 0}
  100% {background-position: 100% -100%}
}

.why-rethym-content {
  margin-top: clamp(2rem, 5vw, 5rem);
}

/* Tagline */
.tagline h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.tagline span {
  display: block;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 0.5rem;
}

/* Artistic Features Grid */
.artistic-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 2rem;
}

/* Artistic Box Styles */
.artistic-box {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: clamp(2rem, 3vw, 3rem);
  box-shadow: 
    8px 8px 0px rgba(0, 0, 0, 0.1),
    inset 2px 2px 0px rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: 'Gochi Hand', cursive;
  transform: rotate(-1deg);
  border: 3px solid #333;
}

.artistic-box:nth-child(even) {
  transform: rotate(1deg);
}

.artistic-box:nth-child(3n) {
  transform: rotate(-2deg);
}

.artistic-box:hover {
  transform: rotate(0deg) scale(1.05) !important;
  box-shadow: 
    12px 12px 0px rgba(0, 0, 0, 0.15),
    inset 2px 2px 0px rgba(255, 255, 255, 0.8);
}

/* Hand-drawn border effect */
.hand-drawn-border {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #333;
  border-radius: 30px;
  pointer-events: none;
  animation: borderWiggle 3s ease-in-out infinite;
}

.hand-drawn-border::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 35px;
  pointer-events: none;
}

@keyframes borderWiggle {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(1px) translateY(-1px); }
  50% { transform: translateX(-1px) translateY(1px); }
  75% { transform: translateX(1px) translateY(1px); }
}

/* Box Image */
.box-image {
  margin-bottom: 1.5rem;
}

.hand-drawn-img {
  font-size: clamp(3rem, 6vw, 4rem);
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.2));
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* Box Content */
.box-content {
  position: relative;
  z-index: 2;
}

.main-text {
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.sub-text {
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #f97316;
  margin-bottom: 0.3rem;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.desc-text {
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #666;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

/* Individual box styling */
.box-1 {
  background: linear-gradient(135deg, #fff9c4, #fff59d);
  border-color: #f9a825;
}

.box-2 {
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  border-color: #66bb6a;
}

.box-3 {
  background: linear-gradient(135deg, #ffcdd2, #ef9a9a);
  border-color: #ef5350;
}

.box-4 {
  background: linear-gradient(135deg, #d1c4e9, #b39ddb);
  border-color: #7e57c2;
}

/* Doodle decorations */
.artistic-box::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid #333;
  border-radius: 50%;
  top: -15px;
  right: -15px;
  animation: doodleSpin 4s linear infinite;
}

.artistic-box::after {
  content: '✏️';
  position: absolute;
  font-size: 1.2rem;
  bottom: -10px;
  left: -10px;
  animation: doodleBounce 2s ease-in-out infinite;
}

@keyframes doodleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes doodleBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* ---------- RESPONSIVENESS ---------- */

/* Extra small devices (200px - 576px) */
@media (max-width: 576px) {
  .why-rethym-section {
    padding: 8vh 5vw;
    min-height: 80vh;
  }
  
  .artistic-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .artistic-box {
    padding: 1.5rem;
    transform: rotate(0deg) !important;
  }
  
  .artistic-box:hover {
    transform: scale(1.03) !important;
  }
  
  .why-rethym-heading {
    margin-bottom: 2rem;
  }
  
  .tagline h2 {
    margin-bottom: 2rem;
  }
}

/* Small devices (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .why-rethym-section {
    padding: 10vh 5vw;
  }
  
  .artistic-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Medium devices (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .why-rethym-section {
    padding: 10vh 5vw;
  }
  
  .artistic-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .why-rethym-section {
    padding: 10vh 5vw;
  }
  
  .artistic-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra large devices (1201px - 2000px) */
@media (min-width: 1201px) and (max-width: 2000px) {
  .artistic-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ultra large devices (2001px - 3000px) */
@media (min-width: 2001px) and (max-width: 3000px) {
  .why-rethym-section {
    padding: 15vh 15vw;
  }
  
  .artistic-features {
    gap: 3rem;
  }
  
  .artistic-box {
    padding: 3rem 2rem;
  }
}

/* Extra ultra large devices (3001px - 5000px) */
@media (min-width: 3001px) {
  .why-rethym-section {
    padding: 20vh 20vw;
  }
  
  .artistic-features {
    gap: 4rem;
  }
  
  .artistic-box {
    padding: 4rem 3rem;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .why-rethym-section {
    min-height: 150vh;
  }
  
  .artistic-features {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ---------- WHY RETHYM ROTATING TEXT SECTION ---------- */
@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap');

.why-rethym-rotating {
  min-height: 80vh;
  width: 100%;
  background: #769008;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: -10vh -10vh;
}

.main {
  height: 80vh;
  width: 100%;  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-rethym-rotating h1 {
  text-align: center;
  text-transform: uppercase;
  color: #f4efef;
  font-size: clamp(4rem, 10vw, 8rem);
  font-family: 'Arvo', serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}


.roller {
  height: 6rem; /* Increased height for larger text */
  line-height: 6rem; /* Increased line height */
  position: relative;
  overflow: hidden; 
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f4d860; /* Your primary yellow color */
  min-width: 400px; /* Ensure enough space for ANTI-INFLAMMATORY */
}

#spare-time {
  font-size: 2rem; /* Increased font size */
  font-style: italic;
  letter-spacing: 0.3rem;
  margin-top: 0;
  color: #c04993; /* Your berry color */
  font-weight: 600;
}

.roller #rolltext {
  position: absolute;
  top: 0;
  animation: slide 6s infinite;  
  font-weight: 700;
  text-align: center;
  font-size: 50px;
  width: 100%;
}

/* Ensure ANTI-INFLAMMATORY stays on one line */
.roller #rolltext br {
  display: block;
  content: "";
  margin: 0;
}

@keyframes slide {
  0% {
    top: 0;
  }
  23% {
    top: 0; /* Stay on 100% NATURAL */
  }
  25% {
    top: -6rem; /* Move to ANTI-INFLAMMATORY */   
  }
  48% {
    top: -6rem; /* Stay on ANTI-INFLAMMATORY */
  }
  50% {
    top: -12rem; /* Move to NON-ARTIFICIAL */
  }
  73% {
    top: -12rem; /* Stay on NON-ARTIFICIAL */
  }
  75% {
    top: -18rem; /* Move to GUT HEALTHY */
  }
  98% {
    top: -18rem; /* Stay on GUT HEALTHY */
  }
  100% {
    top: -18rem; /* End on GUT HEALTHY */
  }
}

/* ---------- RESPONSIVENESS ---------- */

/* Extra small devices (200px - 576px) */
@media screen and (max-width: 576px) {
  .why-rethym-rotating h1 {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .roller {
    height: 3.5rem; 
    line-height: 3.5rem;  
    min-width: 280px;
  }
  
  #spare-time {
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
  }
  
  .roller #rolltext {  
    animation: slide-mob 6s infinite;  
  }
  
  @keyframes slide-mob {
    0% {
      top: 0;
    }
    23% {
      top: 0;
    }
    25% {
      top: -3.5rem;    
    }
    48% {
      top: -3.5rem;
    }
    50% {
      top: -7rem;
    }
    73% {
      top: -7rem;
    }
    75% {
      top: -10.5rem;
    }
    98% {
      top: -10.5rem;
    }
    100% {
      top: -10.5rem;
    }
  }
}

/* Small devices (577px - 768px) */
@media screen and (min-width: 577px) and (max-width: 768px) {
  .why-rethym-rotating h1 {
    font-size: 3.5rem;
  }
  
  .roller {
    height: 4.5rem;
    line-height: 4.5rem;
    min-width: 350px;
  }
  
  @keyframes slide {
    0% {
      top: 0;
    }
    23% {
      top: 0;
    }
    25% {
      top: -4.5rem;    
    }
    48% {
      top: -4.5rem;
    }
    50% {
      top: -9rem;
    }
    73% {
      top: -9rem;
    }
    75% {
      top: -13.5rem;
    }
    98% {
      top: -13.5rem;
    }
    100% {
      top: -13.5rem;
    }
  }
}

/* Medium devices (769px - 992px) */
@media screen and (min-width: 769px) and (max-width: 992px) {
  .why-rethym-rotating h1 {
    font-size: 4.5rem;
  }
  
  .roller {
    height: 5rem;
    line-height: 5rem;
  }
}

/* Large devices (993px - 1200px) */
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .why-rethym-rotating h1 {
    font-size: 5rem;
  }
  
  .roller {
    height: 5.5rem;
    line-height: 5.5rem;
  }
}

/* Extra large devices (1201px - 2000px) */
@media screen and (min-width: 1201px) and (max-width: 2000px) {
  .why-rethym-rotating h1 {
    font-size: 6.5rem;
  }
  
  .roller {
    height: 7rem;
    line-height: 7rem;
    min-width: 500px;
  }
  
  @keyframes slide {
    0% {
      top: 0;
    }
    23% {
      top: 0;
    }
    25% {
      top: -7rem;    
    }
    48% {
      top: -7rem;
    }
    50% {
      top: -14rem;
    }
    73% {
      top: -14rem;
    }
    75% {
      top: -21rem;
    }
    98% {
      top: -21rem;
    }
    100% {
      top: -21rem;
    }
  }
}

/* Ultra large devices (2001px - 3000px) */
@media screen and (min-width: 2001px) and (max-width: 3000px) {
  .why-rethym-rotating h1 {
    font-size: 8rem;
  }
  
  .roller {
    height: 8.5rem;
    line-height: 8.5rem;
    min-width: 600px;
  }
  
  @keyframes slide {
    0% {
      top: 0;
    }
    23% {
      top: 0;
    }
    25% {
      top: -8.5rem;    
    }
    48% {
      top: -8.5rem;
    }
    50% {
      top: -17rem;
    }
    73% {
      top: -17rem;
    }
    75% {
      top: -25.5rem;
    }
    98% {
      top: -25.5rem;
    }
    100% {
      top: -25.5rem;
    }
  }
}

/* Extra ultra large devices (3001px - 5000px) */
@media screen and (min-width: 3001px) {
  .why-rethym-rotating h1 {
    font-size: 10rem;
  }
  
  .roller {
    height: 10rem;
    line-height: 10rem;
    min-width: 800px;
  }
  
  @keyframes slide {
    0% {
      top: 0;
    }
    23% {
      top: 0;
    }
    25% {
      top: -10rem;    
    }
    48% {
      top: -10rem;
    }
    50% {
      top: -20rem;
    }
    73% {
      top: -20rem;
    }
    75% {
      top: -30rem;
    }
    98% {
      top: -30rem;
    }
    100% {
      top: -30rem;
    }
  }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .why-rethym-rotating {
    min-height: 150vh;
  }
  
  .main {
    height: 150vh;
  }
  
  .why-rethym-rotating h1 {
    font-size: 3rem;
  }
  
  .roller {
    height: 3.5rem;
    line-height: 3.5rem;
  }
}


/* ---------- REMIX SECTION ---------- */
.remix-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  padding: 5vh 10vw;
}

:root {
  --h1-font-size: 20vmin;
  --primary-color: rgb(245, 102, 0);
  --secondary-color: rgb(230, 96, 0);
  --tiger-image: url();
  --texture-image: url(https://media.giphy.com/media/wdfxqCQVGHDlC/giphy.gif);
}

.text-wrapper { 
  position: relative; 
  width: 100%;
  display: flex;
  justify-content: center;
}

.remix-section h1 {
  display: flex;
  flex-direction: column;
  font-family: 'Titan One', sans-serif;
  font-size: var(--h1-font-size);
  text-transform: uppercase;
  background: center/cover var(--secondary-color) var(--tiger-image);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.remix-section h1:last-child {
  position: absolute;
  top: 0; 
  left: 0;
  background-image: var(--texture-image);
  mix-blend-mode: soft-light;
}

.remix-section h1 span { 
  font-size: calc(var(--h1-font-size) / 1.825); 
}

/* ---------- RESPONSIVENESS ---------- */

/* Extra small devices (200px - 576px) */
@media (max-width: 576px) {
  .why-rethym-section {
    padding: 5vh 5vw;
    min-height: 70vh;
  }
  
  .artistic-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .artistic-box {
    padding: 1.5rem;
    transform: rotate(0deg) !important;
  }
  
  .artistic-box:hover {
    transform: scale(1.03) !important;
  }
  
  .why-rethym-heading {
    margin-bottom: 1.5rem;
  }
  
  .remix-section {
    padding: 5vh 5vw;
    min-height: 80vh;
  }
  
  :root {
    --h1-font-size: 20vmin;
  }
}

/* Small devices (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .why-rethym-section {
    padding: 5vh 5vw;
  }
  
  .artistic-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .remix-section {
    padding: 10vh 5vw;
  }
  
  :root {
    --h1-font-size: 25vmin;
  }
}

/* Medium devices (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .why-rethym-section {
    padding: 5vh 5vw;
  }
  
  .artistic-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .remix-section {
    padding: 10vh 5vw;
  }
}

/* Large devices (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .why-rethym-section {
    padding: 5vh 5vw;
  }
  
  .artistic-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .remix-section {
    padding: 10vh 10vw;
  }
}

/* Extra large devices (1201px - 2000px) */
@media (min-width: 1201px) and (max-width: 2000px) {
  .artistic-features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .remix-section {
    padding: 15vh 15vw;
  }
}

/* Ultra large devices (2001px - 3000px) */
@media (min-width: 2001px) and (max-width: 3000px) {
  .why-rethym-section {
    padding: 10vh 15vw;
  }
  
  .artistic-features {
    gap: 3rem;
  }
  
  .artistic-box {
    padding: 3rem 2rem;
  }
  
  .remix-section {
    padding: 20vh 20vw;
  }
}

/* Extra ultra large devices (3001px - 5000px) */
@media (min-width: 3001px) {
  .why-rethym-section {
    padding: 15vh 20vw;
  }
  
  .artistic-features {
    gap: 4rem;
  }
  
  .artistic-box {
    padding: 4rem 3rem;
  }
  
  .remix-section {
    padding: 25vh 25vw;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .why-rethym-section {
    min-height: 120vh;
  }
  
  .artistic-features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .remix-section {
    min-height: 120vh;
  }
  
  :root {
    --h1-font-size: 25vmin;
  }
}

/* ---------- THREE PILLARS SECTION WITH COLOR THEMES ---------- */
.pillars-container {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  overflow: hidden;
  background: #f8f8f8;
  width: 100%;
}

.pillar {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  z-index: 2;
  will-change: transform;
  min-height: min(80vh, 600px);
  width: 100%;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-content {
  position: relative;
  z-index: 3;
  max-width: min(90%, 600px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(0);
}

.pillar h1 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 1.1;
}

.pillar p {
  font-size: 20px;
  font-weight: 300;
  max-width: min(100%, 500px);
  margin: 0 auto;
  line-height: 1.6;
  
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Individual Pillar Colors - Yellow, Green, Berry */
.remix {
  background: linear-gradient(135deg, #f4d860 0%, #f9a826 100%);
  color: #ffffff;
}

.revive {
  background: linear-gradient(135deg, #91a639 0%, #769008 100%);
  color: #ffffff;
}

.rejuvenate {
  background: linear-gradient(135deg, #c04993 0%, #9d366f 100%);
  color: #ffffff;
}

/* Hover Effects */
.pillar .image-hover {
  position: absolute;
  top: 0; 
  left: 0;
  height: 100%; 
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  transform: scale(1.1);
}

.pillar:hover .pillar-content {
  transform: translateY(-10px);
}

.pillar:hover .image-hover {
  opacity: 1;
  transform: scale(1);
}



.pillar:hover p {
  transform: translateY(5px);
}

/* Floating Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
  0% {
      transform: translateY(100vh) scale(0);
      opacity: 0;
  }
  20% {
      opacity: 0.4;
  }
  100% {
      transform: translateY(-100px) scale(1);
      opacity: 0;
  }
}

/* Floating Color Accents */
.floating-accent {
  position: absolute;
  width: clamp(100px, 30vw, 300px);
  height: clamp(100px, 30vw, 300px);
  border-radius: 50%;
  z-index: 0;
  filter: blur(clamp(30px, 8vw, 60px));
  opacity: 0.3;
  mix-blend-mode: multiply;
  animation: floatAccent 25s ease-in-out infinite;
}

.accent-remix {
  background: radial-gradient(circle, #f9a826, rgba(244,216,96,0.8));
  top: 20%;
  left: 10%;
}

.accent-revive {
  background: radial-gradient(circle, #769008, rgba(145,166,57,0.8));
  bottom: 15%;
  left: 50%;
}

.accent-rejuvenate {
  background: radial-gradient(circle, #9d366f, rgba(192,73,147,0.8));
  top: 60%;
  right: 10%;
}

@keyframes floatAccent {
  0%, 100% {
      transform: translate(0, 0) scale(1);
  }
  25% {
      transform: translate(-50px, -50px) scale(1.1);
  }
  50% {
      transform: translate(50px, 30px) scale(0.9);
  }
  75% {
      transform: translate(30px, -50px) scale(1.05);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .pillars-container {
    flex-direction: row;
    height: 100vh;
  }
  
  .pillar {
    width: 33.33%;
    height: 100%;
    min-height: 100vh;
  }
}

/* ---------- SPLIT COMPARISON SECTION ---------- */
.split-comparison-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.comparison-bg-split {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.bg-half {
  flex: 1;
  transition: all 0.6s ease;
}

.bg-red {
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.95) 0%, 
    rgba(185, 28, 28, 0.9) 50%, 
    rgba(153, 27, 27, 0.85) 100%);
}

.bg-green {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.95) 0%, 
    rgba(21, 128, 61, 0.9) 50%, 
    rgba(22, 101, 52, 0.85) 100%);
}

.container {
  max-width: min(1400px, 95%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 1rem);
  position: relative;
  z-index: 2;
}

.comparison-header-split {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.comparison-title-split {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-family: Product Sans B;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-subtitle-split {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison-grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .comparison-grid-split {
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

/* Comparison Columns */
.comparison-column-split {
  background: rgba(255, 255, 255, 0.95);
  border-radius: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.comparison-column-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.traditional-column-split::before { color: #dc2626; }
.rethym-column-split::before { color: #22c55e; }

.comparison-column-split:hover::before {
  opacity: 1;
}

.comparison-column-split:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Column Header */
.column-header-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: 1.2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.column-badge-split {
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-family: Product Sans B;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.column-badge-split.negative-split {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
}

.column-badge-split.positive-split {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.column-icon-split {
  width: clamp(35px, 8vw, 45px);
  height: clamp(35px, 8vw, 45px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.column-icon-split svg {
  width: 60%;
  height: 60%;
}

.traditional-column-split .column-icon-split {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.rethym-column-split .column-icon-split {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.comparison-column-split:hover .column-icon-split {
  transform: scale(1.1) rotate(5deg);
}

/* Ingredient Lists */
.ingredient-list-split {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.ingredient-item-split {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 2.5vw, 1.2rem);
  padding: 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 80px;
}

.ingredient-item-split.negative-item-split {
  background: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.15);
}

.ingredient-item-split.positive-item-split {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.15);
}

.ingredient-item-split:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-item-split.negative-item-split:hover {
  border-color: rgba(220, 38, 38, 0.25);
}

.ingredient-item-split.positive-item-split:hover {
  border-color: rgba(34, 197, 94, 0.25);
}

.ingredient-icon-split {
  width: clamp(35px, 9vw, 45px);
  height: clamp(35px, 9vw, 45px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ingredient-item-split.negative-item-split .ingredient-icon-split {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.ingredient-item-split.positive-item-split .ingredient-icon-split {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.ingredient-content-split {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingredient-content-split h4 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-family: Product Sans B;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #2d3748;
  line-height: 1.2;
}

.ingredient-content-split p {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* Health Impact */
.health-impact-split {
  margin-top: auto;
}

.health-impact-split h4 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-family: Product Sans B;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #2d3748;
  text-align: center;
}

.impact-stats-split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item-split {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.stat-bar-split {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.stat-fill-split {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease-out;
}

.stat-bar-split.negative-bar-split .stat-fill-split {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.stat-bar-split.positive-bar-split .stat-fill-split {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.stat-label-split {
  font-size: 0.8rem;
  color: #374151;
  font-weight: 500;
  min-width: 140px;
  text-align: left;
}

/* VS Divider */
.comparison-divider-split {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-circle-split {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  background: linear-gradient(135deg, #f4d860, #c04993);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Product Sans B;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  box-shadow: 
    0 15px 35px rgba(244, 216, 96, 0.4),
    0 0 60px rgba(192, 73, 147, 0.3);
  animation: pulse-split 2s infinite;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes pulse-split {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 15px 35px rgba(244, 216, 96, 0.4),
      0 0 60px rgba(192, 73, 147, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 20px 45px rgba(244, 216, 96, 0.6),
      0 0 80px rgba(192, 73, 147, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .comparison-column-split {
    padding: 1.5rem;
  }
  
  .ingredient-item-split {
    padding: 1rem;
    gap: 0.8rem;
    min-height: 70px;
  }
  
  .ingredient-icon-split {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .column-header-split {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .comparison-divider-split {
    order: -1;
  }
  
  .vs-circle-split {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .split-comparison-section {
    padding: 3rem 0;
  }
  
  .comparison-title-split {
    font-size: 2rem;
  }
  
  .comparison-subtitle-split {
    font-size: 1.1rem;
  }
  
  .ingredient-item-split {
    padding: 0.8rem;
    gap: 0.6rem;
  }
}

/* Ultra-wide screen support */
@media (min-width: 2000px) {
  .comparison-grid-split {
    max-width: 1400px;
  }
  
  .comparison-column-split {
    padding: 3.5rem;
  }
}

@media (min-width: 3000px) {
  .comparison-grid-split {
    max-width: 1600px;
  }
  
  .comparison-title-split {
    font-size: 4rem;
  }
  
  .comparison-column-split {
    padding: 4rem;
  }
  
  .ingredient-item-split {
    min-height: 100px;
  }
  
  .ingredient-content-split h4 {
    font-size: 1.4rem;
  }
  
  .ingredient-content-split p {
    font-size: 1rem;
  }
}