* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8f5f0;
  color: #222;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
    color: #39160d;
}

a:hover {
    color: #f1c720;
}
.container-fluid {
  padding: 0 40px;
}
/* TOP HEADER */

.top-header {
  background: #39160d;
  height: 45px;
  overflow: hidden;
  position: relative;
}

.slide-text {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-text span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  animation: slideText 12s linear infinite;
}

.slide-text span:nth-child(1) {
  animation-delay: 0s;
}

.slide-text span:nth-child(2) {
  animation-delay: 4s;
}

.slide-text span:nth-child(3) {
  animation-delay: 8s;
}

@keyframes slideText {
  0% {
    left: 100%;
    opacity: 0;
  }

  10% {
    left: 0;
    opacity: 1;
  }

  30% {
    left: 0;
    opacity: 1;
  }

  40% {
    left: -100%;
    opacity: 0;
  }

  100% {
    left: -100%;
    opacity: 0;
  }
}

/* HEADER */
.navbar-brand img {
  max-width: 150px;
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
  font-size: 34px;
  font-weight: 700;
  color: #fff !important;
  font-family: "Playfair Display", serif;
}

.navbar-nav {
  gap: 12px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 32px 8px !important;
  transition: 0.3s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: #d6b98c;
  transition: 0.4s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  padding: 12px 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #f5f1eb;
  color: #39160d;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #39160d;
  font-size: 17px;
  position: relative;
  transition: 0.4s;
}

.header-icons a:hover {
  transform: translateY(-4px);
  background: #39160d;
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #c41212;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}

/* HERO */

.hero-slider .carousel-item {
  height: 100vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 49%), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1350px;
  padding: 0 40px;
  z-index: 2;
  color: #fff;
}

.hero-content span {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
  color: #d8b27c;
}

.hero-content h1 {
  font-size: 82px;
  line-height: 1.1;
  max-width: 720px;
  margin: 20px 0;
  font-family: "Playfair Display", serif;
}

.hero-content p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero-btn {
  background: #39160d;
  padding: 17px 38px;
  border-radius: 60px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

.hero-slider .carousel-control-next,
.hero-slide .carousel-control-prev {
  width: 65px;
  height: 65px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* CATEGORY */
.text-success {
  color: #39160d !important;
}
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #39160d;
}

.section-title h2 {
  font-size: 45px;
  margin-top: 15px;
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, #39160d, #d6b98c);
  border-radius: 20px;
}

/* CERTIFICATE SECTION */

.certificate-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #fffdf9, #f6f1ea);
  position: relative;
  overflow: hidden;
}
.testimonialSlider-wrapper {
  background: linear-gradient(180deg, #fffdf9, #f6f1ea);
  position: relative;
  overflow: hidden;
}
.testimonialSlider-wrapper::before,
.certificate-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(57, 22, 13, 0.04);
  border-radius: 50%;
  top: -180px;
  left: -150px;
}
.testimonialSlider-wrapper::after,
.certificate-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(216, 178, 124, 0.08);
  border-radius: 50%;
  bottom: -140px;
  right: -120px;
}

.certificate-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.certificate-title span {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(57, 22, 13, 0.08);
  color: #39160d;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.certificate-title h2 {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  color: #111;
  margin-bottom: 0;
}

/* CERTIFICATE CARD */

.certificate-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 35px;
  padding: 45px 20px;
  text-align: center;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 22, 13, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 178, 124, 0.08), transparent);
  opacity: 0;
  transition: 0.5s;
}

.certificate-card:hover::before {
  opacity: 1;
}

.certificate-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.certificate-card img {
  width: 150px;
  margin: auto;
  transition: 0.5s;
  position: relative;
  z-index: 2;
}

.certificate-card:hover img {
  transform: scale(1.12) rotate(5deg);
}

/* PRODUCT */

.product-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-section .product-image img {
  height: 500px !important;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #39160d;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.product-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #39160d;
}

.cart-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #39160d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */

.footer {
  background: radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.18),
      transparent 35%
    ),
    linear-gradient(145deg, #111, #101010, #1b1b1b);
  color: #fff;
  padding: 90px 0 30px;
}

.footer h4 {
  font-size: 24px;
  margin-bottom: 25px;
}

.footer p,
.footer a {
  color: #aaa;
  line-height: 2;
  display: block;
  transition: 0.3s;
}
.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
}
.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #3b0d02;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
  border: 1px solid #fff;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #d8b27c;
}
/* TESTIMONIAL */

.testimonial-section {
  background: #f8f5f0;
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 80px 28px 40px;
  position: relative;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.4s;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.client-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STAR */

.review-stars {
  color: #f5c518;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 0;
  margin-top: 40px;
}

/* TITLE */

.testimonial-card h4 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
  color: #111;
}

/* TEXT */

.testimonial-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* NAME */

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.client-role {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* QUOTE */

.quote-icon {
  position: absolute;
  right: 20px;
  bottom: -25px;
  font-size: 110px;
  line-height: 1;
  color: rgba(57, 22, 13, 0.08);
  font-family: serif;
  font-weight: bold;
}

/* BUTTON */

#testimonialSlider .carousel-control-prev,
#testimonialSlider .carousel-control-next {
  width: 55px;
  height: 55px;
  background: #39160d;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#testimonialSlider .carousel-control-prev {
  left: -25px;
}

#testimonialSlider .carousel-control-next {
  right: -25px;
}

.story-section {
  padding: 120px 0;
  background: #f8f5f0;
  overflow: hidden;
}

/* WRAPPER */

.story-wrapper {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* LEFT */

.story-content {
  padding: 40px;
  position: relative;
  text-align: left;
}

.story-content p,
.story-content ul li {
  font-size: 16px;
  line-height: 2;
  color: #666;
  margin-bottom: 24px;
}
.story-wrapper ul li {
  text-align: left;
  list-style: disc;
  margin: 0;
}
/* RIGHT IMAGE */

.story-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.story-wrapper:hover .story-image img {
  transform: scale(1.08);
}

/* OVERLAY */

.story-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  padding: 45px 60px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-overlay h3 {
  font-size: 72px;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.story-overlay p {
  font-size: 30px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

/* ================= SEARCH BOX ================= */
.search-box {
  position: absolute;
  top: 100px;
  right: 200px;
  width: 280px;
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 50px;
  background: rgb(44 43 43 / 94%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 999;
}

/* active */
.search-box.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* input */
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

/* search button */
.search-box button {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(45deg, #242221, #39160d);
  border: 1px solid #fff;
}

/* CLOSE BUTTON */
.search-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c41212;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* MOBILE */

@media (max-width: 1199px) {
  .story-content {
    padding: 60px;
  }

  .story-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .testimonial-card {
    margin-top: 60px;
  }
  .search-box {
    top: inherit;
    bottom: -60px;
    width: 95%;
    padding: 10px;
    right: 20px;
  }
  #testimonialSlider .carousel-control-prev,
  #testimonialSlider .carousel-control-next {
    display: none;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 40px;
  }
  .container-fluid {
    padding: 0 20px;
  }

  .navbar-nav .nav-link {
    padding: 8px 8px !important;
  }
  .navbar-nav .nav-link::after {
    bottom: 0px;
  }
  .header-icons {
    margin: 20px 0;
  }

  .story-wrapper {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .search-box {
    right: 13px;
  }
  .story-section {
    padding: 80px 0;
  }

  .story-content {
    padding: 40px 25px;
  }

  .story-content h2 {
    font-size: 34px;
  }

  .story-content p {
    font-size: 15px;
    line-height: 1.9;
  }

  .story-overlay {
    padding: 30px 35px;
  }

  .story-overlay h3 {
    font-size: 46px;
  }

  .story-overlay p {
    font-size: 20px;
  }

  .testimonial-card {
    padding: 75px 22px 35px;
  }

  .testimonial-card h4 {
    font-size: 24px;
  }

  .hero-slider .carousel-item {
    min-height: 200px;
    height: auto;
  }
.hero-slider .carousel-item img{
  height: 200px;
}
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .navbar-brand {
    font-size: 30px;
  }

  .certificate-section {
    padding: 80px 0;
  }

  .certificate-title h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .certificate-card {
    padding: 35px 15px;
  }

  .certificate-card img {
    width: 120px;
  }
}
.health-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: #fff;
  height: 100%;
}

.health-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
  background: linear-gradient(135deg, #39160d2e, #e9f5e9);
  padding: 20px 15px;
  text-align: center;
  font-weight: 700;
  color: #2c3e50;
}

.product-img {
  object-fit:  cover;
  padding: 0;
}

.ingredients {
  font-size: 0.85rem;
  color: #555;
}

.know-more-btn {
  background: #2c3e50;
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.know-more-btn:hover {
  background: #39160d;
  transform: scale(1.05);
  color: #fff;
}
.product-section {
  background: linear-gradient(135deg, #f8f9fa 50%, #fff 50%);
  padding: 60px 0;
}

/* IMAGE SLIDER */
.product-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* THUMBNAILS */
.thumb-wrap {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  overflow: hidden;
}

.thumb {
  width: 95px;
  height: 95px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  object-fit: cover;
  transition: 0.3s;
}

.thumb.active {
  border: 2px solid #2c3e50;
  transform: scale(1.05);
}

/* LABELS (same as yours) */
.ingredient-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.product-section .benefit-card {
  border: 2px solid #e9f0e9;
  border-radius: 15px;
  padding: 0px;
  text-align: center;
  transition: all 0.3s;
}

.product-section .benefit-card:hover {
  border-color: #2c3e50;
  transform: translateY(-5px);
}
.product-section .btn-light {
  background: #ffe56a;
  border-radius: 50%;
}
.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c3e50;
}

.btn-add {
  background: #2c3e50;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
}
.btn-add:hover {
  border-color: #2c3e50;
}
.btn-buy {
  background: #39160d;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-buy:hover {
  border-color: #39160d;
}

.benefit-card small {
  font-size: 12px;
  line-height: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 60px;
}

.ingredient-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #eee;
}

.ingredient-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.ingredient-img {
  height: 240px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.ingredient-card:hover .ingredient-img {
  transform: scale(1.08);
}

.ingredient-name {
  background: #39160d;
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 1.35rem;
  font-weight: 600;
}

.benefit-text {
  padding: 28px 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* SECTION */
.how-section {
  position: relative;
  overflow: hidden;
}

/* STEP CARD */
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* LEFT NUMBER STYLE */
.step-no {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(to right, #39160d, #d6b98c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.step-img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

.step-card:hover .step-img {
  transform: scale(1.1);
}

/* TEXT */
.step-text {
  flex: 1;
}

.step-text p {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* LEFT RIGHT ZIG ZAG EFFECT */
.how-section .row .col-lg-6:nth-child(odd) .step-card {
  margin-left: 0;
}

.how-section .row .col-lg-6:nth-child(even) .step-card {
  margin-left: 40px;
}

/* small glow line */
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #000;
}
.faq-section {
  background: #f8f9fa;
}

.faq-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question {
  padding: 22px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-answer {
  padding: 0 25px 25px 25px;
  color: #555;
  line-height: 1.7;
  display: none;
}

.faq-question.active {
  background: #39160d;
  color: #fff;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0;
}
slider-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.research-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  height: 100%;
  transition: 0.3s;
  border: 1px solid #eee;
}

.research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.research-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.study-year {
  color: #777;
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.research-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.know-more {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  display: inline-block;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 18px;
  background-size: 50%;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000;
}
.carousel-indicators .active {
  background: #ffcf7a;
  width: 11px;
  height: 11px;
  border: 0;
  margin: 10px 5px;
}
.testimonial-section .carousel-item img {
  height: auto;
}
/* BUTTON */

.order-btn {
  padding: 12px 30px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.order-btn:hover {
  background: #333;
}

/* RIGHT SLIDE PANEL */

.order-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  padding: 40px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  overflow-y: auto;
}

.order-panel.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  cursor: pointer;
}

.order-panel h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.order-panel p {
  color: #666;
  line-height: 1.7;
}

.order-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 0 15px;
  border-radius: 10px;
}

.submit-btn {
  width: 100%;
  height: 50px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

/* OVERLAY */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.total {
  font-size: 18px;
  margin-bottom: 10px;
}

.total-price {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* OVERLAY */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* RIGHT SLIDER */

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -430px;
  width: 420px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-sidebar.active {
  right: 0;
}

/* HEADER */

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.close-cart {
  font-size: 35px;
  cursor: pointer;
  line-height: 1;
}

/* CART BODY */

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 25px;
}

/* PRODUCT */

.cart-product {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.cart-product img {
  width: 95px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.product-info h5 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 15px;
  margin-left: 5px;
}

/* QTY */

.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/* OFTEN */

.often-title {
  margin: 20px 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.6;
}

.often-products {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.often-card img {
  width: 100%;
  border-radius: 15px;
  height: 150px;
  object-fit: cover;
}

.often-card h6 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

/* TEXTAREA */

.instructions {
  margin-top: 30px;
}

.instructions textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  resize: none;
}

/* FOOTER */

.cart-footer {
  padding: 25px;
  border-top: 1px solid #eee;
}
/* ARROWS */

.often-prev,
.often-next {
  width: 35px;
}

.often-prev {
  left: -10px;
}

.often-next {
  right: -10px;
}

.often-prev .carousel-control-prev-icon,
.often-next .carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 15px;
  background-size: 50%;
}

.cart-product .cart-btn {
  width: 100%;
  height: 55px;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
}

.view-btn {
  background: #000;
  color: #fff;
}

.checkout-btn {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

/* CARD */

.consume-card {
  background: #f8f6f2;
  border: 2px solid #5a2e22;
  border-radius: 35px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.consume-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.consume-image {
  height: 250px;
  overflow: hidden;
}

.consume-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.consume-card:hover .consume-image img {
  transform: scale(1.05);
}

/* CONTENT */

.consume-content {
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

/* NUMBER */

.consume-number {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #5a2e22;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */

.consume-info {
  position: relative;
  padding-left: 25px;
}

.consume-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 90%;
  background: #000;
}

.consume-info h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.consume-info p {
  margin: 0;
}
/* SECTION */

.guarantee-section {
  padding: 80px 0;
  background: radial-gradient(
      circle at top right,
      rgba(255, 215, 120, 0.08),
      transparent 30%
    ),
    linear-gradient(135deg, #2a0600, #4b1003, #2a0600);
  overflow: hidden;
  position: relative;
}

/* GLOW */

.guarantee-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 196, 0, 0.08);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  filter: blur(60px);
}

/* BOX */

.guarantee-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 45px;
  backdrop-filter: blur(10px);
}

/* BADGE */

.guarantee-badge {
  width: 190px;
  animation: rotateBadge 10s linear infinite;
  filter: drop-shadow(0 10px 25px rgba(255, 215, 0, 0.25));
}

@keyframes rotateBadge {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* CONTENT */

.guarantee-content small {
  color: #ffd36c;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.guarantee-content h2 {
  color: #fff;
  font-weight: 700;
}

.guarantee-content p {
  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 10px;
}

/* FEATURES */

.guarantee-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  backdrop-filter: blur(5px);
}

/* BUTTON */

.guarantee-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: linear-gradient(135deg, #ffd36c, #ffb300);
  color: #2a0600;
  padding: 12px 20px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.4s;
}

.guarantee-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 179, 0, 0.3);
}
/* SECTION */

.video-testimonial-section {
  padding: 90px 0;
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.05),
      transparent 20%
    ),
    linear-gradient(135deg, #120805, #2c1207, #120805);
  overflow: hidden;
}

/* TITLE */

.video-testimonial-section .section-title span {
  color: #ffcf7a;
}

.video-testimonial-section .section-title h2 {
  color: #fff;
}

/* SLIDER */

.carousel-inner {
  overflow: hidden;
}

/* VIDEO CARD */

.video-card {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 30px;
  transition: 0.5s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-card:hover {
  transform: translateY(-10px);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.video-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 35px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.video-overlay h4 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.video-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* USER */

.video-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.video-user h5 {
  color: #fff;
  margin: 0;
  font-size: 18px;
}

.video-user span {
  color: #ddd;
  font-size: 14px;
}

/* DOTS */

.video-testimonial-section .carousel-indicators {
  position: relative;
  margin-bottom: 40px;
  gap: 12px;
}

.video-testimonial-section .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #888;
  opacity: 1;
  transition: 0.3s;
}

.video-testimonial-section .carousel-indicators .active {
  width: 35px;
  border-radius: 30px;
  background: #ffcf7a;
}

/* BUTTON */

.video-testimonial-section .carousel-control-prev,
.video-testimonial-section .carousel-control-next {
  width: 60px;
  opacity: 1;
}

.video-testimonial-section .carousel-control-prev-icon,
.video-testimonial-section .carousel-control-next-icon {
  background-color: #ffcf7a;
  border-radius: 50%;
  padding: 22px;
  background-size: 45%;
}

/* RESPONSIVE */

/* =========================
BENEFIT CARD
========================= */

.benefit-card {
  background: #fff;
  border-radius: 32px;
  padding: 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: 0.5s;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 2;
}

/* TOP SHINE */

.benefit-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.8s;
}

.benefit-card:hover::before {
  top: 120%;
}

/* HOVER */

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

/* =========================
ICON
========================= */

.benefit-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #5a2e22, #8a5a44);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 46px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(90, 46, 34, 0.3);
}

/* =========================
TEXT
========================= */

.benefit-card h4 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  padding: 0 10px;
  z-index: 2;
}

.benefit-card p {
  color: #666;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

/* =========================
BUTTON
========================= */

.benefits-btn {
  text-align: center;
  margin-top: 60px;
}

.benefits-btn a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5a2e22;
  color: #fff;
  padding: 18px 34px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s;
}

.benefits-btn a:hover {
  background: #111;
  transform: translateY(-4px);
}

.vip-section {
  position: relative;
}

.language-switch-top {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.language-btn {
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
  font-size: 15px;
  font-weight: 500;
}

.language-btn.active {
  background: #facc15;
  color: #111;
  font-weight: 700;
  transform: translateY(-2px);
}

/* =========================
       CARD
    ========================= */

.vip-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 55px;
  background: linear-gradient(135deg, #4b2d1c, #1f140d);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vip-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(250, 204, 21, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -150px;
  filter: blur(10px);
}

/* =========================
       LETTER BOX
    ========================= */

.letter-box {
  background: linear-gradient(180deg, #fff, #f5f5f5);
  border-radius: 30px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.letter-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #facc15, #ffec99);
}

.letter-text {
  margin-top: 18px;
  color: #555;
  font-size: 15px;
  line-height: 2;
}

/* =========================
       RIGHT CONTENT
    ========================= */

.vip-name {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.vip-role {
  color: #facc15;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
}

/* STARS */

.vip-section .stars {
  display: flex;
  gap: 8px;
  margin-top: 0px;
}

.vip-section .stars i {
  color: #facc15;
  font-size: 16px;
}

/* QUOTE */

.quote-box {
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 28px;
  backdrop-filter: blur(10px);
  position: relative;
}

.quote-box::before {
  content: "“";
  position: absolute;
  top: -25px;
  left: 22px;
  font-size: 90px;
  color: #facc15;
  opacity: 0.25;
  font-family: serif;
}

.quote-text {
  color: #fff;
  font-size: 20px;
  line-height: 2;
  position: relative;
  z-index: 2;
}

/* IMAGE */

.vip-image-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.vip-image {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 35px;
  border: 5px solid #facc15;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
  transition: 0.5s;
}

.vip-image:hover {
  transform: scale(1.04);
}

/* =========================
       SWIPER
    ========================= */

.swiper {
  padding-bottom: 70px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 38px;
  border-radius: 30px;
  background: #facc15;
}

.swiper-button-next,
.swiper-button-prev {
  width: 55px;
  height: 55px;
  background: #facc15;
  border-radius: 50%;
  color: #111;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}
.privacy-wrapper {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* ================= HERO ================= */

.privacy-hero {
  background: linear-gradient(135deg, #4b2d1c, #1f140d);
  padding: 70px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  left: -50px;
}

.privacy-hero h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.privacy-hero p {
  font-size: 17px;
  line-height: 1.9;
  max-width: 800px;
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

/* ================= CONTENT ================= */

.privacy-content {
  padding: 40px;
}
.policy-item {
  margin-bottom: 35px;
  padding: 30px;
  border-radius: 20px;
  background: #7955481c;
  border: 1px solid #79554847;
  transition: 0.4s ease;
}

.policy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.policy-item h3 {
  font-size: 26px;
  font-weight: 600;
  color: #39160d;
  margin-bottom: 15px;
}

.policy-item p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 15px;
}

.policy-item ul {
  padding-left: 20px;
}

.policy-item ul li {
  margin-bottom: 10px;
  color: #4b5563;
  line-height: 1.8;
}

/* ================= CONTACT ================= */

.contact-box {
  background: linear-gradient(135deg, #79554829, #f0eceb);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid #7955483b;
}

.contact-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.contact-box p {
  margin-bottom: 10px;
  color: #4b5563;
}

.policy-item ul li {
  list-style: disc;
}
.policy-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #39160d;
  margin-bottom: 15px;
}

.contact-header {
  background: linear-gradient(135deg, #3f2a1e, #5c4033);
  color: white;
}
.form-control:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 0.25rem rgba(250, 204, 21, 0.25);
}
.info-card {
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.research-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
  position: relative;
}

.research-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.research-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.research-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.research-card:hover .research-img img {
  transform: scale(1.08);
}

.research-content {
  padding: 16px;
}

.research-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-bottom: 18px;
}

.research-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.research-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4b2d1c, #1f140d);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.4s;
}

.research-btn:hover {
  transform: scale(1.05);
}

.publication-date {
  margin-top: 20px;
  font-size: 14px;
  color: #999;
}


.product-section .lead {
    font-size: 16px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .privacy-hero {
    padding: 50px 40px;
  }

  .privacy-content {
    padding: 20px;
  }

  .privacy-hero h1 {
    font-size: 46px;
  }

  .section-padding {
    padding: 60px 0;
  }
  .section-title h2 {
    font-size: 42px;
  }

  .video-card {
    height: 480px;
  }

  .guarantee-content {
    margin-top: 40px;
    text-align: center;
  }

  .guarantee-content h2 {
    font-size: 42px;
  }

  .guarantee-content p {
    font-size: 18px;
  }

  .guarantee-features {
    justify-content: center;
  }

  .consume-image {
    height: 320px;
  }

  .vip-name {
    font-size: 40px;
  }

  .vip-image-wrap {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .privacy-section {
    padding: 50px 0;
  }

  .privacy-hero {
    padding: 40px 25px;
  }

  .privacy-content {
    padding: 16px;
  }

  .privacy-hero h1 {
    font-size: 34px;
  }

  .privacy-hero p {
    font-size: 15px;
  }

  .policy-item {
    padding: 22px;
  }

  .policy-item h3 {
    font-size: 22px;
  }

  .contact-box {
    padding: 22px;
  }

  .vip-card {
    padding: 25px;
    border-radius: 26px;
  }

  .letter-box {
    padding: 20px;
  }

  .vip-name {
    font-size: 28px;
  }

  .quote-box {
    padding: 22px;
  }

  .quote-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .vip-image {
    width: 200px;
    height: 200px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .benefit-icon {
    width: 90px;
    height: 90px;
    font-size: 38px;
  }

  .video-testimonial-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .video-card {
    height: 430px;
  }

  .video-overlay {
    padding: 25px 20px;
  }

  .video-overlay h4 {
    font-size: 24px;
  }

  .video-overlay p {
    font-size: 14px;
  }

  .guarantee-section {
    padding: 60px 0;
  }

  .guarantee-box {
    padding: 30px 20px;
  }

  .guarantee-badge {
    width: 150px;
    margin: auto;
  }

  .guarantee-content h2 {
    font-size: 32px;
  }

  .guarantee-content p {
    font-size: 16px;
  }

  .feature-item {
    width: 100%;
    text-align: center;
  }

  .consume-content {
    flex-direction: column;
    gap: 20px;
  }

  .consume-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 32px;
  }

  .consume-info {
    padding-left: 20px;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  .cart-footer {
    padding: 16px;
  }
  .cart-btn {
    height: 45px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .total-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .cart-header h3 {
    font-size: 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .slider-wrapper {
    padding: 30px 20px;
  }

  .research-card {
    text-align: center;
  }

  .carousel-item .row {
    display: block;
  }

  .carousel-item .col-lg-4,
  .carousel-item .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  .carousel-control-prev {
    left: -10px;
  }

  .carousel-control-next {
    right: -10px;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
  }

  .step-img {
    width: 100%;
    height: 180px;
  }

  .how-section .row .col-lg-6:nth-child(even) .step-card {
    margin-left: 0;
  }

  .section-title {
    font-size: 2.4rem;
  }
  .ingredient-img {
    height: 200px;
  }

  .carousel-item .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .testimonial-card {
    margin: 0 10px;
  }

  .product-section .flex-grow-1 {
    width: 21%;
    font-size: 12px;
    padding: 15px;
  }

  .research-content h3 {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .search-box {
    right: 10px;
  }
}
