@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --vcn-primary: #45663c;
  --vcn-base-bg: #f6f7ef;
  --vcn-white: #fff;
  --vcn-dark: var(--vcn-footer);
  --vcn-footer: #1c3a13;
  --vcn-light: #e9f0ca;
  --vcn-font: "Outfit", sans-serif;
  --vcn-badge: #d3fa99;
  --vcn-light: #e9fccd;
  --vcn-product: #f6f7ef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
body {
  font-family: var(--vcn-font);
  overflow-x: hidden;
}
p {
  font-family: var(--vcn-font);
  font-size: 1.2rem;
  text-align: justify;
}
/* ========== TOP HEADER ========== */
.top-header {
  width: 100%;
  background-color: var(--vcn-light);
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-header.hide {
  transform: translateY(-100%);
}

.top-header p {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--vcn-primary);
  font-weight: 500;
}

.top-header .arrow {
  margin-left: 4px;
  font-weight: 600;
  color: var(--vcn-footer);
}

/* ========== HERO SECTION ========== */
.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

/* ========== DESKTOP NAVBAR ========== */
.navbar {
  position: fixed !important;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 40px !important;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  -webkit-backdrop-filter: blur(20px);
  top: 0px;
}

.nav-img {
  width: 50px;
  height: auto;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.navbar-brand {
  color: white !important;
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}

/* Mobile only elements */
.mobile-cart {
  color: var(--vcn-badge);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.mobile-cart:hover {
  color: #2d5a3f;
}

/* Custom Navbar Toggler */
.custom-navbar-toggler {
  border: none;
  background: var(--vcn-badge);
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 35px;
  height: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.custom-navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.custom-navbar-toggler:hover {
  transform: scale(1.05);
}

/* Hamburger Lines */
.hamburger-line {
  width: 25px;
  height: 2.5px;
  background-color: var(--vcn-badge);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* Active/Open State */
.custom-navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.custom-navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.custom-navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Optional: Different color on hover */
.custom-navbar-toggler:hover .hamburger-line {
  background-color: #fff;
}

/* Hide logo when menu is open */
.navbar-brand.d-lg-none {
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 10001;
}

body.menu-open .navbar-brand.d-lg-none {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Hamburger to Close animation */
.custom-navbar-toggler {
  position: relative;

  background: var(--vcn-badge);
  border: none;
  cursor: pointer;
  z-index: 10002;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
}

/* Transform to X when open */
body.menu-open .custom-navbar-toggler .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.menu-open .custom-navbar-toggler .hamburger-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .custom-navbar-toggler .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
/* Mobile Menu - Slides from BEHIND the Logo */
.navbar-collapse {
  position: absolute;
  top: 0; /* Navbar ke neeche */
  left: 0; /* Logo se start */
  width: 0; /* Initially hidden */
  background: rgba(40, 40, 40, 0.3);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 0;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  z-index: 1;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  margin-top: 30px;
  opacity: 0;
}

/* Show state - Expand */
.navbar-collapse.show {
  width: calc(100% - 0px); /* Full width minus margins */
  padding: 4px;
  opacity: 1;
}

/* Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-logo {
  width: 45px;
}

.close-menu {
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Nav Pills */
.navbar-nav {
  display: flex;
  flex-direction: row !important;
  gap: 8px;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  scrollbar-width: none;
  list-style: none;
}

.navbar-nav::-webkit-scrollbar {
  display: none;
}

.navbar-nav .nav-item {
  flex-shrink: 0;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 8px 16px !important;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Dropdown */
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-content.show {
  max-height: 50vh;
  overflow-y: auto;
}

.dropdown-menu-mobile {
  padding: 0;
}

.dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  padding: 12px !important;
  margin-bottom: 10px;
  color: white !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateX(5px);
}

.dropdown-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.dropdown-footer {
  text-align: center;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.dropdown-footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 14px;
}

/* Desktop */
@media (min-width: 992px) {
  .desktop-nav {
    display: flex !important;
  }
}
/* Demo content */
.content-demo {
  padding: 100px 20px 50px;
  color: white;
  text-align: center;
}

.content-demo h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content-demo p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 100px;
}

/* ========== DESKTOP VIEW ========== */
@media (min-width: 992px) {
  .mobile-cart,
  .navbar-toggler {
    display: none !important;
  }

  .navbar {
    padding: 6px 40px !important;
  }

  /* .navbar.scrolled {
    padding: 12px 40px !important;
  } */

  .navbar .container-fluid {
    gap: 20px;
  }

  /* Left Section Container */
  .nav-left-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 24px;
    background: transparent;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .navbar.scrolled .nav-left-wrapper {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .navbar-brand {
    padding-right: 20px;
    font-size: 24px;
  }

  .nav-img {
    width: 50px;
  }

  /* Desktop Navigation */
  .desktop-nav {
    display: flex !important;
    flex-direction: row;
    gap: 2px;
    margin: 0;
    padding: 0;
  }

  .desktop-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 4px 17px !important;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
  }

  .desktop-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
  }

  /* Desktop Dropdown - Static within nav */
  .desktop-nav .dropdown {
    position: static !important;
  }

  .desktop-nav .dropdown-menu {
    background: rgba(85, 85, 85, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 8px !important;
    max-height: 450px;
    overflow-y: scroll;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    /* margin-top: 12px !important; */
    display: block;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute !important;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    width: 100%;
  }

  .desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 450px;
    padding: 8px;
  }

  .desktop-nav .dropdown-menu::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav .dropdown-menu::-webkit-scrollbar-track {
    display: none;
  }

  .desktop-nav .dropdown-menu::-webkit-scrollbar-thumb {
    display: none;
  }

  .desktop-nav .dropdown-item {
    margin-bottom: 4px;
  }

  .desktop-nav .dropdown-item img {
    width: 70px;
    height: 70px;
  }

  /* Right Section Container */
  .nav-right-wrapper {
    display: flex;
    align-items: center;
    gap: 21px;
    padding: 6px 11px;
    background: transparent;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar.scrolled .nav-right-wrapper {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .login-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .login-link:hover {
    color: white;
  }
  /* ========== PRODUCT DETAILS PAGE OVERRIDES ========== */

  /* Desktop Nav Links - Green on product details page */
  .product-details-page .desktop-nav .nav-link {
    color: var(--vcn-footer) !important; /* Green color */
  }

  .product-details-page .desktop-nav .nav-link:hover {
    background: rgba(90, 90, 90, 0.15) !important; /* Green tinted background */
    backdrop-filter: blur(10px);
    color: var(--vcn-footer) !important;
  }

  /* Mobile Nav Links - Green on product details page */
  .product-details-page .navbar-nav .nav-link {
    color: var(--vcn-footer) !important;
    border-color: var(--vcn-footer) !important;
  }

  .product-details-page .navbar-nav .nav-link.active {
    background: rgba(40, 167, 69, 0.25) !important;
    border-color: var(--vcn-footer) !important;
  }

  /* When scrolled - Links become WHITE */
  .product-details-page .navbar.scrolled .desktop-nav .nav-link {
    color: #fff !important;
  }

  .product-details-page .navbar.scrolled .desktop-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
  }

  /* Nav Actions - Login Link GREEN */
  .product-details-page .login-link {
    color: var(--vcn-footer) !important;
  }

  .product-details-page .login-link:hover {
    color: var(--vcn-footer) !important;
  }

  /* Button GREEN background */
  .product-details-page .navbar-btn {
    background: var(--vcn-footer) !important;
    color: white !important;
  }

  /* When scrolled - Button becomes WHITE with green text */
  .product-details-page .navbar.scrolled .login-link {
    color: #fff !important;
  }

  .product-details-page .navbar.scrolled .navbar-btn {
    background: #fff !important;
    color: var(--vcn-footer) !important;
  }

  .product-details-page .navbar.scrolled .navbar-btn:hover {
    background: var(--vcn-white) !important;
  }
  .navbar-btn {
    background: white !important;
    color: var(--vcn-primary) !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
  }

  .navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }

  /* Hide mobile menu on desktop */
  .navbar-collapse {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    height: auto;
    width: auto;
    overflow: visible;
  }

  .mobile-menu-header,
  .navbar-nav {
    display: none !important;
  }
}
/* ========== HERO CONTENT ========== */
.hero-content {
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;

  max-width: 650px;
  padding: 0 5%;
}
.practitioners.hero-content {
  position: absolute;
  top: 80%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;

  padding: 0 5%;
}
.practitioners.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: white;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: white;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: var(--vcn-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-btn::after {
  content: "→";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--vcn-white);
  color: var(--vcn-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding-right: 55px;
}

.hero-btn:hover::after {
  opacity: 1;
  right: 20px;
}

/* Demo Content */
.content-section {
  padding: 100px 40px;
  text-align: center;
  background: white;
}

.content-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--vcn-primary);
}

.content-section p {
  font-size: 1.2rem;
  color: var(--vcn-footer);
  max-width: 800px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 20px !important;
  }

  .nav-left-wrapper {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    padding: 20px;
    border-radius: 20px;
    margin-top: 25px;
  }

  .nav-actions .login-link {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
  }

  .hero-content {
    max-width: 90%;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
/* ========== CO-BIOTICS SECTION ========== */
.vcn-cobiotics-section {
  padding: 80px 20px;
  background-color: var(--vcn-base-bg);
}

.vcn-cobiotics-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ========== LEFT CONTENT ========== */
.vcn-cobiotics-content {
  padding: 20px;
}

.vcn-cobiotics-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--vcn-light);
  color: var(--vcn-primary);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.vcn-cobiotics-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--vcn-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.vcn-cobiotics-description {
  font-size: 1.5rem;
  color: var(--vcn-footer);
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.vcn-cobiotics-description strong {
  font-weight: 600;
  color: var(--vcn-dark);
}

.vcn-cobiotics-cta-btn {
  display: inline-block;
  position: relative; /* 🟢 add this */
  padding: 12px 40px;
  background-color: var(--vcn-primary);
  color: var(--vcn-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(69, 102, 60, 0.2);
}

.vcn-cobiotics-cta-btn::after {
  content: "→";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.vcn-cobiotics-cta-btn:hover {
  background: var(--vcn-primary);
  color: var(--vcn-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding-right: 55px; /* space for arrow */
}

.vcn-cobiotics-cta-btn:hover::after {
  opacity: 1;
  right: 20px;
}

/* ========== RIGHT IMAGES GRID ========== */
.vcn-cobiotics-images-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.vcn-cobiotics-main-image {
  width: 100%;
  /* border: 2px solid var(--vcn-primary); */
  border-radius: 24px;
  overflow: hidden;
}

.vcn-cobiotics-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vcn-cobiotics-product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vcn-cobiotics-product-label {
  position: absolute;
  top: -40px;
  padding: 6px 14px;
  background-color: var(--vcn-white);
  border: 1px solid #d0d0c8;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vcn-dark);
  white-space: nowrap;
}

.vcn-cobiotics-product-label::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background-color: #d0d0c8;
}

.vcn-cobiotics-product-jar {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5f5f0 0%, #e0e0d8 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vcn-cobiotics-jar-cap {
  height: 30px;
  background-color: #3a5532;
  border-radius: 12px 12px 0 0;
}

.vcn-cobiotics-jar-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Different product colors */
.vcn-cobiotics-product-item:nth-child(1) .vcn-cobiotics-jar-body {
  background: linear-gradient(
    180deg,
    rgba(255, 243, 200, 0.8) 0%,
    rgba(255, 235, 180, 0.9) 100%
  );
}

.vcn-cobiotics-product-item:nth-child(2) .vcn-cobiotics-jar-body {
  background: linear-gradient(
    180deg,
    rgba(200, 230, 180, 0.7) 0%,
    rgba(180, 220, 160, 0.85) 100%
  );
}

.vcn-cobiotics-product-item:nth-child(3) .vcn-cobiotics-jar-body {
  background: linear-gradient(
    180deg,
    rgba(200, 220, 235, 0.7) 0%,
    rgba(180, 210, 230, 0.85) 100%
  );
}

.vcn-cobiotics-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.vcn-cobiotics-capsule {
  width: 28px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vcn-cobiotics-pill {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ========== BOTTOM THUMBNAIL IMAGES ========== */
.vcn-cobiotics-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vcn-cobiotics-thumbnail-box {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  /* border: 2px solid var(--vcn-primary); */
}

.vcn-cobiotics-thumbnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .vcn-cobiotics-title {
    font-size: 3rem;
  }

  .vcn-cobiotics-product-jar {
    width: 120px;
    height: 160px;
  }
}

@media (max-width: 992px) {
  .vcn-cobiotics-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vcn-cobiotics-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .vcn-cobiotics-section {
    padding: 60px 20px;
  }

  .vcn-cobiotics-title {
    font-size: 2rem;
  }

  .vcn-cobiotics-description {
    font-size: 1rem;
  }

  .vcn-cobiotics-products-display {
    gap: 20px;
  }

  .vcn-cobiotics-product-jar {
    width: 100px;
    height: 140px;
  }

  .vcn-cobiotics-thumbnails-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .vcn-cobiotics-thumbnails-grid {
    grid-template-columns: 1fr;
  }

  .vcn-cobiotics-product-label {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

/* ========== WHOLE BODY HEALTH SECTION ========== */
.vcn-whole-body-section {
  /* background-image: linear-gradient(
      135deg,
      rgba(45, 74, 37, 0.95) 0%,
      rgba(58, 95, 48, 0.9) 50%,
      rgba(45, 74, 37, 0.95) 100%
    ),
    url("../img/bg/bg-1.png"); */
  background: var(--vcn-footer);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.vcn-whole-body-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== HEADER CONTENT ========== */

/* Section Styling */
.vcn-whole-body-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.vcn-whole-body-container {
  width: 100%;
}

/* Header Content */
.vcn-whole-body-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* margin-bottom: 50px; */
  flex-wrap: wrap;
  gap: 30px;
}

.vcn-whole-body-title-wrapper {
  max-width: 500px;
}

.vcn-whole-body-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vcn-white);
  line-height: 1.2;
  margin-bottom: 0;
}

.vcn-whole-body-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 400px;
}

.vcn-whole-body-view-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vcn-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.vcn-whole-body-view-link:hover {
  gap: 12px;
  opacity: 0.9;
}

.vcn-whole-body-view-link .vcn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.vcn-whole-body-view-link:hover .vcn-arrow {
  transform: translateX(4px);
}

/* Swiper Slider */
.vcn-whole-body-swiper-container {
  position: relative;
  padding: 20px 0 60px 0;
}

.vcn-whole-body-swiper {
  overflow: visible !important;
}

.vcn-whole-body-product-card {
  background: var(--vcn-primary);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;

  min-height: 350px; /* yeh reduce karo */
}

.vcn-whole-body-product-card:hover {
  transform: scale(1.08);
  background: rgba(69, 102, 60, 0.75);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Product Badges */
.vcn-whole-body-product-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.vcn-whole-body-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vcn-whole-body-badge-bestseller {
  background-color: #e9f0ca;
  color: var(--vcn-footer);
}

.vcn-whole-body-badge-new {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--vcn-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Product Label */
.vcn-whole-body-product-label {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--vcn-white);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--vcn-white);
  font-weight: 500;
  margin-bottom: 20px;
}

/* Product Image & Video Container */
.vcn-whole-body-product-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Default image visible */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Video invisible initially */
.product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Hover → Show video and hide image */
.vcn-whole-body-product-card:hover .product-video {
  opacity: 1;
}

.vcn-whole-body-product-card:hover .product-img {
  opacity: 0;
}

.product-img,
.product-video {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Title */
.vcn-whole-body-product-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vcn-white);
  line-height: 1.3;
  margin: 20px 0;
}

/* Shop Button */
.vcn-whole-body-shop-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--vcn-footer);
  color: var(--vcn-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  position: relative;
}

.vcn-whole-body-shop-btn::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.vcn-whole-body-product-card:hover .vcn-whole-body-shop-btn {
  padding-right: 48px; /* space for arrow */
}

.vcn-whole-body-product-card:hover .vcn-whole-body-shop-btn::after {
  opacity: 1;
  right: 15px; /* smooth slide */
}

/* Button changes on card hover */
.vcn-whole-body-product-card:hover .vcn-whole-body-shop-btn {
  background-color: var(--vcn-white);
  color: var(--vcn-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Product Price */
.vcn-whole-body-product-price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .vcn-whole-body-main-title {
    font-size: 2rem;
  }

  .vcn-whole-body-subtitle {
    font-size: 1.2rem;
  }

  .vcn-whole-body-product-image {
    height: 200px;
  }
}
/* ========== PROBIOTIC INFO SECTION ========== */
.vcn-probiotic-info-section {
  background-image: url("https://res.cloudinary.com/dljz0lko8/image/upload/f_auto,q_auto/v1755552501/library/viacap/viacapbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.vcn-probiotic-container {
  max-width: 1400px;
  margin: 0 auto;
}

.vcn-probiotic-content-wrapper {
  background: rgba(121, 121, 121, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* ========== LEFT CONTENT ========== */
.vcn-probiotic-left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vcn-probiotic-brand-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vcn-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.vcn-probiotic-brand-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--vcn-white);
  border-radius: 50%;
}

.vcn-probiotic-main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--vcn-white);
  line-height: 1.2;
}
.alternate-heading {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--vcn-white);
  line-height: 1.2;
  margin-top: -12rem;
}

.vcn-probiotic-stat-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 400px;
}

.vcn-probiotic-stat-label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vcn-probiotic-stat-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  font-size: 0.75rem;
  color: var(--vcn-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.vcn-probiotic-stat-text {
  font-size: 1.1rem;
  color: var(--vcn-white);
  font-weight: 500;
}

.vcn-probiotic-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

.vcn-probiotic-stat-number-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vcn-probiotic-stat-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--vcn-white);
}

.vcn-probiotic-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vcn-white);
}

.vcn-probiotic-stat-multiplier {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.vcn-probiotic-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ========== RIGHT CONTENT (Product Display) ========== */
.vcn-probiotic-right-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.vcn-probiotic-product-display {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.vcn-probiotic-product-image {
  width: 220px;
  height: auto;
  z-index: 5;
  position: relative;
}
.vcn-probiotic-product-image-new {
  width: 100%;
  height: auto;
  z-index: 5;
  position: relative;
}

/* Callout Boxes */
.vcn-probiotic-callout {
  position: absolute;
  padding: 14px 18px;
  border-radius: 8px;
  max-width: 230px;
  z-index: 10;
}

.vcn-probiotic-callout-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vcn-white);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

.vcn-probiotic-callout-text {
  font-size: 0.85rem;
  color: var(--vcn-white);
  line-height: 1.5;
}

/* Top Callout (Left Side) */
.vcn-probiotic-callout-top {
  top: -3%;
  left: -80px;
}

/* Bottom Callout (Right Side) */
.vcn-probiotic-callout-bottom {
  bottom: -9%;
  right: -45px;
}

/* Curved Arrow Images */
.vcn-probiotic-callout::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

/* Top Callout Connector - Image on right side */
.vcn-probiotic-callout-top::before {
  background-image: url(../img/icons/curve-arrow.png);
  bottom: 17%;
  right: -102px;
  rotate: 69deg;
}

/* Bottom Callout Connector - Image on left side */
.vcn-probiotic-callout-bottom::before {
  background-image: url(../img/icons/curve-arrow.png);
  top: -28%;
  left: -100px;
  rotate: 264deg;
} /* Alternative Section with Different Arrows */
.alternative-section {
  background: linear-gradient(135deg, #4a5a6e 0%, #6d7d8f 50%, #4a5a6e 100%);
  padding: 80px 0;
}
.alternative-callout-top {
  top: 17%;
  right: -47px;
}
.alternative-callout-top::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><marker id="circleEnd" markerWidth="4" markerHeight="4" refX="2" refY="2" orient="auto"><circle  cx="2" cy="2" r="1.2" fill="rgba(255,255,255,1)" /></marker></defs><path d="M 10 90 Q 50 50, 90 10" stroke="rgba(255,255,255,0.8)" stroke-width="2" fill="none" marker-end="url(%23circleEnd)"/></svg>');
  bottom: 56%;
  right: 88px;
  rotate: 225deg;
}
.alternative-callout-bottom {
  bottom: 3%;
  left: -76px;
}
.alternative-callout-bottom::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><marker id="circleEnd" markerWidth="4" markerHeight="4" refX="2" refY="2" orient="auto"><circle  cx="2" cy="2" r="1.2" fill="rgba(255,255,255,1)" /></marker></defs><path d="M 10 90 Q 50 50, 90 10" stroke="rgba(255,255,255,0.8)" stroke-width="2" fill="none" marker-end="url(%23circleEnd)"/></svg>');
  bottom: 69%;
  right: 88px;
  rotate: 44deg;
}
.alternate-image {
  width: 100%;
  padding: 0 39px 0 0;
}

/* ========== MOBILE RESPONSIVE ========== */

@media (max-width: 991px) {
  .vcn-probiotic-info-section {
    padding: 50px 15px;
  }

  .vcn-probiotic-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .vcn-probiotic-left-content {
    gap: 20px;
    order: 2; /* Move below product */
  }

  .vcn-probiotic-right-content {
    order: 1; /* Move product to top */
    padding: 30px 0;
  }

  .vcn-probiotic-brand-tag {
    font-size: 0.8rem;
  }

  .vcn-probiotic-main-heading {
    font-size: 1.8rem;
  }

  .vcn-probiotic-stat-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 100%;
    padding: 20px;
  }

  .vcn-probiotic-stat-divider {
    width: 100%;
    height: 1px;
  }

  .vcn-probiotic-stat-number {
    font-size: 2rem;
  }

  .vcn-probiotic-product-display {
    min-height: 500px;
    flex-direction: column;
    gap: 20px;
  }

  .vcn-probiotic-product-image {
    width: 150px;
    order: 2;
  }

  /* Top Callout - Above product */
  .vcn-probiotic-callout-top {
    position: static;
    order: 1;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Bottom Callout - Below product */
  .vcn-probiotic-callout-bottom {
    position: static;
    order: 3;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Remove arrows on mobile */
  .vcn-probiotic-callout-top::before,
  .vcn-probiotic-callout-bottom::before {
    display: none;
  }

  .vcn-probiotic-callout-title {
    font-size: 0.75rem;
  }

  .vcn-probiotic-callout-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .vcn-probiotic-info-section {
    padding: 40px 10px;
  }

  .vcn-probiotic-content-wrapper {
    padding: 25px 15px;
  }

  .vcn-probiotic-main-heading {
    font-size: 1.5rem;
  }

  .vcn-probiotic-stat-box {
    padding: 15px;
  }

  .vcn-probiotic-stat-number {
    font-size: 1.8rem;
  }

  .vcn-probiotic-product-display {
    min-height: 450px;
  }

  .vcn-probiotic-product-image {
    width: 120px;
  }

  .vcn-probiotic-callout {
    padding: 12px 15px;
  }
}

/* ========== vcn-human-section ========== */
.vcn-human-section {
  background: #fcfcf7;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.vcn-human-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  transition: all 0.6s ease;
}

.vcn-human-container.fullscreen {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 100%;
  padding: 0 40px;
}

/* Left Content */
.vcn-human-left-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
  transition: all 0.6s ease;
}

.vcn-human-container.fullscreen .vcn-human-left-content {
  opacity: 0;
  transform: translateX(-50px);
  pointer-events: none;
  position: absolute;
}

.vcn-human-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vcn-footer);
}

.vcn-human-logo-icon img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.vcn-human-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vcn-primary);
  line-height: 1.2;
  margin: 0;
}

.vcn-human-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vcn-footer);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.vcn-human-cta-button:hover {
  background: var(--vcn-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 74, 37, 0.3);
}

.vcn-human-play-icon {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vcn-footer);
  font-size: 0.7rem;
}

/* Right Content - Video/Bundles Container */
.vcn-human-right-content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
  transition: all 0.6s ease;
}

.vcn-human-container.fullscreen .vcn-human-right-content {
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.video-container {
  width: 100%;
  transition: all 0.6s ease;
  position: relative;
}

.video-container.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.vcn-human-main-image {
  width: 100%;
  border-radius: 20px;
  background: #eeeee9;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vcn-human-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Navigation */
.top-nav {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.chapter-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  backdrop-filter: blur(10px);
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: white;
  transform: scale(1.1);
}

/* Bottom Info */
.bottom-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a3d15;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #0f2a0d;
  transform: scale(1.1);
}

.chapter-title {
  color: #1a3d15;
  font-size: 1rem;
  font-weight: 600;
}

.progress-dots {
  display: flex;
  gap: 8px;
  margin-left: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5d4c0;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1a3d15;
  width: 12px;
  height: 12px;
}

/* ========== Disease Bundles Section ========== */
.disease-bundles-container {
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #eeeee9;
  border-radius: 20px;
  padding: 40px;
  overflow-y: auto;
}

.disease-bundles-container.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  position: relative;
}

.vcn-human-container.fullscreen .disease-bundles-container.active {
  max-width: 100%;
}

/* Custom Scrollbar */
.disease-bundles-container::-webkit-scrollbar {
  width: 8px;
}

.disease-bundles-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.disease-bundles-container::-webkit-scrollbar-thumb {
  background: var(--vcn-footer);
  border-radius: 10px;
}

.bundles-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.close-button {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--vcn-primary);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.close-button:hover {
  background: var(--vcn-badge);
  transform: rotate(90deg) scale(1.1);
}

.bundles-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.bundles-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #1c3a13, transparent);
  border-radius: 2px;
}

.bundles-subtitle {
  font-size: 1rem;
  color: var(--vcn-footer);
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
}

.disease-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 35px;
}

.disease-card {
  border-radius: 18px 18px 18px 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.disease-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(45, 74, 37, 0.2);
  border-color: var(--vcn-footer);
}

.disease-card-image {
  width: 100%;
  /* height: 160px; */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disease-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.disease-icon img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.disease-card-body {
  padding: 20px;
  text-align: center;
  background-color: var(--vcn-product);
}

.disease-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 16px;
}

.learn-more-btn {
  background: var(--vcn-primary);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--vcn-footer);
  color: white;
}

.view-more-section {
  text-align: center;
  margin-top: 30px;
}

.view-more-btn {
  background: var(--vcn-footer);
  color: white;
  border: none;
  padding: 14px 50px;
  border-radius: 35px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  background: var(--vcn-primary);
  color: white;
}

/* Responsive */
@media (max-width: 1200px) {
  .disease-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .vcn-human-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vcn-human-heading {
    font-size: 2rem;
  }

  .vcn-human-left-content {
    text-align: center;
    align-items: center;
  }

  .vcn-human-right-content {
    justify-content: center;
  }

  .bundles-title {
    font-size: 1.8rem;
  }

  .disease-bundles-container {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .vcn-human-heading {
    font-size: 1.75rem;
  }

  .disease-grid {
    grid-template-columns: 1fr;
  }

  .bundles-title {
    font-size: 1.5rem;
  }

  .close-button {
    width: 38px;
    height: 38px;
  }
}

/* Right Content - Image */
.vcn-human-right-content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* .vcn-human-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: var(--vcn-primary);
  border-radius: 20px;
  padding: 10px;
} */

.vcn-human-main-image {
  width: 100%;
  border-radius: 20px;
  /* height: 300px; */
  /* height: auto; */
  /* border-radius: 300px 0 0 300px; */
  /* object-fit: cover; */
  /* display: block; */
  /* margin-left: 15px; */
}

@media (max-width: 576px) {
  .vcn-human-heading {
    font-size: 1.75rem;
  }

  .vcn-human-description {
    font-size: 0.95rem;
  }
}
.vcn-testimonial-section {
  background: linear-gradient(180deg, #e8f5e0 0%, #f0f8ec 100%);
  padding: 80px 20px;
  position: relative;
}

.vcn-testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vcn-testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.vcn-testimonial-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vcn-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.vcn-testimonial-subtitle {
  font-size: 1rem;
  color: var(--vcn-dark);
  font-weight: 400;
  text-align: center;
}

/* Swiper Styles */
.vcn-swiper-container {
  width: 100%;
  padding-bottom: 60px;
}

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

.vcn-testimonial-card {
  background: #4a5d4a;
  border-radius: 24px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}

.vcn-testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Audio Control */
.vcn-audio-controls-global {
  position: relative;
  margin: 30px auto 20px auto;
  background: #c9f5a6; /* light green like your sample */
  border-radius: 40px;
  padding: 6px 10px 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Speaker button inside */
.vcn-audio-controls-global .vcn-audio-button {
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.vcn-audio-controls-global .vcn-audio-button svg {
  width: 24px;
  height: 24px;
  fill: var(--vcn-footer);
}

/* Avatar on the right side */
.vcn-audio-controls-global .vcn-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vcn-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Custom Pagination */
.vcn-custom-pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Default bullets */
.vcn-custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid var(--vcn-footer); /* green border */
  background: var(--vcn-footer); /* hollow circle */
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Active bullet */
.vcn-custom-pagination .swiper-pagination-bullet-active {
  background: transparent; /* filled green */
  border: 2px solid var(--vcn-footer); /* green border */
  transform: scale(1.1); /* slight pop effect */
}

/* Responsive */
@media (max-width: 768px) {
  .vcn-testimonial-title {
    font-size: 1.75rem;
  }

  .vcn-testimonial-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .vcn-testimonial-section {
    padding: 60px 15px;
  }

  .vcn-testimonial-title {
    font-size: 1.5rem;
  }

  .vcn-testimonial-subtitle {
    font-size: 0.9rem;
  }
}
/* ========== STORIES SECTION ========== */
.vcn-stories-section {
  background-color: var(--vcn-base-bg);
  padding: 80px 20px;
}

.vcn-stories-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== SECTION TITLE ========== */
.vcn-stories-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--vcn-primary);
  line-height: 1.3;
  margin-bottom: 50px;
  max-width: 600px;
}

/* ========== MEDIA GALLERY ========== */
.vcn-stories-media-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 400px;
}

.vcn-stories-media-gallery::-webkit-scrollbar {
  display: none;
}

.vcn-stories-media-gallery-track {
  display: flex;
  gap: 20px;
}

.vcn-stories-media-item {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.vcn-stories-media-item:hover {
  transform: scale(1.05);
}

/* Different sizes for variety - Larger sizes */
.vcn-stories-media-item:nth-child(1) {
  width: 280px;
}

.vcn-stories-media-item:nth-child(1) img {
  height: 400px;
  border-radius: 50%;
}

.vcn-stories-media-item:nth-child(2) {
  width: 260px;
  height: 100%;
}

.vcn-stories-media-item:nth-child(2) img {
  height: 400px;
}

.vcn-stories-media-item:nth-child(3) {
  width: 280px;
}

.vcn-stories-media-item:nth-child(3) img {
  height: 400px;
}

.vcn-stories-media-item:nth-child(4) {
  width: 300px;
}

.vcn-stories-media-item:nth-child(4) img {
  height: 193px;
}

.vcn-stories-media-item:nth-child(5) {
  width: 260px;
}

.vcn-stories-media-item:nth-child(5) img {
  height: 400px;
}

.vcn-stories-media-item:nth-child(6) {
  width: 280px;
}

.vcn-stories-media-item:nth-child(6) img {
  height: 400px;
}

.vcn-stories-media-item:nth-child(7) {
  width: 280px;
}

.vcn-stories-media-item:nth-child(7) img {
  height: 192px;
}

.vcn-stories-media-item img,
.vcn-stories-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay for text on media */
.vcn-stories-media-overlay {
  background: var(--vcn-light);
  padding: 34px;
  color: var(--vcn-footer);
  font-size: 0.85rem;
  line-height: 1.5;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-style: italic;
  margin-top: 12px;
}

.vcn-stories-media-overlay-source {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vcn-primary);
  font-style: normal;
}

/* ========== CONTENT CARDS GRID ========== */
.vcn-stories-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.vcn-stories-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Background image layer */
.vcn-stories-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.vcn-stories-card:nth-child(1)::before {
  background-image: url("https://res.cloudinary.com/dljz0lko8/image/upload/f_auto,q_auto/v1753460833/library/bookend/5f4e9939ee3b96921d9af4d502cbdd3edf2a3d2a.jpg");
}

.vcn-stories-card:nth-child(2)::before {
  background-image: url("https://res.cloudinary.com/dljz0lko8/image/upload/f_auto,q_auto/v1753995020/library/bookend/force-life.png");
}

/* Gradient overlay */
.vcn-stories-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
    135deg,
    rgba(69, 102, 60, 0.85) 0%,
    rgba(58, 95, 48, 0.75) 100%
  ); */
  z-index: 2;
}

/* Content on top */
.vcn-stories-card-content {
  position: relative;
  z-index: 3;
  color: var(--vcn-white);
}

.vcn-stories-card-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--vcn-white);
}

.vcn-stories-card-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.vcn-stories-card-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--vcn-white);
  color: var(--vcn-primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vcn-stories-card-btn:hover {
  background-color: var(--vcn-light);
  color: var(--vcn-primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .vcn-stories-title {
    font-size: 2.2rem;
  }

  .vcn-stories-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 992px) {
  .vcn-stories-section {
    padding: 60px 20px;
  }

  .vcn-stories-title {
    font-size: 2rem;
  }

  .vcn-stories-card-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .vcn-stories-title {
    font-size: 1.8rem;
  }

  .vcn-stories-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vcn-stories-card {
    min-height: 350px;
    padding: 40px 30px;
  }

  .vcn-stories-card-title {
    font-size: 1.8rem;
  }

  .vcn-stories-card-description {
    font-size: 1rem;
  }

  .vcn-stories-media-item:nth-child(1),
  .vcn-stories-media-item:nth-child(8) {
    width: 200px;
    height: 200px;
  }

  .vcn-stories-media-item:nth-child(2),
  .vcn-stories-media-item:nth-child(3),
  .vcn-stories-media-item:nth-child(4),
  .vcn-stories-media-item:nth-child(5),
  .vcn-stories-media-item:nth-child(6),
  .vcn-stories-media-item:nth-child(9),
  .vcn-stories-media-item:nth-child(10),
  .vcn-stories-media-item:nth-child(11),
  .vcn-stories-media-item:nth-child(12),
  .vcn-stories-media-item:nth-child(13) {
    width: 180px;
    height: 280px;
  }

  .vcn-stories-media-item:nth-child(7),
  .vcn-stories-media-item:nth-child(14) {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .vcn-stories-title {
    font-size: 1.5rem;
  }

  .vcn-stories-card-title {
    font-size: 1.6rem;
  }
}

/* ========== FOOTER SECTION ========== */
.vcn-footer-section {
  background-color: var(--vcn-footer);
  color: rgba(255, 255, 255, 0.8);
}
.vcn-container-footer {
  padding: 41px !important;
}
.vcn-footer-brand {
  margin-bottom: 40px;
}

.vcn-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vcn-white);
  margin-bottom: 30px;
}
.vcn-footer-logo img {
  width: 80px;
  height: 73px;
}

.vcn-footer-logo-circle {
  width: 20px;
  height: 20px;
  background-color: var(--vcn-white);
  border-radius: 50%;
}

.vcn-footer-tagline {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--vcn-white);
  margin-bottom: 20px;
  max-width: 600px;
}

.vcn-footer-tagline-icon {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.3rem;
}

.vcn-footer-newsletter {
  margin-top: 40px;
  max-width: 500px;
}

.vcn-footer-newsletter-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vcn-white);
  margin-bottom: 8px;
}

.vcn-footer-newsletter-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.vcn-footer-newsletter-form {
  position: relative;
}

.vcn-footer-newsletter-input {
  position: relative;
  width: 100%;
  padding: 16px 60px 16px 20px;
  background: transparent;
  border: 2px solid var(--vcn-white);
  border-radius: 8px;
  color: var(--vcn-white);
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.vcn-footer-newsletter-form {
  display: flex;
  align-items: center;
  position: relative;
}

.vcn-footer-input-wrapper {
  position: relative;
  flex: 1;
}

/* Default input */
.vcn-footer-newsletter-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  background: transparent;
  border: 2px solid var(--vcn-white);
  border-radius: 8px;
  color: var(--vcn-white);
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.vcn-footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Focus: green border outside */
.vcn-footer-newsletter-input:focus {
  outline: none;
}

.vcn-footer-input-wrapper:has(.vcn-footer-newsletter-input:focus)::after {
  content: "";
  position: absolute;
  inset: -4px; /* space for double border */
  border: 2px solid var(--vcn-badge);
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
}

/* Button styling */
.vcn-footer-newsletter-btn {
  position: absolute;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--vcn-white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.vcn-footer-newsletter-btn:hover {
  color: var(--vcn-primary);
}

.vcn-footer-newsletter-input::placeholder {
  color: var(--vcn-white);
}

.vcn-footer-newsletter-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--vcn-white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.vcn-footer-newsletter-btn:hover {
  transform: translateY(-50%) translateX(4px);
}

.vcn-footer-disclaimer {
  margin-top: 20px;
  padding: 15px;
  background: transparent;
  border: 1px solid var(--vcn-primary);
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--vcn-white);
}

/* Footer Links */
.vcn-footer-links-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.vcn-footer-column-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vcn-badge);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.vcn-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vcn-footer-links-list li {
  margin-bottom: 12px;
}

.vcn-footer-link {
  color: var(--vcn-white);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.vcn-footer-link:hover {
  color: var(--vcn-white);
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .vcn-footer-tagline {
    font-size: 1.3rem;
  }

  .vcn-footer-links-section {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .vcn-footer-section {
    padding: 60px 0 30px;
  }

  .vcn-footer-logo {
    font-size: 1.7rem;
  }

  .vcn-footer-tagline {
    font-size: 1.2rem;
  }

  .vcn-footer-column-title {
    margin-top: 30px;
  }
}

/* ========== AWAKEN WITHIN SECTION ========== */
.vcn-awaken-section {
  position: relative;
  height: 40vh;
  width: 100%;
  overflow: hidden;
  background-image: url("https://res.cloudinary.com/dljz0lko8/image/upload/f_auto,q_auto/v1752265586/library/footer/footer-fpo.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* GIF/Animation Container */
.vcn-awaken-gif-container {
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease-out;
}

.vcn-awaken-gif-container.vcn-loaded {
  opacity: 1;
  transform: scale(1);
}

.vcn-awaken-gif {
  max-width: 90%;
  width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Copyright Text */
.vcn-awaken-copyright {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease-in 0.5s;
}

.vcn-awaken-copyright.vcn-show {
  opacity: 1;
}

/* Optional: Add a subtle overlay */

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .vcn-awaken-gif {
    width: 95%;
  }

  .vcn-awaken-copyright {
    font-size: 0.8rem;
    bottom: 20px;
  }
}

/* Breadcrumb area */
.vcn-breadcrumb-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: var(--vcn-footer);
}

.vcn-breadcrumb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img//bg/bg-2.webp");
  background-size: cover;
  background-position: center;
  border-radius: 0 0 50px 50px;
}

.vcn-breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  border-radius: 0 0 50px 50px;
}

.vcn-breadcrumb-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vcn-breadcrumb-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  max-width: 700px;

  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .vcn-breadcrumb-container {
    height: 300px;
  }

  .vcn-breadcrumb-content {
    padding: 40px 20px;
  }

  .vcn-breadcrumb-title {
    font-size: 36px;
  }
}

.vcn-product-section {
  background-color: var(--vcn-footer);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.vcn-product-card {
  background: var(--vcn-primary);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  height: 100%;
}

.vcn-product-content {
  display: flex;
  gap: 0px;
  align-items: flex-start;
}

.vcn-product-image {
  flex-shrink: 0;
}

.vcn-product-bottle {
  max-height: 320px;
  height: auto;
  display: block;
}

.vcn-product-info {
  flex: 1;
}

.vcn-product-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}

.vcn-product-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vcn-product-price {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vcn-product-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vcn-btn-primary {
  background: #ffffff;
  color: var(--vcn-footer);
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.vcn-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--vcn-footer);
}

.vcn-btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.vcn-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.vcn-image-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

.vcn-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcn-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 30px;
}

.vcn-image-text {
  background-color: transparent;
  backdrop-filter: blur(32px);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .vcn-product-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vcn-product-buttons {
    justify-content: center;
  }

  .vcn-image-section {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .vcn-product-card {
    padding: 30px 20px;
  }

  .vcn-product-title {
    font-size: 24px;
  }

  .vcn-product-price {
    font-size: 24px;
  }

  .vcn-product-buttons {
    flex-direction: column;
    width: 100%;
  }

  .vcn-btn-primary,
  .vcn-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.vcn-new-product {
  padding: 40px;
  border-radius: 50px 50px 0 0;
  background-color: #ffff;
}

.product-card {
  background: var(--vcn-product);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  flex-shrink: 0;
  width: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #4a5d4a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 1;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-label {
  display: inline-block;
  border: 1px solid #d0d0d0;
  color: var(--vcn-footer);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  width: fit-content;
}

.product-title {
  color: var(--vcn-footer);
  font-size: 2rem;
  /* font-weight: 700; */
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-description {
  color: var(--vcn-footer);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.product-price {
  color: var(--vcn-footer);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-price .old-price {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-learn {
  background: var(--vcn-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-learn:hover {
  background: var(--vcn-footer);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-cart {
  background: transparent;
  color: var(--vcn-footer);
  padding: 10px 20px;
  border-radius: 24px;
  border: 2px solid var(--vcn-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cart:hover {
  background: var(--vcn-primary);
  color: #ffffff;
}

@media (max-width: 576px) {
  .product-card {
    flex-direction: column;
    text-align: center;
  }

  .product-image-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }

  .product-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .product-label {
    margin-left: auto;
    margin-right: auto;
  }

  .product-actions {
    flex-direction: column;
  }
}

/* product details */
.product-detail-section {
  padding: 102px 0 0 0;
}

.product-image-card {
  background: #e8e8e0;
  border-radius: 16px;
  /* padding: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-image-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.product-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
}

.product-details-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 12px;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stars {
  color: var(--vcn-footer);
  font-size: 16px;
}

.stars i {
  margin-right: 2px;
}

.rating-text {
  color: var(--vcn-footer);
  font-size: 14px;
}

.product-details-description {
  color: var(--vcn-footer);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-section {
  margin-bottom: 5px;
}

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--vcn-footer);
}

.old-price {
  font-size: 18px;
  color: var(--vcn-light);
  text-decoration: line-through;
  margin-left: 10px;
}

.delivery-info {
  /* padding: 12px 16px; */
  border-radius: 8px;
  font-size: 1rem;
  color: var(--vcn-footer);
  margin-bottom: 8px;
}

.btn-start-now {
  background: var(--vcn-primary);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-start-now:hover {
  background: var(--vcn-footer);
  transform: translateY(-1px);
  color: #ffffff;
}

.subscribe-text {
  text-align: center;
  font-size: 1rem;
  color: var(--vcn-primary);
  margin-bottom: 20px;
}

/* WRAPPER */
.vcn-accordion {
  border-top: 1px solid #d4d4d4;
}

/* HEADER */
.vcn-acc-header {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--vcn-footer);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.vcn-acc-item {
  border-bottom: 1px solid #ddd;
}
/* PLUS MINUS ICON */
.vcn-acc-icon {
  font-size: 22px;
  font-weight: bold;
}

/* BODY */
.vcn-acc-body {
  padding: 5px 0 15px 0;
  /* border-bottom: 1px solid #ddd; */
  display: none;
}

/* BULLET LIST */
.vcn-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vcn-benefits-list li {
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  line-height: 1.5;
  color: var(--vcn-footer);
  position: relative;
  padding-left: 18px;
}

.vcn-benefits-list li::before {
  content: "•";
  color: var(--vcn-footer);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
/* Overlay */
.clinical-overlay {
  position: fixed;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
  z-index: 99998;
  display: none;
}

/* ========== CLINICAL SIDEBAR ========== */
.clinical-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 500px;
  height: 100vh;
  background: var(--vcn-product);
  z-index: 99999;
  padding: 25px;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
}

/* Sidebar active */
.clinical-sidebar.active {
  right: 0;
}

/* Overlay for backdrop */
.clinical-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99998;
  display: none;
  transition: opacity 0.3s ease;
}

.clinical-overlay.active {
  display: block;
}

/* Header */
.clinical-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.clinical-sidebar-header h5 {
  font-size: 20px;
  color: var(--vcn-footer);
  margin: 0;
  font-weight: 600;
}

.clinical-close {
  font-size: 32px;
  cursor: pointer;
  color: var(--vcn-footer);
  background: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.clinical-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

.clinical-content {
  display: none;
}

/* Content */
.clinical-sidebar-content h5,
.clinical-sidebar-content h4 {
  color: var(--vcn-footer);
  margin-top: 20px;
}

.clinical-sidebar-content p {
  color: var(--vcn-footer);
  margin-bottom: 12px;
  font-size: 17px;
}

.clinical-sidebar-content ul {
  margin-left: 20px;
  margin-bottom: 25px;
}

.clinical-sidebar-content ul li {
  margin-bottom: 8px;
  color: var(--vcn-footer);
  font-size: 17px;
  font-weight: 400;
}

.clinical-content-start {
  border-bottom: 2px dotted var(--vcn-footer);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.clinical-content-start:last-child {
  border-bottom: none;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .clinical-sidebar {
    width: 85%;
    max-width: 400px;
    right: -100%;
    padding: 20px;
  }

  .clinical-sidebar.active {
    right: 0;
  }

  .clinical-sidebar-header {
    position: sticky;
    top: 0;
    background: var(--vcn-product);
    z-index: 10;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .clinical-sidebar-header h5 {
    font-size: 18px;
  }

  .clinical-close {
    font-size: 28px;
    width: 36px;
    height: 36px;
  }

  .clinical-sidebar-content h5,
  .clinical-sidebar-content h4 {
    font-size: 16px;
    margin-top: 15px;
  }

  .clinical-sidebar-content p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .clinical-sidebar-content ul {
    margin-left: 15px;
    margin-bottom: 20px;
  }

  .clinical-sidebar-content ul li {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .clinical-content-start {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .clinical-sidebar {
    width: 90%;
    padding: 15px;
  }

  .clinical-sidebar-header h5 {
    font-size: 16px;
  }

  .clinical-close {
    font-size: 26px;
    width: 32px;
    height: 32px;
  }

  .clinical-sidebar-content h5,
  .clinical-sidebar-content h4 {
    font-size: 15px;
  }

  .clinical-sidebar-content p {
    font-size: 14px;
  }

  .clinical-sidebar-content ul li {
    font-size: 14px;
  }
}
/* LINK */
.vcn-clinical-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 17px;
  color: var(--vcn-footer);
  text-decoration: none;
  cursor: pointer;
}

.vcn-clinical-link:hover {
  color: var(--vcn-footer);
}

.product-gallery .gallery-item {
  background: #e8e8e0;
  border-radius: 12px;
  overflow: hidden;
  /* height: 215px; */
}

.gallery-item img {
  max-width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .product-title {
    font-size: 24px;
  }

  .product-info {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}
.product-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px; /* slightly reduced */
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px 20px 0 0;
}

.product-image-cards img {
  max-width: 100%;
  max-height: 100%;
  height: auto; /* critical: preserve aspect ratio */
  width: auto;
  cursor: pointer;
  object-fit: contain; /* ensures full image is visible without cropping */
}
/* Reduce thumbnail size */
.thumb {
  width: 100%;
  max-height: 220px; /* limit height */
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  object-fit: cover;
}

.thumb:hover {
  transform: scale(1.03);
}

/* Optional: Add gap between thumbnails */
.product-gallery {
  padding: 4px;
}
.bundle-card {
  display: flex;
  align-items: center;
  background-color: #f5f7f3; /* Soft light green background */
  border-radius: 12px;
  padding: 12px;
  gap: 20px;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.bundle-image img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.bundle-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin: 0 0 8px 0;
}

.bundle-content p {
  font-size: 14px;
  color: var(--vcn-footer);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.bundle-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-price .current-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--vcn-footer);
}

.bundle-price .original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.add-button {
  border: 2px solid var(--vcn-footer);
  color: var(--vcn-footer);
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  text-decoration: none;
}

.add-button:hover {
  background-color: var(--vcn-primary);
  border: 2px solid var(--vcn-primary);
  color: white;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .bundle-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .bundle-image img {
    width: 100px;
  }

  .bundle-action {
    width: 100%;
    margin-top: 18px;
  }

  .add-button {
    width: 100%;
  }
}
/* UNIQUE PRODUCT PREVIEW MODAL */
.productPreviewModal {
  display: none;
  position: fixed;
  z-index: 999999 !important; /* comes above everything */
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;

  /* darker background */
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
}

/* Main popup image */
.productPreviewModal-content {
  margin: auto;
  display: block;
  max-width: 40%;
  border-radius: 10px;
}

/* Close button */
.productPreviewModal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1000000;
}

/* Thumbnail Row */
.productPreviewModal-thumbs {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.productPreviewModal-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.productPreviewModal-thumbs img:hover {
  transform: scale(1.1);
}

/* health section */
.health-section-bg {
  padding: 20px;
}
.health-section-below {
  background-image: url(https://assets.embeddables.com/Container31_003948090164523355.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 68px 0;
  color: white;
  border-radius: 32px;
  position: relative;
  min-height: 300px; /* Optional: ensures height if content is small */
}

.video-centered {
  max-width: 100%; /* Adjust as needed — controls size */
  max-height: 100%; /* Ensures video doesn't overflow container */
  width: auto;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

/* Optional: Scale up on hover */
.video-centered:hover {
  transform: scale(1.05);
}
.ds01-viacap-hero-area-below {
  border-radius: 32px;
  background-color: #a3b46c;
}
.health-section {
  background-image: url(https://assets.embeddables.com/Container31_003948090164523355.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 68px 0px 12px 0;
  color: white;
  border-radius: 32px;
}
.feature-top {
  padding: 81px 0px 0 0;
}

.feature-bg {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0px;
  border-radius: 12px;
}
.feature-card {
  padding: 0 30px;
  height: 100%;

  transition: transform 0.3s ease, background 0.3s ease;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  fill: white;
}

.feature-title {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
}

.formulation-section {
  background: var(--vcn-footer);
  padding: 60px 40px;
  color: white;
  border-radius: 50px;
  margin: 20px auto;
  max-width: 1400px;
  position: relative;
  overflow: hidden;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.left-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
}

.left-content p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.toggle-container {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.toggle-btn {
  background: transparent;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.toggle-btn.active {
  background: white;
  color: var(--vcn-footer);
  font-weight: 600;
}

.toggle-btn:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.toggle-btn.active:before {
  background: var(--vcn-footer);
}

.center-divider {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  min-width: 250px;
}

.capsule-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.capsule-info {
  position: relative;
  padding: 25px 0;
}

/* FIRST BLOCK → TOP LINE + DOT */
.capsule-info:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
}

.capsule-info:first-child::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

/* SECOND BLOCK → TOP LINE + DOT */
.capsule-info:last-child::before {
  content: "";
  position: absolute;
  top: 0; /* line above second text */
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
}

.capsule-info:last-child::after {
  content: "";
  position: absolute;
  top: -3px; /* dot aligned on line */
  right: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.capsule-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.capsule-info p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
  color: white;
}

.product-container {
  position: relative;
  text-align: center;
}

.bottle-image {
  width: 100%;
  /* max-width: 280px; */
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  display: block;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .center-divider {
    display: none;
  }

  .left-content h2 {
    font-size: 32px;
  }
}

.reviews-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 40px 20px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--vcn-footer);
}

.rating-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.rating-score {
  text-align: center;
}

.rating-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 5px;
}

.stars {
  color: #ffa500;
  font-size: 20px;
  margin-bottom: 5px;
}

.rating-count {
  font-size: 18px;
  color: var(--vcn-footer);
}

.divider {
  width: 1px;
  height: 120px;
  background: #d0d0d0;
  align-self: center;
}

.rating-bars {
  flex: 1;
  max-width: 400px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.star-label {
  font-size: 12px;
  color: var(--vcn-footer);
  min-width: 40px;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--vcn-footer);
  transition: width 0.3s ease;
}

.bar-count {
  font-size: 12px;
  color: var(--vcn-footer);
  min-width: 35px;
  text-align: right;
}

.search-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.search-box {
  flex: 1;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.sort-dropdown {
  min-width: 200px;
}

.sort-dropdown select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  cursor: pointer;
}

.results-info {
  font-size: 17px;
  color: var(--vcn-footer);
  margin-bottom: 20px;
}

.clear-filters {
  color: var(--vcn-footer);
  text-decoration: underline;
  cursor: pointer;
  margin-left: 5px;
}

.review-card {
  font-family: "Inter", sans-serif;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* ROW 1 */
.row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-block {
  display: flex;
  gap: 55px;
  align-items: center;
}

.name {
  font-size: 15px;
  font-weight: 600;
  color: var(--vcn-footer);
}

.loc {
  font-size: 10px;
  color: var(--vcn-footer);
}

.stars {
  font-size: 16px;
  color: #ffaa00;
  white-space: nowrap;
}

.date {
  font-size: 13px;
  color: #777;
}

/* ROW 2 */
.row-2 {
  display: flex;
  gap: 61px;
  margin-top: 6px;
}

.verified {
  font-size: 13px;
  color: var(--vcn-footer);
  white-space: nowrap;
}

.text {
  font-size: 14px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* ROW 3 (HELPFUL) */
.row-3 {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

.row-3 i {
  margin: 0 4px;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}

.page-btn,
.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--vcn-footer);
  padding: 5px;
  transition: 0.2s;
}

.page-btn.active {
  font-weight: 600;
}

.page-btn:hover:not(.active),
.arrow-btn:hover:not(.disabled) {
  opacity: 0.6;
}

.arrow-btn.disabled {
  color: #d3d3d3;
  cursor: default;
}

/* ========== MOBILE RESPONSIVE ========== */

@media (max-width: 991px) {
  .reviews-section {
    padding: 30px 15px;
    margin: 20px auto;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .rating-overview {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .rating-flex {
    flex-direction: column;
    gap: 10px;
  }

  .rating-number {
    font-size: 40px;
  }

  .stars {
    font-size: 18px;
  }

  .rating-count {
    font-size: 14px;
  }

  .rating-bars {
    width: 100%;
    max-width: 100%;
  }

  .search-sort-bar {
    flex-direction: column;
    gap: 15px;
  }

  .search-box,
  .sort-dropdown {
    width: 100%;
  }

  .sort-dropdown {
    min-width: 100%;
  }

  .results-info {
    font-size: 15px;
    text-align: center;
  }

  .review-card {
    padding: 20px 0;
  }

  .row-1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .left-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .date-block {
    width: 100%;
    text-align: left;
  }

  .row-2 {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .row-3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .help-icons {
    display: flex;
    gap: 15px;
  }

  .pagination {
    justify-content: center;
    gap: 10px;
  }

  .page-btn,
  .arrow-btn {
    font-size: 18px;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 20px 10px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .rating-number {
    font-size: 36px;
  }

  .stars {
    font-size: 16px;
  }

  .rating-count {
    font-size: 13px;
  }

  .rating-bar-item {
    gap: 8px;
  }

  .star-label {
    font-size: 11px;
    min-width: 35px;
  }

  .bar-count {
    font-size: 11px;
    min-width: 30px;
  }

  .search-box input {
    padding: 10px 15px 10px 35px;
    font-size: 13px;
  }

  .search-icon {
    left: 10px;
  }

  .sort-dropdown select {
    font-size: 13px;
  }

  .name {
    font-size: 14px;
  }

  .verified {
    font-size: 12px;
  }

  .text {
    font-size: 13px;
  }

  .row-3 {
    font-size: 12px;
  }

  .pagination {
    gap: 8px;
    flex-wrap: wrap;
  }

  .page-btn,
  .arrow-btn {
    font-size: 16px;
    padding: 6px 10px;
  }
}
/* Hero Section */
.approach-hero-section {
  padding: 30px 20px;
  text-align: center;
  margin-top: 250px;
}

.approach-hero-section h3 {
  font-size: 2.5rem;
  line-height: 1.8;
  color: var(--vcn-footer);
  text-align: left;
}
.approach-hero-section p {
  max-width: 800px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--vcn-footer);
  text-align: left;
}
.approach-human-section {
  padding: 30px 20px;
  text-align: center;
  margin-top: 50px;
}

.approach-human-section p {
  max-width: 400px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--vcn-footer);
  text-align: left;
}
.approach-human-section h6 {
  margin-bottom: 20px;
  color: var(--vcn-footer);
  text-align: left;
}

/* Section Base Styles */
.approach-section {
  padding: 10px 20px;
  position: relative;
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  height: 2px;
  background: var(--vcn-footer);
}

.section-header {
  display: flex;
  /* align-items: center; */
  margin-bottom: 60px;
  justify-content: space-between;
  position: relative;
}

.section-number {
  font-size: 3rem;

  color: var(--vcn-footer);
  min-width: 40px;

  padding-right: 20px;
}

.section-title {
  font-size: 3rem;

  color: var(--vcn-footer);

  padding-right: 40px;
}

.section-content {
  display: grid;
  gap: 40px;
}

/* Section 01 - Strains */
.strains-viz img {
  width: 100%;
}
.strains-viz p {
  font-size: 0.9rem;
  color: var(--vcn-footer);
  margin-top: 20px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.column h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--vcn-footer);
}

.column p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--vcn-footer);
}
.col-new h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--vcn-footer);
  text-align: center;
}
.col-new p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--vcn-footer);
  text-align: center;
}
.view-taxonomy-btn {
  margin-bottom: 20px;
  background: transparent;
  border: none !important;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.view-taxonomy-btn:hover {
  color: var(--vcn-footer);
}

.plus-icon {
  width: 25px;
  height: 25px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Taxonomy Slide Panel */
.taxonomy-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  background: #f5f5f0;
  z-index: 1000;
  transition: right 0.4s ease-in-out;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.taxonomy-panel.open {
  right: 0;
}

.taxonomy-header {
  padding: 40px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.taxonomy-header h2 {
  font-size: 32px;
  font-weight: 300;
}

.close-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #f0f0f0;
}

.taxonomy-content {
  padding: 60px 40px;
}

.taxonomy-legend {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.genus-dot {
  background: var(--vcn-primary);
}
.species-dot {
  background: #7a9b76;
}
.strain-dot {
  background: #c8d5c4;
}

.taxonomy-tree {
  margin-top: 40px;
}

.genus-row {
  margin-bottom: 60px;
}

.genus-bar {
  background: var(--vcn-primary);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.species-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.species-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.species-branch::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #ddd;
  border-left: 2px dashed #999;
}

.species-pill {
  background: #7a9b76;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  min-width: 180px;
}

.strains-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.strain-item {
  background: #c8d5c4;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vcn-footer);
  min-width: 160px;
  text-align: center;
  position: relative;
}

.strain-item::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 2px;
  height: 15px;
  background: #ddd;
  border-left: 2px dashed #999;
}

.taxonomy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.taxonomy-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Section 02 - Biofermentation */
.biofermentation-image img {
  width: 100%;
}

/* Section 03 - Validation */
.validation-grid {
  display: grid;
  gap: 60px;
}

.validation-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.validation-visual img {
  width: 100%;
}

/* Section 04 - SHINE */
.shine-capsules img {
  width: 100%;
}

/* Section 05 - Testing */
.testing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testing-image img {
  width: 100%;
}

.testing-list {
  list-style: none;
}

.testing-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: var(--vcn-footer);
}

/* Team Section */
.team-section {
  padding: 100px 20px;
  background: #fafafa;
}

.team-header {
  display: flex;
  justify-content: space-between;

  margin-bottom: 60px;
  gap: 30rem;
}

.team-header h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--vcn-footer);
}
.team-header p {
  font-size: 18px;

  margin-bottom: 20px;
  color: var(--vcn-footer);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.team-member {
  text-align: center;
}

.member-photo img {
  width: 100%;
  margin-bottom: 15px;
}

.member-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--vcn-footer);
}

.member-title {
  font-size: 17px;
  color: var(--vcn-footer);
}
.marquee {
  color: var(--vcn-footer);
  margin-bottom: 4rem;
}
/* Microbiomes Section */
.microbiomes-section {
  padding: 100px 20px;
  text-align: center;
}

.microbiomes-section p {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: var(--vcn-footer);
}

.microbiome-circles {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.microbiome-info a {
  margin-top: 20px;
  color: var(--vcn-footer);
  cursor: pointer;
}
.microbiome-info:hover a {
  margin-top: 20px;
  color: var(--vcn-footer);
}
.microbiome-circle img {
  width: 200px;
  height: 200px;
}

/* Product Section */
.product-section {
  padding: 348px 20px;
  background: url("https://res.cloudinary.com/dljz0lko8/image/upload/f_auto,q_auto/v1618934492/approach/Seed_Approach_Footer_Desktop_v2.jpg");
  background-size: cover;
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    gap: 20px;
  }

  .two-column,
  .validation-item,
  .testing-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .microbiome-circles {
    flex-wrap: wrap;
  }
  .microbiome-circle .microbiome-heading {
    margin-top: 20px;
    color: var(--vcn-footer);
  }
  .section-title {
    font-size: 32px;
  }
}

/* popup */
.promo-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-overlay-bg.promo-active-modal {
  display: flex;
  opacity: 1;
}

.promo-modal-container {
  background: white;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.promo-overlay-bg.promo-active-modal .promo-modal-container {
  transform: scale(1);
}

.promo-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  z-index: 1000000;
  transition: opacity 0.2s ease;
  font-weight: 300;
  line-height: 1;
}

.promo-close-btn:hover {
  opacity: 0.6;
}

.promo-image-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  position: relative;
}

.promo-discount-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #c8e6c9;
  color: var(--vcn-footer);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.promo-product-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.promo-form-section {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.promo-heading-text {
  font-size: 38px;
  font-weight: 600;
  color: var(--vcn-primary);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.promo-subheading-text {
  font-size: 15px;
  color: var(--vcn-primary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.promo-subheading-text .promo-asterisk-symbol {
  color: var(--vcn-primary);
}

.promo-input-field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 14px;
  transition: all 0.2s ease;
  outline: none;
  background: #f5f5f5;
  color: #333;
}

.promo-input-field:focus {
  border-color: var(--vcn-badge);
  background: white;
}

.promo-input-field::placeholder {
  color: var(--vcn-primary);
}

.promo-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--vcn-footer);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 14px;
}

.promo-submit-btn:hover {
  background: var(--vcn-primary);
}

.promo-consent-text {
  font-size: 11px;
  color: var(--vcn-primary);
  line-height: 1.6;
}

.promo-consent-text .promo-asterisk-symbol {
  color: var(--vcn-primary);
}

@media (max-width: 768px) {
  .promo-overlay-bg {
    padding: 20px;
    align-items: center;
  }

  .promo-modal-container {
    flex-direction: column;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    margin: auto;
  }

  .promo-close-btn {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    font-size: 22px;
  }

  .promo-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
  }

  .promo-image-section {
    min-height: 200px;
    padding: 30px 20px 20px;
  }

  .promo-discount-badge {
    top: 15px;
    left: 15px;
    font-size: 12px;
    padding: 5px 12px;
  }

  .promo-product-image {
    max-height: 180px;
    width: auto;
  }

  .promo-form-section {
    padding: 30px 25px;
  }

  .promo-heading-text {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .promo-subheading-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .promo-input-field {
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .promo-submit-btn {
    padding: 13px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .promo-consent-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .promo-overlay-bg {
    padding: 15px;
  }

  .promo-modal-container {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 12px;
  }

  .promo-image-section {
    min-height: 160px;
    padding: 25px 15px 15px;
  }

  .promo-product-image {
    max-height: 150px;
    width: 253px;
    border-radius: 25px;
  }

  .promo-form-section {
    padding: 25px 20px;
  }

  .promo-heading-text {
    font-size: 22px;
  }

  .promo-subheading-text {
    font-size: 13px;
  }
}
/* cart pagre */
.cart-main-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 165px 20px;
}

.cart-page-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--vcn-footer);
}

.cart-table-header {
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.cart-header-product {
  font-size: 14px;
  font-weight: 600;
  color: var(--vcn-footer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-item-wrapper {
  border-bottom: 2px solid #d0d0c8;
  padding: 20px 0;
}

.cart-product-image {
  width: 100px;
  height: 100px;
  /* object-fit: cover; */
  /* border-radius: 8px; */
  /* background-color: #f8f8f8; */
}

.cart-product-details {
  flex: 1;
}

.cart-product-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 5px;
}

.cart-product-subscription {
  font-size: 14px;
  color: var(--vcn-footer);
}

.cart-quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
}

.cart-qty-button {
  background: white;
  border: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 18px;
  color: var(--vcn-footer);
  transition: background-color 0.2s;
}

.cart-qty-button:hover {
  background-color: #f5f5f5;
}

.cart-qty-display {
  width: 50px;
  text-align: center;
  /* border-left: 1px solid #ddd;
  border-right: 1px solid #ddd; */
  font-weight: 500;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--vcn-footer);
}

.cart-recommendations-title {
  font-size: 18px;
  font-weight: 600;
  margin: 50px 0 30px;
  color: var(--vcn-footer);
}

.cart-product-card {
  text-align: center;
  /* padding: 20px; */
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  transition: box-shadow 0.3s;
  background-color: #f8f8f8;
}

.cart-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-suggested-image {
  width: 150px;
  height: 150px;
  /* object-fit: cover; */
  margin: 0 auto 20px;
  /* background-color: #f8f8f8; */
  /* border-radius: 8px; */
}

.cart-suggested-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 5px;
}

.cart-suggested-description {
  font-size: 13px;
  color: var(--vcn-footer);
  margin-bottom: 15px;
}

.cart-price-wrapper {
  margin-bottom: 15px;
}

.cart-current-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--vcn-footer);
  /* margin-right: 8px; */
}

.cart-original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 20px;
}

.cart-add-btn {
  background-color: white;
  border: 1px solid var(--vcn-primary);
  color: var(--vcn-primary);
  padding: 6px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.cart-add-btn:hover {
  background-color: var(--vcn-footer);
  color: white;
}

.cart-sidebar-wrapper {
  position: sticky;
  top: 20px;
}

.cart-promo-section {
  /* background-color: #f8f8f8; */
  /* padding: 25px; */
  border-radius: 12px;
  margin-bottom: 20px;
}

.cart-promo-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--vcn-footer);
  margin: 50px 0 30px;
}

.cart-promo-input-group {
  display: flex;
  /* gap: 10px; */
}

.cart-promo-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  /* border-radius: 6px; */
  font-size: 14px;
}

.cart-promo-apply-btn {
  background-color: var(--vcn-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  /* border-radius: 6px;/ */
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.cart-promo-apply-btn:hover {
  background-color: var(--vcn-footer);
}

.cart-total-section {
  /* background-color: #f8f8f8; */
  /* padding: 25px; */
  border-radius: 12px;
  margin-bottom: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cart-total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--vcn-footer);
}

.cart-total-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--vcn-footer);
}

.cart-checkout-btn .btn {
  width: 100%;
  background-color: var(--vcn-primary);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cart-checkout-btn:hover {
  background-color: var(--vcn-footer);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cart-item-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .cart-product-image {
    margin-bottom: 15px;
  }

  .cart-sidebar-wrapper {
    position: static;
    margin-top: 30px;
  }
}
/* login page */
.auth-wrapper-main {
  padding: 141px 0;
  /* max-width: 500px; */
  width: 100%;
}

.auth-heading-primary {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 40px;
  text-align: left;
  padding: 50px;
}

.auth-card-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 18px;
}

.auth-section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.auth-social-button {
  color: var(--vcn-footer);
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s;
}

.auth-social-button:hover {
  background-color: #f8f8f8;
}

.auth-social-icon {
  width: 18px;
  height: 18px;
}

.auth-separator-line {
  text-align: center;
  margin: 25px 0;
  position: relative;
  color: var(--vcn-primary);
  font-size: 14px;
}

.auth-separator-line::before,
.auth-separator-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: var(--vcn-primary);
}

.auth-separator-line::before {
  left: 0;
}

.auth-separator-line::after {
  right: 0;
}

.auth-field-group {
  margin-bottom: 20px;
}

.auth-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--vcn-footer);
}

.auth-input-field {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.auth-input-field:focus {
  border-color: var(--vcn-badge);
}

.auth-submit-button {
  width: auto;
  padding: 12px 40px;
  background-color: var(--vcn-footer);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-submit-button:hover {
  background-color: var(--vcn-primary);
}

.auth-help-links {
  margin-top: 20px;
  text-align: right;
}

.auth-link-item {
  display: block;
  color: var(--vcn-footer);
  text-decoration: underline;
  font-size: 13px;
  margin-top: 8px;
}

.auth-link-item:hover {
  color: var(--vcn-primary);
}

/* product details page hand section */
.probiotic-hero-section {
  background: url("https://assets.embeddables.com/f22a48b2aa5521b5daa286957b713df816ce28e911_46741135855344673.png");
  padding: 40px 0;
  overflow: hidden;
}

.hero-headline {
  color: var(--vcn-white);
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 30px;
}

.evidence-btn {
  background: white;
  color: #2d5233;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.evidence-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  color: var(--vcn-footer);
}

.left-section {
  padding: 80px 0 0 80px;
  position: relative;
}

.hand-image {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 100%;
  max-width: 100%;
}

.hand-image img {
  width: 110%;
  height: auto;
  display: block;
}

.right-section {
  padding: 80px 80px 80px 40px;
}

.benefits-panel {
  background: transparent;
  border: none;
  /* border-bottom: 1px solid rgba(255,255,255,0.2); */
  border-top: 1px solid var(--vcn-white);
  margin-bottom: 0;
  padding: 15px 0;
}

.benefits-panel:last-child {
  border-bottom: 1px solid var(--vcn-white);
}

.panel-header-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.duration-badge {
  color: var(--vcn-footer);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
  background-color: #8f9a8b;
  padding: 5px;
  border-radius: 30px;
}

.panel-title {
  color: var(--vcn-white);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
}

.toggle-icon {
  color: white;
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}

.panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 0;
}

.panel-content.show {
  max-height: 500px;
  padding-top: 15px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  display: flex;
  align-items: start;
}

.benefit-list li::before {
  content: "•";
  color: white;
  font-size: 1.2rem;
  margin-right: 10px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .left-section,
  .right-section {
    padding: 40px;
  }

  .hand-image {
    position: relative;
    max-width: 300px;
    margin-top: 40px;
  }
}
/* product details video */
.ds01-difference-section {
  padding: 60px 0;
}

.ds01-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
}

.ds01-section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.ds01-video-container {
  position: relative;
  /* background-color: #c4c4c4; */
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.ds01-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
}

.ds01-video-text {
  color: white;
  font-size: 1.3rem;
  font-weight: 300;
  text-align: left;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  max-width: 400px;
}

/* 🔹 New: wrapper just for video (keeps aspect ratio & radius) */
.ds01-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

/* 🔹 Keep controls overlaid ON the video */
.ds01-video-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ds01-control-btn {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.ds01-control-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.ds01-control-btn i {
  color: white;
  font-size: 1rem;
}

/* 🔹 Doctor info: NO absolute positioning! */
.ds01-doctor-info {
  color: var(--vcn-footer);
  margin-top: 16px; /* space below video */
  padding-left: 4px; /* optional subtle indent */
  font-size: 1rem;
}

.ds01-doctor-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.ds01-doctor-title {
  font-size: 0.9rem;
  opacity: 0.9;
}

.ds01-feature-card {
  border: none;
  background: transparent;
  margin-bottom: 2rem;
}

.ds01-feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.ds01-feature-divider {
  border-top: 2px dashed #d1d5db;
  margin: 1rem 0 1.5rem 0;
}

.ds01-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.ds01-feature-description {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ds01-section-title {
    font-size: 2rem;
  }

  .ds01-video-text {
    font-size: 1.1rem;
    padding: 30px;
    left: 20px;
  }
}

/* capsule animated area */
.ds01-viacap-hero-area {
  background: var(--vcn-footer);
  min-height: 50vh;
  /* padding: 10px 0; */
  color: white;
  position: relative;
  overflow: hidden;
}

.ds01-flex-layout-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ds01-left-text-block {
  flex: 1;
}

.ds01-title-large-text {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

.ds01-viacap-pill-badge {
  display: inline-block;
  background: white;
  color: var(--vcn-footer);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}
.ds01-viacap-pill-badge:hover {
  background: white;
  color: var(--vcn-footer);
}

.ds01-right-visual-area {
  flex: 1;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds01-capsule-stage-box {
  position: relative;
  width: 150px;
  height: 500px;
  margin: 0 auto;
}

.ds01-green-cap-upper-part {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: auto;
  z-index: 3;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ds01-green-cap-upper-part.ds01-animate-open {
  opacity: 1;
  transform: translate(-50%, -180%);
}

.ds01-white-cap-center-part {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: auto;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.ds01-white-cap-center-part.ds01-animate-show {
  opacity: 1;
}

.ds01-green-cap-lower-part {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: auto;
  z-index: 3;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ds01-green-cap-lower-part.ds01-animate-open {
  opacity: 1;
  transform: translate(-50%, 80%);
}

.ds01-description-box-left {
  position: absolute;
  left: -145px;
  top: 145px;
  max-width: 120px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease 0.6s;
}

.ds01-description-box-left.ds01-animate-fadein {
  opacity: 1;
  transform: translateX(0);
}

.ds01-description-box-right {
  position: absolute;
  right: -140px;
  top: 242px;
  max-width: 120px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease 0.8s;
}

.ds01-description-box-right.ds01-animate-fadein {
  opacity: 1;
  transform: translateX(0);
}

.ds01-box-title-small {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.ds01-box-text-content {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.ds01-dotted-line-left {
  position: absolute;
  left: -145px;
  top: 134px;
  width: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8) 0px,
    rgba(255, 255, 255, 0.9) 5px,
    transparent 5px,
    transparent 10px
  );
  transition: width 0.6s ease 0.8s;
}

.ds01-dotted-line-left.ds01-animate-expand {
  width: 190px;
}

.ds01-dotted-line-right {
  position: absolute;
  right: -140px;
  top: 232px;
  width: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    to left,
    rgba(255, 255, 255, 0.8) 0px,
    rgba(255, 255, 255, 0.9) 5px,
    transparent 5px,
    transparent 10px
  );
  transition: width 0.6s ease 1s;
}

.ds01-dotted-line-right.ds01-animate-expand {
  width: 190px;
}

@media (max-width: 1200px) {
  .ds01-description-box-left {
    left: -280px;
  }
  .ds01-description-box-right {
    right: -280px;
  }
  .ds01-dotted-line-left.ds01-animate-expand {
    width: 240px;
  }
  .ds01-dotted-line-right.ds01-animate-expand {
    width: 240px;
  }
}

@media (max-width: 992px) {
  .ds01-flex-layout-container {
    flex-direction: column;
    gap: 40px;
  }

  .ds01-title-large-text {
    font-size: 2.5rem;
  }

  .ds01-description-box-left,
  .ds01-description-box-right {
    position: static;
    margin: 20px auto;
    max-width: 100%;
  }

  .ds01-dotted-line-left,
  .ds01-dotted-line-right {
    display: none;
  }

  .ds01-capsule-stage-box {
    margin: 40px auto;
  }
}
.gut-stats-main-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.gut-stats-heading-text {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--vcn-footer);
  margin-bottom: 0;
}
.comparison-table-main-section {
  padding: 80px 0;
}

.comparison-table-heading-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 50px;
}

.comparison-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table-row-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  min-height: 40px;
}

.comparison-table-row-item:last-child {
  border-bottom: none;
}

.comparison-table-feature-col {
  flex: 1;
  padding: 20px 30px;
  font-size: 1.4rem;
  color: var(--vcn-footer);
}

.comparison-table-ds01-col {
  width: 180px;
  background-color: #e8f0d8;
  padding: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-table-others-col {
  width: 180px;
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-table-header-row {
  background-color: #fff;
  border-bottom: 2px solid #e5e5e5;
}

.comparison-table-header-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--vcn-footer);
}

.comparison-table-checkmark-icon {
  width: 24px;
  height: 24px;
  background-color: var(--vcn-footer);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 768px) {
  .comparison-table-heading-title {
    font-size: 1.8rem;
  }

  .comparison-table-row-item {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .comparison-table-feature-col {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .comparison-table-ds01-col,
  .comparison-table-others-col {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .comparison-table-row-item:last-child .comparison-table-others-col {
    border-bottom: none;
  }
}

.strains-info-main-section {
  padding: 80px 0;
}

.strains-product-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.strains-content-wrapper-right {
  padding-left: 40px;
}

.strains-main-heading-text {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--vcn-footer);
  margin-bottom: 20px;
}

.strains-subheading-description {
  font-size: 1.05rem;
  color: var(--vcn-footer);
  margin-bottom: 15px;
}

.strains-view-link-text {
  color: var(--vcn-footer);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--vcn-footer);
  padding-bottom: 2px;
}

.strains-view-link-text:hover {
  color: var(--vcn-footer);
  border-bottom-color: var(--vcn-footer);
}

.strains-custom-accordion {
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.strains-accordion-item-wrapper {
  background: white;
  border-bottom: 1px solid #e0e0e0;
}

.strains-accordion-item-wrapper:last-child {
  border-bottom: none;
}

.strains-accordion-header-btn {
  width: 100%;
  padding: 10px 25px;
  background: white;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--vcn-footer);
  transition: background-color 0.3s ease;
}
.strains-accordion-body-content p {
  color: var(--vcn-footer);
  font-size: 1.2rem;
}

.strains-accordion-afu-count {
  color: #999;
  font-weight: 400;
  font-size: 0.9rem;
  margin-right: 15px;
}

.strains-accordion-plus-icon {
  font-size: 1.5rem;
  color: var(--vcn-footer);
  transition: transform 0.3s ease;
}

.strains-accordion-header-btn[aria-expanded="true"]
  .strains-accordion-plus-icon {
  transform: rotate(45deg);
}

.strains-accordion-body-content {
  padding: 0 25px 20px 25px;
  display: none;
}

.strains-accordion-body-content.show {
  display: block;
}

.strains-badges-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.strains-badge-item-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.strains-badge-icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.strains-badge-label-text {
  font-size: 0.9rem;
  color: var(--vcn-footer);
  line-height: 1.3;
}

@media (max-width: 992px) {
  .strains-content-wrapper-right {
    padding-left: 0;
    margin-top: 30px;
  }

  .strains-main-heading-text {
    font-size: 2rem;
  }

  .strains-badges-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .strains-badges-grid-container {
    grid-template-columns: 1fr;
  }
}

/* Sustainability Section Styles */

/* Container and Layout */
.sustainability-page-wrapper {
  min-height: 100vh;
}

.sustainability-sidebar-container {
  padding: 40px 20px;
}

.sustainability-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sustainability-sidebar-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 25px;
  padding-left: 15px;
}

/* Sidebar Links */
.sustainability-nav-link {
  border: none !important;
  background: transparent !important;
  color: var(--vcn-primary) !important;
  padding: 12px 15px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
  text-decoration: none;
  display: block;
}

.sustainability-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--vcn-footer);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sustainability-nav-link:hover {
  background-color: transparent !important;
  color: var(--vcn-footer) !important;
}

.sustainability-nav-link.active {
  color: var(--vcn-footer) !important;
  background-color: transparent !important;
  font-weight: 600;
}

.sustainability-nav-link.active::before {
  transform: scaleY(1);
}

/* Main Content Area */
.sustainability-content-area {
  padding: 40px 60px;
}

.sustainability-section-block {
  /* padding: 80px 0; */
  min-height: 600px;
}

.sustainability-section-heading {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--vcn-footer);
  margin-bottom: 30px;
}

.sustainability-section-subheading {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--vcn-footer);
  margin-bottom: 35px;
}

.sustainability-section-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--vcn-footer);
  margin-bottom: 20px;
  margin-top: 30px;
}

/* Product Cards Grid */
.sustainability-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.sustainability-product-card {
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability-product-image-wrapper {
  margin-bottom: 25px;
  text-align: center;
}

.sustainability-product-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

.sustainability-product-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 15px;
}

.sustainability-product-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--vcn-footer);
}

/* Responsive Design */
@media (max-width: 992px) {
  .sustainability-sidebar-container {
    position: static;
    padding: 20px;
  }

  .sustainability-sidebar-sticky {
    position: static;
  }

  .sustainability-content-area {
    padding: 30px 20px;
  }

  .sustainability-section-heading {
    font-size: 1.8rem;
  }

  .sustainability-products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sustainability-section-block {
    padding: 50px 0;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .sustainability-sidebar-title {
    font-size: 1.5rem;
  }

  .sustainability-section-heading {
    font-size: 1.5rem;
  }

  .sustainability-stat-number {
    font-size: 2.5rem;
  }
}

/* Scroll Animation Classes */
.sustainability-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sustainability-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Additional Utility Classes */

.link a {
  color: var(--vcn-footer);
  text-decoration: none;
}
.link:hover a {
  color: var(--vcn-footer);
  text-decoration: none;
}

/* WRAPPER to contain the fixed text effect */
.parallax-wrapper {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* FIXED TEXT */
.parallax-hero h2 {
  font-size: clamp(2rem, 8vw, 6.2rem);
  color: var(--vcn-footer);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* CONTENT SECTIONS */
.section {
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

.text-card-wrapper {
  padding: 80px 0;
}

.text-card {
  background: #fff;
  padding: 50px 40px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.text-card p {
  color: var(--vcn-footer);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  text-align: left;
}

/* Hollow Circle INSIDE card */
.hollow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #0d613a;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.site-content .s1 {
  position: relative;
  background-color: rgb(246, 247, 239);
  background-size: 50px 50px;
  background-image: linear-gradient(
      to right,
      rgb(255, 255, 255) 1px,
      transparent 1px
    ),
    linear-gradient(rgb(255, 255, 255) 1px, transparent 1px);
  display: block;
  z-index: 1;
  width: 100%;
}

.site-content .s1::after,
.site-content .s1::before {
  content: "";
  background: rgb(255, 255, 255);
  display: block;
  width: 100%;
  height: 8px;
  box-shadow: rgba(255, 255, 255, 0.5) -1px -1px 1px inset,
    rgba(0, 0, 0, 0.26) 1px 1px 3px inset;
}

.title h2 {
  padding: 40px 20px;
  font-size: clamp(2rem, 6vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 600;
  margin: 0;
  font-family: inherit;
  color: var(--vcn-footer);
}

.poster {
  width: 100%;
  max-width: 275px;
  margin: 50px auto;
  padding: 0 20px;
}

.blurb p {
  display: block;
  margin: 0px auto;
  width: 100%;
  font-size: clamp(1.5rem, 4vw, 40px);
  padding-left: 0;
  padding: 20px;
  color: var(--vcn-footer);
  text-decoration: underline;
  text-align: end;
}

.learn-section-wrapper {
  background: linear-gradient(
    to right bottom,
    rgb(28, 58, 19) 0%,
    rgb(28, 58, 67) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.learn-main-container {
  max-width: 1200px;
  width: 100%;
}

.learn-header-block {
  margin-left: 0;
  text-align: center;
}

.learn-header-block h1 {
  color: white;
  line-height: 1.2;
  font-size: clamp(2rem, 6vw, 60px);
  padding: 0 20px;
  margin-bottom: 60px;
}

.learn-steps-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.learn-step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.learn-icon-wrapper {
  flex-shrink: 0;
  width: 140px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-icon-wrapper img {
  width: 100px;
  height: 100px;
}

.learn-icon-text {
  color: white;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 300;
}

.learn-icon-svg {
  width: 50px;
  height: 50px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

.learn-connecting-line {
  width: 380px;
  height: 1px;
  background: #fff;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s ease-out;
  position: relative;
}

.learn-connecting-line::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.learn-connecting-line.aos-animate {
  transform: scaleX(1);
}

.learn-content-block {
  flex: 1;
  max-width: 500px;
}

.learn-content-block h3 {
  color: white;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 15px;
}

.learn-content-block p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.extra-credit-icon {
  text-align: right;
  margin-top: 40px;
}

.extra-credit-icon img {
  width: clamp(60px, 10vw, 100px);
  display: inline-block;
}

.marquee-section-wrapper {
  background-color: aliceblue;
  padding: 5px 0;
  border-bottom: 2px solid var(--vcn-footer);
  overflow: hidden;
}

.marquee-text {
  color: var(--vcn-footer);
  font-weight: 600;
  text-align: center;
  display: inline-block;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.accountability-form-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: white;
  padding: 40px 20px;
  border-radius: 8px;
}

.form-header-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 30px;
  line-height: 1.4;
}

.form-declaration-text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.8;
  color: var(--vcn-footer);
  margin-bottom: 30px;
  text-align: left;
}

.form-input-inline {
  border: none;
  border-bottom: 1px solid var(--vcn-footer);
  background: transparent;
  padding: 2px 8px;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  font-family: inherit;
  min-width: 100px;
  outline: none;
}

.form-input-inline:focus {
  border-bottom: 2px solid #2d5a3f;
}

.form-pledge-text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.8;
  color: var(--vcn-footer);
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.form-field-group {
  margin-bottom: 20px;
}

.form-field-label {
  display: block;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 8px;
}

.form-field-sublabel {
  display: block;
  font-size: 0.75rem;
  color: var(--vcn-footer);
  margin-bottom: 8px;
}

.form-input-text {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.form-input-text:focus {
  border-color: #2d5a3f;
}

.form-textarea-field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  min-height: 100px;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s;
}

.form-textarea-field:focus {
  border-color: #2d5a3f;
}

.form-submit-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.form-submit-button {
  background: #2d5a3f;
  color: white;
  border: none;
  padding: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(45, 90, 63, 0.3);
}

.form-submit-button:hover {
  background: #1a4731;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(45, 90, 63, 0.4);
}

.form-submit-button:active {
  transform: scale(0.98);
}

.faq-section-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
}

.faq-header-card {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge-icon img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-title-box {
  background: linear-gradient(
    to right,
    rgb(28, 58, 67) 0%,
    rgb(28, 58, 19) 100%
  );

  padding: 23px 40px 30px;
  border-radius: 12px 12px 0 0;
  margin-top: -30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-title-box h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 0;
  color: white;
}

.faq-contact-box {
  background: white;
  padding: 23px 40px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-contact-box p {
  color: #333;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.faq-contact-box a {
  color: #2d5a3f;
  text-decoration: none;
  font-weight: 500;
}

.faq-contact-box a:hover {
  text-decoration: underline;
}

.faq-list-container {
  overflow: hidden;
}

.faq-item-wrapper {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item-wrapper:last-child {
  border-bottom: none;
}

.faq-question-button {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--vcn-footer);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
  font-family: inherit;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--vcn-footer);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item-wrapper.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item-wrapper.active .faq-answer-content {
  max-height: 500px;
  padding: 0 20px 28px 20px;
}

.faq-answer-content p {
  color: var(--vcn-footer);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
}

/* TABLET BREAKPOINT */
@media (max-width: 968px) {
  .section {
    padding: 60px 15px;
  }

  .text-card {
    padding: 40px 30px 30px;
  }

  .learn-step-item {
    gap: 30px;
  }

  .learn-connecting-line {
    width: 200px;
  }

  .learn-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .learn-icon-wrapper img {
    width: 40px;
    height: 40px;
  }

  .accountability-form-wrapper {
    padding: 30px 15px;
  }

  .faq-title-box,
  .faq-contact-box {
    padding: 20px 25px;
  }
}

/* MOBILE BREAKPOINT */
@media (max-width: 768px) {
  .parallax-wrapper {
    height: 60vh;
  }

  .text-card-wrapper {
    padding: 40px 0;
  }

  .text-card {
    padding: 40px 20px 20px;
  }

  .title h2 br {
    display: none;
  }

  .learn-header-block {
    margin-left: 0;
    text-align: center;
  }

  .learn-header-block h1 br {
    display: none;
  }

  .learn-step-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .learn-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .learn-icon-wrapper img {
    width: 35px;
    height: 35px;
  }

  .learn-connecting-line {
    width: 2px;
    height: 60px;
    transform-origin: top;
    transform: scaleY(0);
  }

  .learn-connecting-line.aos-animate {
    transform: scaleY(1);
  }

  .learn-connecting-line::after {
    right: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(50%) rotate(90deg);
  }

  .learn-content-block {
    max-width: 100%;
  }

  .form-declaration-text br {
    display: none;
  }

  .form-input-inline {
    display: inline-block;
    margin: 3px 0;
  }

  .form-submit-button {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
  }

  .faq-question-button {
    padding: 15px;
  }

  .faq-item-wrapper.active .faq-answer-content {
    padding: 0 15px 20px 15px;
  }

  .faq-toggle-icon {
    margin-left: 10px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .parallax-hero h2 {
    padding: 0 15px;
  }

  .section {
    padding: 40px 10px;
  }

  .text-card {
    padding: 30px 15px 15px;
  }

  .accountability-form-wrapper {
    padding: 20px 10px;
  }

  .form-submit-button {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }

  .faq-section-wrapper {
    padding: 10px;
  }

  .faq-title-box,
  .faq-contact-box {
    padding: 15px 20px;
  }
}

.seed-health-wrapper {
  background-color: #d4d9bc;
  padding: 17px 20px;
}

.seed-health-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seed-health-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.seed-health-text-column {
  flex: 1;
  max-width: 600px;
}

.seed-health-description {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e1f;
  margin: 0;
}

.seed-health-cta-column {
  flex-shrink: 0;
}

.seed-health-connect-button {
  background-color: transparent;
  border: 2px solid #2c3e1f;
  color: #2c3e1f;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.seed-health-connect-button:hover {
  background-color: #2c3e1f;
  color: #d4d9bc;
}

@media (max-width: 768px) {
  .seed-health-content-row {
    flex-direction: column;
    gap: 30px;
  }

  .seed-health-text-column {
    max-width: 100%;
  }

  .seed-health-connect-button {
    width: 100%;
    text-align: center;
  }
}
/* Section spacing */
.seed-benefits-section {
  padding: 80px 0;
}

/* Video */
.seed-benefits-video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Title */
.seed-benefits-title {
  color: var(--vcn-footer);
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Paragraph */
.seed-benefits-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--vcn-footer);
}

/* FAQ Container */
.seed-faq-list {
  margin-top: 20px;
}

/* FAQ Item */
.seed-faq-item {
  border-bottom: 1px solid #dcdcdc;
  padding: 12px 0;
}

/* FAQ Button */
.seed-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--vcn-footer);
}

/* Icon */
.seed-faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

/* Rotate icon on open */
.seed-faq-question[aria-expanded="true"] .seed-faq-icon {
  transform: rotate(45deg);
}

/* FAQ Answer */
.seed-faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--vcn-footer);
}

.seed-faq-answer.active {
  display: block;
}

/* Responsive */
@media (max-width: 767px) {
  .seed-benefits-section {
    padding: 50px 0;
  }

  .seed-benefits-title {
    font-size: 1.9rem;
  }

  .seed-benefits-video {
    margin-bottom: 25px;
  }
}
.seed-recommend-main-section {
  padding: 80px 0;
}

.seed-recommend-product-image {
  max-width: 100%;
  height: auto;
}

.seed-recommend-icon-wrapper {
  margin-bottom: 24px;
}

.seed-recommend-leaf-icon {
  width: 48px;
  height: 48px;
  fill: #7a9b5a;
}

.seed-recommend-main-heading {
  font-size: 48px;
  font-weight: 400;
  color: var(--vcn-footer);
  line-height: 1.2;
  margin-bottom: 24px;
}

.seed-recommend-description-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--vcn-footer);
  margin-bottom: 32px;
}

.seed-recommend-cta-button {
  background-color: var(--vcn-footer);
  color: #ffffff;
  border: none;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.seed-recommend-cta-button:hover {
  background-color: var(--vcn-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 90, 44, 0.3);
}

@media (max-width: 991px) {
  .seed-recommend-main-heading {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .seed-recommend-main-heading {
    font-size: 28px;
  }

  .seed-recommend-description-text {
    font-size: 16px;
  }

  .seed-recommend-cta-button {
    width: 100%;
    text-align: center;
  }
}
.seed-grow-main-wrapper {
  background-color: #f0ebe3;
  padding: 80px 0;
}

.seed-grow-hero-title {
  font-size: 56px;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 24px;
}

.seed-grow-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--vcn-footer);
  max-width: 500px;
}

.seed-grow-card-wrapper {
  background-color: transparent;
  border: none;
  height: 100%;
}

.seed-grow-icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.seed-grow-icon-svg {
  width: 40px;
  height: 40px;
  stroke: var(--vcn-footer);
  fill: none;
  stroke-width: 2;
}

.seed-grow-card-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 20px;
}

.seed-grow-card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.seed-grow-link-button {
  color: var(--vcn-footer);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--vcn-footer);
  padding-bottom: 4px;
}

.seed-grow-link-button:hover {
  color: var(--vcn-primary);
  border-bottom-color: var(--vcn-primary);
  gap: 12px;
}

.seed-grow-arrow-icon {
  transition: transform 0.3s ease;
}

.seed-grow-link-button:hover .seed-grow-arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .seed-grow-hero-title {
    font-size: 42px;
  }

  .seed-grow-card-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .seed-grow-hero-title {
    font-size: 36px;
  }

  .seed-grow-hero-subtitle {
    max-width: 100%;
  }
}
.clinical-board-main-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.clinical-board-section-title {
  font-size: 42px;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 60px;
  line-height: 1.3;
}

.clinical-board-member-card {
  margin-bottom: 30px;
}

.clinical-board-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.clinical-board-member-image {
  width: 100%;
  height: auto;
  display: block;
}

.clinical-board-member-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 8px;
}

.clinical-board-member-title {
  font-size: 16px;
  line-height: 1.5;
  color: var(--vcn-footer);
  margin: 0;
}

@media (max-width: 991px) {
  .clinical-board-section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .clinical-board-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.pract-support-section {
  padding: 80px 0;
  min-height: 100vh;
}

.pract-heading-primary {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--vcn-footer);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.pract-subheading-text {
  font-size: 1.5rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin-bottom: 0;
}

.pract-form-card {
  border-radius: 8px;
  padding: 26px;
  border: 1px solid var(--vcn-footer);
}

.pract-card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 1rem;
  text-align: center;
}

.pract-card-subtitle {
  font-size: 0.95rem;
  color: var(--vcn-footer);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pract-form-input {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 0;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.pract-form-input:focus {
  box-shadow: none;
  border-bottom-color: var(--vcn-footer);
  background-color: transparent;
}

.pract-form-select {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 0;
  font-size: 1rem;
  background-position: right 0 center;
  transition: border-color 0.3s;
}

.pract-form-select:focus {
  box-shadow: none;
  border-bottom-color: var(--vcn-footer);
  background-color: transparent;
}

.pract-submit-btn {
  background-color: var(--vcn-footer);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  width: 100%;
  margin-top: 1.5rem;
  transition: background-color 0.3s;
}

.pract-submit-btn:hover {
  background-color: var(--vcn-primary);
}

.pract-consent-text {
  font-size: 0.85rem;
  color: var(--vcn-footer);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pract-heading-primary {
    font-size: 2.5rem;
  }

  .pract-subheading-text {
    font-size: 1.25rem;
  }

  .pract-form-card {
    padding: 30px 20px;
  }
}

/* bundle deatils section */
.video-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.video-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: var(--vcn-footer);
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button-overlay:hover {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-thumbnail-container:hover .video-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7));
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-player.active {
  opacity: 1;
  pointer-events: all;
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail-container.playing .video-thumbnail,
.video-thumbnail-container.playing .play-button-overlay,
.video-thumbnail-container.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-content {
  padding: 20px;
}

.video-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-description {
  font-size: 0.95rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--vcn-footer);
}

/* Responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .play-button-overlay {
    width: 60px;
    height: 60px;
  }

  .play-button-overlay::before {
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}

.vcn-acidity-bundle-section {
  padding: 60px 0;
  background: var(--vcn-base-bg);
}

.vcn-acidity-main-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 20px;
}

.vcn-acidity-intro-text {
  font-size: 0.95rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin-bottom: 8px;
}

.vcn-acidity-read-more-btn {
  background: none;
  border: none;
  color: var(--vcn-footer);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.vcn-acidity-read-more-btn:hover {
  color: #2d4a25;
}

.vcn-acidity-bundle-container {
  background: #e8f0e8;
  border-radius: 16px;
  padding: 40px 30px;
  margin-top: 40px;
}

.vcn-acidity-bundle-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 35px;
}

.vcn-acidity-benefit-card {
  background: white;
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.vcn-acidity-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #2d4a25;
}

.vcn-acidity-benefit-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vcn-footer);
  min-width: 30px;
  text-align: center;
}

.vcn-acidity-benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f0f4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--vcn-footer);
}

.vcn-acidity-benefit-icon img {
  width: 60px;
  height: 60px;
  stroke: #2d4a25;
  fill: none;
  stroke-width: 2;
}

.vcn-acidity-benefit-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vcn-footer);
  margin: 0;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .vcn-acidity-main-heading {
    font-size: 1.6rem;
  }

  .vcn-acidity-bundle-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .vcn-acidity-bundle-container {
    padding: 30px 20px;
  }

  .vcn-acidity-benefit-card {
    padding: 15px 20px;
    gap: 15px;
  }

  .vcn-acidity-benefit-number {
    font-size: 1.5rem;
    min-width: 25px;
  }

  .vcn-acidity-benefit-icon {
    width: 45px;
    height: 45px;
  }

  .vcn-acidity-benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .vcn-acidity-benefit-text {
    font-size: 0.95rem;
  }
}
.acidity-info-container {
  max-width: 1250px;
  margin: 0 auto;

  border-radius: 8px;

  overflow: hidden;
}

.main-heading {
  padding: 24px;
  font-weight: 600;
  color: var(--vcn-footer);
}
.expand-section {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.expandable-section {
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.trigger-left-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.circle-badge img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.accordion-label {
  font-weight: 500;
  color: var(--vcn-footer);
}

.arrow-indicator {
  font-size: 18px;
  color: var(--vcn-footer);
  transition: transform 0.3s;
}

.expandable-section.active .arrow-indicator {
  transform: rotate(180deg);
}

.panel-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.expandable-section.active .panel-body {
  max-height: 800px;
}

.items-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 24px;
}

.feature-block {
  display: flex;
  gap: 12px;
}

.feature-symbol {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.feature-details {
  flex: 1;
}

.detail-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 6px;
}

.detail-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--vcn-footer);
}

@media (max-width: 640px) {
  .items-layout {
    grid-template-columns: 1fr;
  }
}

.care-wrapper {
  max-width: 1250px;
  margin: 40px auto;
  padding: 0 15px;
}

.primary-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 16px;
}

.intro-paragraph {
  font-size: 14px;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin-bottom: 32px;
}

.care-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  border: 1px solid #e5e7eb;
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-circle img {
  width: 70px;
  height: 70px;
}

.card-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 12px;
}

.card-content {
  font-size: 14px;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin-bottom: 0;
}

.highlight-text {
  font-weight: 600;
  color: var(--vcn-footer);
}

@media (max-width: 768px) {
  .primary-heading {
    font-size: 24px;
  }

  .care-card {
    margin-bottom: 20px;
  }
}

.contents-section {
  background-color: #f9f9f9;
  padding: 40px 0;
  margin-bottom: 40px;
}

.contents-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.microbiome-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.microbiome-nav-links a {
  color: var(--vcn-footer);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.microbiome-nav-links a:hover {
  color: var(--vcn-primary);
  text-decoration: underline;
}

.main-section {
  background-color: white;
  padding: 60px 0;
}

.qa-item {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.qa-item:last-child {
  border-bottom: none;
}

.microbiome-section-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin: 0;
  margin-bottom: 20px;
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--vcn-footer);
}

.highlight {
  font-weight: 600;
  color: var(--vcn-footer);
}

.question-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-top: 30px;
}

@media (max-width: 767px) {
  .microbiome-section-title {
    font-size: 22px;
  }

  .section-text {
    font-size: 16px;
  }
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dddddd;
}

.contact-form-header {
  padding: 20px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--vcn-footer);
}

.contact-form-body {
  padding: 20px;
}

.contact-field-wrapper {
  margin-bottom: 24px;
}

.contact-field-label {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--vcn-footer);
  margin-bottom: 8px;
}

.contact-required-mark {
  color: #d32f2f;
  margin-left: 2px;
}

.contact-text-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-text-input:focus {
  outline: none;
  border-color: var(--vcn-footer);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-text-input::placeholder {
  color: #999;
}

.contact-select-wrapper {
  position: relative;
}

.contact-select-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-size: 14px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: white;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-select-input:focus {
  outline: none;
  border-color: var(--vcn-footer);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

.contact-textarea-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-textarea-input:focus {
  outline: none;
  border-color: var(--vcn-footer);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-textarea-input::placeholder {
  color: #999;
}
.attachment-wrapper {
  border: 1px dashed #d0d0d0;
  border-radius: 4px;
  background: #fafafa;
  padding: 10px;
}
.contact-file-info-text {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}
.contact-file-upload-area {
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.contact-file-upload-area:hover {
  border-color: #999;
  background: #f5f5f5;
}

.contact-file-icon {
  display: flex;
  align-items: center; /* vertically center */
  justify-content: center; /* horizontally center */
  gap: 8px; /* space between icon and text */
}
.contact-file-icon svg {
  font-size: 24px;
}
.contact-file-icon span {
  font-size: 18px;
}

.contact-file-input-hidden {
  display: none;
}

.contact-submit-button {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: var(--vcn-footer);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.contact-submit-button:hover {
  background: #333;
}

.contact-submit-button:active {
  transform: scale(0.98);
}

.contact-footer-text {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.contact-footer-link {
  color: var(--vcn-footer);
  text-decoration: none;
}

.contact-footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .contact-form-container {
    border-radius: 0;
  }

  .contact-form-header,
  .contact-form-body {
    padding: 24px 20px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-file-upload-area {
    padding: 24px 16px;
  }
}

.shipping-unlock-section {
  padding: 21px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.shipping-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #2d5a3f;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.shipping-divider-top {
  width: 1px;
  height: 80px;
  border: 1px dotted forestgreen;
  margin: 0 auto 0px;
}

.shipping-card-container {
  border: 1px dotted forestgreen;
  border-radius: 24px;
  padding: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.shipping-product-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
}

.shipping-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}

.shipping-month-heading {
  font-size: 2rem;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--vcn-footer);
}

.shipping-kit-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 24px;
}

.shipping-pricing-info {
  margin-bottom: 8px;
}

.shipping-price-text {
  font-size: 1rem;
  color: var(--vcn-footer);
  margin: 0;
  line-height: 1.6;
}

.shipping-price-superscript {
  font-size: 0.75rem;
  vertical-align: super;
}

.shipping-tax-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 16px;
}

.shipping-tax-superscript {
  font-size: 0.7rem;
  vertical-align: super;
  margin-right: 2px;
}

.shipping-divider-bottom {
  width: 1px;
  height: 80px;
  border: 1px dotted forestgreen;
  margin: 0px auto 0;
}

@media (max-width: 991px) {
  .shipping-unlock-section {
    padding: 60px 0;
  }

  .shipping-card-container {
    padding: 40px 30px;
  }

  .shipping-content-wrapper {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .shipping-month-heading {
    border-bottom-width: 1px;
  }

  .shipping-product-image {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .shipping-main-title {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .shipping-card-container {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .shipping-month-heading {
    font-size: 1.5rem;
  }

  .shipping-divider-top,
  .shipping-divider-bottom {
    height: 60px;
  }
}
/* Refill Options Section Styles */
.refill-options-section {
}

.refill-header-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.refill-main-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--vcn-footer);
  margin-bottom: 20px;
}

.refill-subtitle-text {
  font-size: 0.95rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin: 0;
}

.refill-divider-line {
  width: 1px;
  height: 80px;
  border: 1px dotted forestgreen;
  margin: 0 auto 0;
}

.refill-connection-lines {
  position: relative;
  height: 45px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.refill-horizontal-line {
  position: absolute;
  top: 0;
  left: 149px;
  right: 0;
  height: 1px;
  border: 1px dotted forestgreen;
  width: 64%;
}

.refill-vertical-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 120px;
  border: 1px dotted forestgreen;
}

.refill-vertical-left {
  left: 18%;
}

.refill-vertical-center {
  left: 50%;
  transform: translateX(-50%);
}

.refill-vertical-right {
  right: 18%;
}

.refill-product-card {
  background: white;
  border: 1px dashed forestgreen;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.refill-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.refill-image-wrapper {
  text-align: center;
  margin-bottom: 30px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refill-pouch-image {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.refill-triple-image {
  max-width: 300px;
}

.refill-card-content {
  border-top: 2px solid var(--vcn-footer);
  padding-top: 20px;
}

.refill-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 15px;
}

.refill-card-description {
  font-size: 0.95rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin-bottom: 12px;
}

.refill-card-description strong {
  font-weight: 600;
}

.refill-card-footnote {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.refill-footnote-number {
  font-size: 0.7rem;
  vertical-align: super;
  margin-right: 2px;
}

.refill-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vcn-footer);
  margin: 40px 0 30px;
  line-height: 1.6;
}

.refill-footer-note sup {
  font-size: 0.7rem;
}

.refill-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.refill-subscribe-btn {
  background: #2d5a3f;
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.refill-subscribe-btn:hover {
  background: #1a4731;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 90, 63, 0.3);
}

.refill-subscribe-btn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .refill-options-section {
    padding: 60px 0 80px;
  }

  .refill-main-title {
    font-size: 2rem;
  }

  .refill-subtitle-text br {
    display: none;
  }

  .refill-product-card {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .refill-options-section {
    padding: 50px 0 70px;
  }

  .refill-main-title {
    font-size: 1.75rem;
  }

  .refill-subtitle-text {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .refill-divider-line {
    height: 80px;
    margin-bottom: 40px;
  }

  .refill-product-card {
    padding: 30px 20px;
  }

  .refill-image-wrapper {
    min-height: 150px;
  }

  .refill-footer-note br {
    display: none;
  }

  .refill-subscribe-btn {
    padding: 14px 40px;
    font-size: 0.95rem;
  }
}
.img-section {
  padding: 80px;
}

.list {
  padding: 0 !important;
  width: 400px;
  display: block;
  max-width: 100%;
  margin-top: 42px;
  margin-bottom: 20px;
  border-bottom: 1px dotted rgb(163, 176, 160);
}
.list li {
  padding: 12px 0px;
  display: block;

  border-top: 1px dotted rgb(163, 176, 160);
  line-height: 23px;
}

.planet-axis-section {
  padding: 100px 0 120px;
  overflow: hidden;
}

.planet-main-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--vcn-footer);
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.planet-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.planet-text-left {
  flex: 1;
  max-width: 380px;
  align-self: flex-start;
  margin-top: -40px;
}

.planet-text-right {
  flex: 1;
  max-width: 380px;
  align-self: flex-end;
  margin-bottom: -40px;
}

.planet-description-text {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--vcn-footer);
}

.planet-description-text sup {
  font-size: 0.7em;
  vertical-align: super;
}

.planet-globe-container {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 450px);
  height: clamp(280px, 35vw, 450px);
  position: relative;
}

.planet-globe-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Subtle shadow for depth */
.planet-globe-container::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15), transparent);
  filter: blur(15px);
}

@media (max-width: 1200px) {
  .planet-content-wrapper {
    gap: 40px;
    padding: 0 30px;
  }

  .planet-text-left,
  .planet-text-right {
    max-width: 320px;
  }
}

@media (max-width: 991px) {
  .planet-axis-section {
    padding: 80px 0 100px;
  }

  .planet-main-heading {
    margin-bottom: 60px;
  }

  .planet-content-wrapper {
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
  }

  .planet-text-left {
    max-width: 600px;
    text-align: center;
    align-self: center;
    margin-top: 0;
  }

  .planet-text-right {
    max-width: 600px;
    text-align: center;
    align-self: center;
    margin-bottom: 0;
  }

  .planet-globe-container {
    width: clamp(250px, 60vw, 400px);
    height: clamp(250px, 60vw, 400px);
  }
}

@media (max-width: 767px) {
  .planet-axis-section {
    padding: 60px 0 80px;
  }

  .planet-main-heading {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .planet-content-wrapper {
    gap: 40px;
  }

  .planet-description-text {
    font-size: 1.05rem;
  }

  .planet-globe-container {
    width: clamp(220px, 70vw, 350px);
    height: clamp(220px, 70vw, 350px);
  }
}

@media (max-width: 480px) {
  .planet-axis-section {
    padding: 50px 0 70px;
  }

  .planet-content-wrapper {
    padding: 0 15px;
  }

  .planet-globe-container::after {
    bottom: -20px;
    height: 20px;
  }
}

/* checkout page */
.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 141px 15px;
}

.checkout-step-card {
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border: none;
}

.checkout-step-card.step-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.checkout-step-header {
  padding: 14px;
}

.checkout-step-body {
  padding: 14px;
}

.step-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.step-count-badge {
  font-size: 12px;
  color: var(--vcn-footer);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.step-title-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin: 8px 0 0 0;
}

.step-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--vcn-footer);
  color: white;
  margin-right: 8px;
}

.primary-action-btn {
  background-color: var(--vcn-footer);
  border-color: var(--vcn-footer);
  color: white;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
}

.primary-action-btn:hover {
  background-color: var(--vcn-primary);
  border-color: var(--vcn-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.secondary-action-btn {
  background-color: #fff;
  border: 1px solid var(--vcn-footer);
  color: var(--vcn-footer);
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.2s;
}

.google-icon-text {
  font-weight: 700;
  font-size: 18px;
  color: #4285f4;
}

.divider-text {
  position: relative;
  text-align: center;
  margin: 18px 0;
}

.divider-text::before,
.divider-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #dee2e6;
}

.divider-text::before {
  left: 0;
}

.divider-text::after {
  right: 0;
}

.divider-text span {
  background: white;
  padding: 0 12px;
  color: var(--vcn-footer);
  font-size: 21px;
}

.info-box {
  background-color: transparent;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 0;
}

.info-box-left {
  background-color: #f5f3ed;
  padding: 20px;
  border-right: 1px solid #dee2e6;
  display: flex;
  flex-direction: column;
}

.info-box-right {
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-box-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--vcn-footer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.info-box-right input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--vcn-footer);
}

.info-box-right-text {
  flex: 1;
  font-size: 14px;
  color: var(--vcn-footer);
  line-height: 1.5;
}
.custom-checkbox {
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-input-field {
  padding: 12px 16px;
  border: 1px solid var(--vcn-footer) a;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.2s;
}

.form-input-field:focus {
  border-color: var(--vcn-footer);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
  outline: none;
}

.link-text {
  color: var(--vcn-footer);
  text-decoration: underline;
  font-weight: 500;
}

.link-text:hover {
  color: var(--vcn-primary);
}

.completion-message {
  color: var(--vcn-footer);
  font-size: 14px;
  font-style: italic;
}

.product-image-container {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #4a6e2e 0%, var(--vcn-footer) 100%); */
  border-radius: 8px;
  flex-shrink: 0;
}
.product-wrapper {
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
}
.cart-summary-card {
  position: sticky;
  top: 20px;
  border: none;
}
.card-body {
  border: 1px solid var(--vcn-footer);
}
.cart-summary-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 24px;
}

.product-name-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 4px;
}

.product-delivery-info {
  font-size: 13px;
  color: var(--vcn-footer);
}

.quantity-control-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--vcn-footer) a;
  background: white;
  border-radius: 4px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-control-btn:hover {
  background-color: var(--vcn-footer);
  border-color: var(--vcn-footer);
}

.quantity-display-text {
  font-size: 16px;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.price-display-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--vcn-footer);
}

.promo-code-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--vcn-footer);
  margin-bottom: 8px;
}

.promo-apply-btn {
  border-radius: 0 6px 6px 0;
  padding: 0 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.summary-label {
  color: var(--vcn-footer);
}

.summary-value {
  color: var(--vcn-footer);
  font-weight: 500;
}

.summary-free-text {
  color: var(--vcn-footer);
  font-weight: 600;
}

.summary-divider {
  border: none;
  border-top: 1px solid #000;
  margin: 16px 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 16px;
}

.summary-footer-note {
  font-size: 12px;
  color: var(--vcn-footer);
  line-height: 1.5;
}

.hide-element {
  display: none;
}

.final-order-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
}

@media (max-width: 991px) {
  .cart-summary-card {
    position: static;
    margin-top: 32px;
  }
}
.section-title-timeline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--vcn-footer);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--vcn-footer);
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Timeline Styles */

.timeline {
  position: relative;
  padding-left: 30px;
  margin-bottom: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  bottom: 0;
  width: 2px;
  background-color: var(--vcn-footer);
  height: 310px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--vcn-footer);
  border: 2px solid #fff;
}

.timeline-header {
  display: inline-block;
  background-color: var(--vcn-footer);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 10px;
}

.timeline-title {
  font-weight: 600;
  font-size: 1rem;
  display: inline;
  margin-left: 5px;
}

.timeline-body ul {
  padding-left: 20px;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  list-style: circle;
}

.timeline-body li {
  margin-bottom: 0.3rem;
}

/* Image Grid */
.image-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-large {
  overflow: hidden;
}

.image-small {
  overflow: hidden;
}

.image-circle {
  overflow: hidden;
}

/* How to Use Card */
.how-to-use-card {
  background-color: #f6f7ef;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 500px;
}

.capsule-icon img {
  width: 82px;
  height: 86px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #888;
}

.how-to-use-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .image-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .image-large {
    flex: 1 1 80%;
  }

  .image-small-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 40%;
  }

  .image-small {
    flex: 1;
  }
}
.nutrients-section {
  padding: 80px 0;
  background-color: #f5f5f0;
}

.bioavailable-section-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 30px;
  line-height: 1.2;
}

.bioavailable-section-header p {
  font-size: 1rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  max-width: 400px;
}

.nutrient-card:hover {
  transform: scale(1.08);
}

.nutrient-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  height: 100%;
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* required */
}

.exclusive-badge {
  position: absolute; /* required */
  top: -11px; /* distance from top */
  left: 26px; /* distance from right */
  background-color: #c8ff00;
  color: var(--vcn-footer);
  padding: 4px 12px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.nutrient-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vcn-footer);
  margin-bottom: 15px;
}

.nutrient-card p {
  font-size: 0.95rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin-bottom: 25px;
}

.media-container {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.media-container img,
.media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nutrient-card:hover .media-container video {
  opacity: 1;
}

.nutrient-card:hover .media-container img {
  opacity: 0;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vcn-footer);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-content {
  font-size: 0.9rem;
  color: var(--vcn-footer);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .bioavailable-section-header h1 {
    font-size: 2rem;
  }
}

/* ===== FULL CUSTOM DESIGN — NO BOOTSTRAP STYLING RELIED ON ===== */

.comparison-section {
  background-image: linear-gradient(
      135deg,
      rgba(69, 102, 60, 0.9) 0%,
      rgba(58, 95, 48, 0.8) 100%
    ),
    url("../img/bg/bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 1rem;
  color: white;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #9e9e9e;
}

/* Feature item row */
.feature-item {
  padding: 2.1rem 0;
}

.product-item {
  padding: 2rem 0;
}

.feature-label {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.comparison-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-column {
  flex: 1;
  min-width: 220px;
  padding: 75px 0 0 0;
}

.product-col {
  flex: 0 0 153px;
  text-align: center;
  padding: 21px 0.5rem 0rem 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 25px;
}
.product-cols {
  flex: 0 0 153px;
  text-align: center;
  padding: 1rem 0.5rem;
}

.product-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.dm02-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.checkmark,
.empty-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.checkmark {
  background: #fff;
}

.empty-circle {
  border: 1px solid #fff;
  background: transparent;
}

/* Mobile */
@media (max-width: 991.98px) {
  .comparison-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .comparison-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .product-col {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 0.75rem;
  }

  .product-header,
  .dm02-label {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .feature-label {
    font-size: 0.875rem;
  }

  .feature-item {
    padding: 0.6rem 0;
  }
  .product-item {
    padding: 0.6rem 0;
  }
}

.testing-standards-wrapper {
  background-color: #e8e6d8;
  padding: 6rem 0;
}

.testing-main-title {
  font-size: 2.5rem;
  color: var(--vcn-footer);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.testing-description-text {
  font-size: 1.1rem;
  color: var(--vcn-footer);
  line-height: 1.7;
}

.testing-feature-card {
  background: #fff;
  border-radius: 16px;
  /* padding: 1rem 1rem; */
  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testing-feature-card:hover {
  transform: translateY(-5px);
}

.testing-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.testing-icon-wrapper img {
  width: 50px;
  height: 50px;
}

.testing-feature-description {
  font-size: 0.9rem;
  color: var(--vcn-footer);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .testing-main-title {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .testing-standards-wrapper {
    padding: 4rem 0;
  }

  .testing-main-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .testing-description-text {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .testing-standards-wrapper {
    padding: 3rem 0;
  }

  .testing-main-title {
    font-size: 2rem;
  }

  .testing-description-text {
    font-size: 1rem;
  }

  .testing-feature-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .testing-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .testing-feature-description {
    font-size: 0.9375rem;
  }
}

.routine-bundle-wrapper {
  background: var(--vcn-footer);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
}

.routine-bundle-container {
  position: relative;
  z-index: 2;
}

.routine-products-column {
  position: relative;
}

.routine-product-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.routine-product-item {
  position: relative;
  text-align: center;
}

.routine-product-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.routine-wrapper {
  position: relative;
  display: inline-block;
}

.routine-main-image {
  width: 100%;
  max-width: 550px;
}

/* Shared styles */
.label-block {
  position: absolute;
  text-align: center;
}

.routine-product-label {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* Dotted Line + Circle */
.routine-label-connector {
  width: 1px;
  height: 60px;
  border-left: 1px dashed #fff;
  position: relative;
  margin: 0 auto;
}

.routine-label-connector::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* Positioning for Label 1 (left bottle) */
.label-1 {
  top: -70px;
  left: 32%;
  transform: translateX(-50%);
}

/* Positioning for Label 2 (right bottle) */
.label-2 {
  top: -27px;
  left: 70%;
  transform: translateX(-50%);
}

/* Placeholder for product images */
.routine-product-placeholder img {
  width: 100%;
  height: 100%;
}

.routine-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.routine-main-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.routine-product-description {
  margin-bottom: 1.5rem;
}

.routine-product-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.routine-product-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.routine-cta-button {
  display: inline-block;
  background: #fff;
  color: #1a3a1a;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.routine-cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .routine-bundle-wrapper {
    padding: 4rem 0;
  }

  .routine-main-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .routine-product-showcase {
    margin-bottom: 3rem;
  }

  .routine-content-column {
    text-align: center;
  }

  .routine-product-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .routine-bundle-wrapper {
    padding: 3rem 0;
  }

  .routine-main-heading {
    font-size: 2rem;
  }

  .routine-product-showcase {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .routine-product-placeholder {
    width: 180px;
    height: 240px;
  }

  .routine-product-label {
    top: -60px;
    font-size: 0.75rem;
  }

  .routine-label-connector {
    height: 40px;
  }

  .routine-product-name {
    font-size: 1rem;
  }

  .routine-product-details {
    font-size: 0.9375rem;
  }

  .routine-cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 575.98px) {
  .routine-product-showcase {
    gap: 2.5rem;
  }
}

.cart-box {
  display: inline-flex;
  align-items: center;
}

.qty-box {
  display: inline-flex;
  background: var(--vcn-primary);
  padding: 6px 15px;
  border-radius: 50px;
  gap: 12px;
  align-items: center;
}

.qty-btn {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
}

.qty-value {
  color: #fff;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

/* about us page */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  padding-top: 80px;
}

.page-header {
  margin-bottom: 40px;
  border-bottom: 3px solid var(--vcn-footer);
  padding-bottom: 10px;
  color: var(--vcn-footer);
}

.page-header h1 span {
  color: var(--vcn-footer);
  font-weight: bold;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.director-card {
  display: flex;
  gap: 20px;
}

.director-image {
  width: 180px;
  height: 180px;
}

.director-info {
  flex: 1;
}

.director-name {
  font-size: 15px;
  color: var(--vcn-footer);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.director-bio {
  font-size: 10px;
  line-height: 1.6;
  color: var(--vcn-footer);
  text-align: justify;
}

.director-bio p {
  margin-bottom: 8px;
}

.bio-preview {
  max-height: 120px;
  overflow: hidden;
}

.read-more-btn {
  color: var(--vcn-footer);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.3s;
  border: none;
  background: none;
  padding: 0;
}

.read-more-btn:hover {
  color: var(--vcn-footer);
  text-decoration: underline;
}

/* Bootstrap Modal Customization */

.modal-header {
  background-color: var(--vcn-footer);
  color: white;
  border-radius: 0;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-director-profile {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.modal-director-image {
  flex-shrink: 0;
  width: 180px;
  height: 220px;

  border-radius: 4px;
  overflow: hidden;
}

.modal-director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-director-details h3 {
  font-size: 22px;
  color: var(--vcn-footer);
  margin-bottom: 10px;
}

.modal-director-details .director-title {
  font-size: 14px;
  color: var(--vcn-footer);
  margin-bottom: 20px;
  font-style: italic;
}

.modal-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--vcn-footer);
  text-align: justify;
}

.modal-bio p {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }

  .main-container {
    padding: 20px;
  }

  .modal-director-profile {
    flex-direction: column;
  }

  .modal-director-image {
    width: 100%;
    height: 250px;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.content-block {
  display: flex;
  flex-direction: column;
}
.content-block h6 {
  color: var(--vcn-footer);
}
.content-block p {
  color: var(--vcn-footer);
}

.image-container {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 14px;
}

.highlight {
  color: #0066cc;
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  position: relative;
  min-height: 500px;
  max-width: 100%;
  margin: 0 auto;
  background-image: url("https://vcarenetwork.in/assets/img/banner/bannerimg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 35%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 70%
  );
}

.content-container {
  position: relative;
  z-index: 2;
  padding: 80px 100px;
  max-width: 650px;
}

.quote-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: var(--vcn-footer);
  margin-bottom: 50px;
  font-weight: 400;
}

.signature {
  font-family: "Brush Script MT", cursive;
  font-size: 3.5em;
  color: var(--vcn-footer);
  margin-bottom: 20px;
  font-weight: 400;
}

.author-info {
  font-size: 0.9em;
  color: var(--vcn-footer);
  font-style: italic;
  line-height: 1.6;
}

.feedback-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0066cc;
  color: white;
  padding: 15px 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
  font-size: 0.85em;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 4px 0 0 4px;
  z-index: 1000;
  transition: background-color 0.3s;
}

.feedback-tab:hover {
  background-color: #0052a3;
}

@media (max-width: 968px) {
  .testimonial-section {
    background-position: center;
  }

  .gradient-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  }

  .content-container {
    padding: 60px 40px;
    max-width: 100%;
  }

  .signature {
    font-size: 3em;
  }
}

@media (max-width: 600px) {
  .content-container {
    padding: 40px 30px;
  }

  .quote-text {
    font-size: 1em;
  }

  .signature {
    font-size: 2.5em;
  }
}
 .terms-conditions{
        padding: 108px 0;
    }