.pill-text h3 {
  font-size: 1rem;
  background-origin: padding-box;
  text-align: center;
}
.pill-text {
  padding: 20px;
}

/* --- Premium Pill UI Design --- */
.organic-powder,
.conventional-extract,
.conventional-powder,
.herbal-oil {
  display: none;
  /* Hide all by default when a filter is active */
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Show cards only when they have the .show-filter class */
.organic-powder,
.conventional-extract.show-filter,
.conventional-powder.show-filter,
.herbal-oil.show-filter {
  display: block;
}

.organic-powder,
.conventional-extract,
.conventional-powder,
.herbal-oil {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdf2e9;
  /* Soft Peach */
  border-radius: 100px;
  padding: 15px 35px;
  height: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Background Variety */
.organic-powder,
.conventional-extract,
.conventional-powder,
.herbal-oil:nth-child(3n + 1) .product-item {
  background-color: #fce4ec;
}

.organic-powder,
.conventional-extract,
.conventional-powder,
.herbal-oil:nth-child(3n + 2) .product-item {
  background-color: #f8e1cd;
}

.organic-powder,
.conventional-extract:nth-child(3n + 3) .product-item {
  background-color: #99dbef;
}

.product-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3e2723;
  margin: 0;
}

.product-image img {
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.1));
}

/* Hover Interaction */
.organic-powder:hover .product-item,
.conventional-extract:hover .product-item,
.conventional-powder:hover .product-item,
.herbal-oil:hover .product-item {
  transform: translateY(-5px);
  background-color: #ffffff;
  border-color: #c59d33;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.product-tabs-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.product-tabs-filter ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.filter-btn {
  background-color: #f1f8f7;
  /* Light teal tint */
  color: #004d40;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #f7f9f9;
  /* Dark teal matching your header */
  color: rgb(61, 2, 2);
}

/* Badges for 'New' or 'Hot' */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.badge.new {
  background-color: #00bfa5;
}

.badge.out-of-stock {
  background-color: #ff5252;
}

/* Use this for the main wrapper */
.main-header {
  width: 100%;
  min-height: 80px;
  /* The specific radial gradient from the image */
  background-color: #60c8fc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2%;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 50px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  font-family: "Arial", sans-serif;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.8;
}

/* The Golden Shop Now Button */
.btn-shop {
  background-color: #d9a035;
  /* Matching the orange/gold in the logo */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

/* The arrow circle next to the button */
.arrow-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* --- 2. SLIDER CONTAINER --- */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 90vh;
  /* Adjust height of the slider area */
  display: flex;
  align-items: center;
  /* overflow: hidden; -> We keep overflow hidden to crop the edges */
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  gap: 15px;
  padding: 45px;
  margin-top: 75px;
  /* Space between slides */
  /* Transition is managed in JS */
  will-change: transform;
}

/* --- 3. SLIDE CARDS --- */
.slide {
  /* Desktop Math:
               Active Slide = 60vw
               Remaining Space = 40vw (20vw Left + 20vw Right)
               This creates the exact look you asked for.
            */
  width: 60vw;
  height: 100%;
  flex-shrink: 0;
  /* Prevent shrinking */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0.4;
  /* Inactive slides are dim */
  transform: scale(0.9);
  /* Inactive slides are smaller */
  transition: all 0.5s ease-in-out;
  /* Smooth animations */
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(8, 0, 0, 0.5);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 4. OVERLAYS & CONTENT --- */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  opacity: 0.8;
}

/* Optimized Logo Card with Shadow and Border */
.client-logo-item {
    background: #ffffff;
    /* Soft, professional border */
    border: 1px solid rgba(10, 61, 42, 0.1); 
    border-radius: 8px; /* Slight rounding for a modern feel */
    padding: 30px 20px;
    margin: 15px; /* Creates space for the shadow to be visible */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    
    /* Modern multi-layered shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), 
                0 2px 4px rgba(0, 0, 0, 0.02);
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* Interaction: Shadow grows and border highlights on hover */
.client-logo-item:hover {
    transform: translateY(-5px); /* Lift effect */
    border-color: #c5a059; /* Gold highlight */
    background: #ffffff;
    
    /* Deepened shadow for "lifted" look */
    box-shadow: 0 15px 35px rgba(10, 61, 42, 0.08);
}

.client-logo-item img {
    max-width: 100%;
    
    object-fit: contain;   
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
  /* Delay text */
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
}
.slide-content p{
     color: #eaeaea;
}
.footer-copyright P{
        color: #eaeaea !important;
}
.footer-address{
     color: #eaeaea !important;
}

.about-footer p{
    color: #eaeaea;
}

p {
  font-size: 1.1rem;
  color: #343333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #1d4ed8;
}

/* --- 5. NAVIGATION ARROWS --- */
.nav-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-dropdown {
  max-width: 300px;
  display: inline-block;
  height: 50px;
  border: 2px solid #0b2b1a;
  /* Your brand green */
  border-radius: 30px;
  padding: 0 25px;
  font-weight: 600;
  color: #0b2b1a;
  transition: all 0.3s ease;
}

.product-dropdown:focus {
  box-shadow: 0 0 10px rgba(11, 43, 26, 0.2);
  border-color: #c59d33;
  /* Gold accent */
}

/* Ensure hidden cards don't leave gaps */
.organic-powder {
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.organic-powder.hidden {
  display: none;
  opacity: 0;
}

.custom-dropdown {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dropdown:focus {
  border-color: #0f9d58;
  /* Green theme color */
  box-shadow: 0 0 0 0.25rem rgba(15, 157, 88, 0.1);
  outline: none;
}

.nav-btn:hover {
  background: white;
  color: black;
  scale: 1.1;
}

.prev {
  left: 5%;
}

.next {
  right: 5%;
}

.slide-content strong {
  color: white;
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 768px) {
  .slide {
    width: 85vw;
  }

  /* Mobile: Show one main card mostly */
  .slide-content {
    left: 20px;
    bottom: 30px;
    width: 90%;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .prev {
    left: 2%;
  }

  .next {
    right: 2%;
  }
}

/* Gradient Background and Golden Border Animation */
.premium-gold-card {
  background: linear-gradient(135deg, #ffafbd 0%, #2193b0 100%);
  /* Pink to Blue Gradient */
  border-radius: 15px;
  padding: 5px;
  /* Space for the golden border */
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

.premium-gold-card:hover {
  transform: translateY(-10px);
}

/* The "Running" Gold Border Effect */
.premium-gold-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    #ffd700,
    #bf953f,
    #fcf6ba,
    #b38728,
    transparent 30%
  );
  animation: rotateGold 4s linear infinite;
  z-index: -2;
}

.premium-gold-card::after {
  content: "";
  position: absolute;
  inset: 3px;
  /* Border thickness */
  background: inherit;
  /* Matches the parent gradient */
  border-radius: 12px;
  z-index: -1;
}

@keyframes rotateGold {
  100% {
    transform: rotate(1turn);
  }
}

.product-item h3 {
  color: #0c0000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-top: 15px;
}

.product-image {
  position: relative;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  margin-bottom: 0px;
  overflow: hidden;
  height: 440px;
}

/* 3D Animation & Floating Effect */
.benefit-item,
.benefit-list-item {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 1000px;
}

.benefit-item:hover {
  transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
}

/* Golden Border Animation */
.benefit-image figure {
  position: relative;
  padding: 8px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: inline-block;
}

.benefit-image figure::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    #ffd700,
    #bf953f,
    #fcf6ba,
    #b38728,
    transparent 30%
  );
  animation: rotateGold 4s linear infinite;
}

.benefit-image img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

@keyframes rotateGold {
  100% {
    transform: rotate(1turn);
  }
}

.benefit-content span {
  color: #2193b0;
  /* Blue accent */
  font-weight: bold;
}

/* 1. Main Card Container Styling */
.premium-3d-card {
  position: relative;
  border-radius: 20px;
  padding: 6px;
  /* Space for the golden border */
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  background: linear-gradient(135deg, #ffafbd 0%, #2193b0 100%);
  /* Pink to Blue */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 2. Running Golden Border Animation */
.premium-3d-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    #ffd700,
    #fcf6ba,
    #bf953f,
    #ffd700,
    transparent 40%
  );
  top: -50%;
  left: -50%;
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
}

/* 3. Card Internal Shield (Holds the Gradient) */
.premium-3d-card .benefit-item,
.premium-3d-card .benefit-list-item {
  position: relative;
  z-index: 1;
  background: inherit;
  /* Shows the pink-blue gradient */
  border-radius: 15px;
  height: 100%;
  padding: 20px;
}

/* 4. 3D Hover Effect */
.premium-3d-card:hover {
  transform: rotateY(15deg) rotateX(5deg) scale(1.05);
  box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.2);
}

.premium-3d-card:hover .icon-box img {
  transform: translateZ(30px);
  /* 3D pop for icons */
}

/* 5. Gold Shine Keyframes */
@keyframes rotateBorder {
  100% {
    transform: rotate(1turn);
  }
}

/* White text for better contrast on gradients */
.premium-3d-card h3 {
  color: #ffffff !important;
  font-weight: 700;
  text-transform: capitalize;
}

.premium-3d-card p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Card visibility transitions */
.product-card {
  display: none;
  /* Hidden by default for the Load More logic */
  transition: all 0.5s ease-in-out;
}

.product-card.show-filter {
  display: block;
  animation: fadeInUp 0.5s forwards;
}

/* Premium Gradient & Gold Border for Filter Buttons */
.filter-btn {
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s;
  font-weight: 600;
}

.filter-btn.active {
  background: #2193b0;
  color: white;
  box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}

/* Load More Button Styling */
.load-more-container {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

#loadMoreBtn {
  background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
  border: none;
  color: #1a1a1a;
  padding: 12px 40px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}

#loadMoreBtn:hover {
  transform: scale(1.05);
}

/* Force cards to stay hidden unless the filter OR the pagination allows them */
.product-card {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Only show cards that have the 'show-filter' class */
.product-card.show-filter {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

/* Keep your Load More Container centered */
.load-more-container {
  text-align: center;
  padding: 40px 0;
  width: 100%;
  clear: both;
}

/* 1. Reset: Hide all cards strictly by default */
.product-card {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* 2. Show state: Overrides display none and makes items visible */
.product-card.show-filter {
  display: block !important;
  visibility: visible !important;
  opacity: 1;
  transform: translateY(0);
}

/* 3. Button Styling from your image */
.filter-btn {
  background: #f4f6f9;
  border: none;
  border-radius: 30px;
  padding: 8px 25px;
  color: #004d40;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 5px;
}

/* Active State (Pink-Blue Gradient + Border) */
.filter-btn.active {
  background: #2193b0;
  color: white;
  border: 2px solid #333;
  /* Dark border like your image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accreditation-section {
  padding: 20px 0;
  background-color: #b4a305;
}

.accreditation-title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.logo-slider-container {
  overflow: hidden;
  padding: 20px 0;
}

.client-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.client-logo-item img {
  max-width: 140px;
  height: auto;
  opacity: 7;
  transition: all 0.4s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Standard Swiper Overrides */
.swiper-wrapper {
  transition-timing-function: linear !important;
}
