html,
body {
  overflow-x: hidden;
  overflow-y: auto;
}

* {
  font-family: "Playfair Display", serif;
}

body {
  padding-top: 68px;
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 2em;
}

/* ================= THEME ================= */

.logo {
  font-size: 30px;
  font-weight: 800;
  color: #F5C542;
}

.nav {
  background-color: #0B0B0B;
}

.navcolor,
.sectioncolor {
  background-color: #0B0B0B;
}

.sectioncolor2 {
  background-color: #111111;
  border-radius: 15px;
  color: #FFFFFF;
}

.navtext {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 550;
}

.navtext:hover {
  color: #F5C542;
}

/* ================= TEXT ================= */

.custom-hover {
  color: #FFFFFF;
}

.custom-hover:hover {
  color: #F5C542;
  text-decoration: underline;
}

/* ================= BUTTONS ================= */

.cart-btn,
.order-btn,
.btn-danger,
.btn-success {
  background: #F5C542 !important;
  color: #000 !important;
  border: none;
  font-weight: bold;
  border-radius: 40px;
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.4);
}

.cart-btn:hover,
.order-btn:hover,
.btn-danger:hover,
.btn-success:hover {
  background: #D4AF37 !important;
  color: #000 !important;
}

/* ================= PRICE ================= */

.bottle-title {
  color: #F5C542;
  font-weight: 700;
}

.price {
  font-size: 40px;
  color: #F5C542;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #000;
}

/* ================= COMPONENTS ================= */

.feature-box {
  background: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
  padding: 35px 25px;
}

.review-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}

/* ================= IMAGES ================= */

.product-img {
  width: 100%;
}

.product-img1 {
  height: 280px;
}

.gurentybadge {
  width: 350px;
}

.bottle-6 {
  width: 40vw;
}

/* ================= NAV TOGGLER ================= */

.custom-toggler {
  border: none;
  background: transparent;
}

.custom-toggler span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px 0;
  background-color: #F5C542;
  border-radius: 4px;
}

/* ================= LIST ================= */

.benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.benefit-list li {
  font-size: 1.35rem;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 34px;
  position: relative;
  color: #222;
}

.benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #F5C542;
  font-weight: bold;
}

/* ================= INGREDIENT SECTION ================= */

.ingredients-section {
  background: #0B0B0B;
  color: #fff;
  padding: 70px 0;
}

.ingredients-top-text {
  font-size: 1.4rem;
  color: #f7f7f7;
  text-align: center;
}

.ingredient-box h3 {
  color: #fff;
}

.ingredient-box p {
  color: #ccc;
}

/* ================= HERO ================= */

.hero-simple {
  background-color: #0B0B0B;
  padding: 40px 20px;
}

.hero-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ================= POPUP ================= */

.purchase-proof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  max-width: 300px;
  z-index: 9999;
  display: none;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.purchase-proof strong {
  color: #F5C542;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .bottle-6,
  .gurentybadge {
    width: 100%;
  }

  .navcenter {
    text-align: center;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .section-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .btn1 {
    width: 100%;
  }

  .section-title {
    font-size: 1.9rem;
  }

}

/* =========================
   CARD SLIDE ANIMATION
========================= */

/* Initial hidden state */
.card,
.feature-box,
.review-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

/* Left slide */
.slide-left {
  transform: translateX(-80px);
}

/* Right slide */
.slide-right {
  transform: translateX(80px);
}

/* When visible */
.show {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) !important;
}

/* =========================
   HOVER EFFECT (PREMIUM)
========================= */

.card,
.feature-box,
.review-card {
  border-radius: 14px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.card::before,
.feature-box::before,
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(245, 197, 66, 0.2),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

/* Hover animation */
.card:hover,
.feature-box:hover,
.review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Glow visible on hover */
.card:hover::before,
.feature-box:hover::before,
.review-card:hover::before {
  opacity: 1;
}

/* Image zoom */
.card img,
.feature-box img,
.review-card img {
  transition: transform 0.4s ease;
}

.card:hover img,
.feature-box:hover img,
.review-card:hover img {
  transform: scale(1.08);
}

/* =========================
   TEXT HOVER GOLD EFFECT
========================= */

.card h3,
.card h4,
.feature-box h3 {
  transition: 0.3s;
}

.card:hover h3,
.card:hover h4,
.feature-box:hover h3 {
  color: #f5c542;
}
/* =========================
   MOBILE RESPONSIVE FIXES
========================= */

/* Small Devices (phones) */
@media (max-width: 576px) {

  body {
    padding-top: 60px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .hero-text {
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
  }

  .logo {
    font-size: 22px;
  }

  .navtext {
    font-size: 16px;
    padding: 8px 0;
  }

  .section-title {
    font-size: 1.6rem;
    text-align: center;
  }


  /* Cards spacing */
  .card,
  .feature-box,
  .review-card {
    padding: 20px 15px;
  }

  /* Fix grid spacing */
  .row {
    margin-left: 0;
    margin-right: 0;
  }

  /* Images */
  .product-img1,
  .product-img {
    height: auto;
    max-width: 100%;
  }

  .bottle-6 {
    width: 100%;
  }

  .gurentybadge {
    width: 90%;
  }

  /* Buttons full width */
  .cart-btn,
  .order-btn,
  .btn-danger,
  .btn-success {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }

  /* Benefit list */
  .benefit-list li {
    font-size: 1rem;
    padding-left: 28px;
  }

  /* Popup */
  .purchase-proof {
    max-width: 90%;
    left: 5%;
    font-size: 12px;
  }
}


/* Tablets */
@media (max-width: 768px) {

  .hero-text {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.9rem;
  }
  .navtext {
    font-size: 18px;
  }

  .bottle-6 {
    width: 80%;
  }

  .gurentybadge {
    width: 80%;
  }

  .card,
  .feature-box,
  .review-card {
    margin-bottom: 20px;
  }
}


/* Large tablets / small laptops */
@media (max-width: 992px) {

  .navcenter {
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .section-title {
    text-align: center;
  }

  .section-text {
    text-align: center;
  }

  .bottle-6 {
    width: 70%;
  }
}


/* =========================
   EXTRA POLISH (IMPORTANT)
========================= */

/* Prevent overflow issues */
img {
  max-width: 100%;
  height: auto;
}

/* Better container spacing */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ================= MOBILE FONT FIX ================= */

@media (max-width: 576px) {

  h1 {
    font-size: 1.4rem !important;
    line-height: 1.4;
    padding: 0 10px;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 0.95rem !important;
  }
  .fw-bold {
    font-weight: 600 !important;
  }
}