:root {
  --bg-main: #f8f6f2;
  --bg-card: #ffffff;

  --gold: #c89b3c;
  --gold-hover: #e6b85c;

  --text: #1f1f1f;
  --gray: #666666;

  --border: #d7c3a0;
}

/* ==================================
   GLOBAL
================================== */

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-main);
  color: var(--text);
}

a {
  text-decoration: none;
}

.gold-text {
  color: var(--gold);
  letter-spacing: 1px;
}

.grey-heading {
  color: var(--gray);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 30px 0;
}

/* ==================================
   NAVBAR
================================== */

.custom-navbar {
  background: white;
  border-bottom: 2px solid var(--gold);
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-text {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
}

.custom-link {
  color: var(--text) !important;
  margin-left: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.custom-link:hover {
  color: var(--gold) !important;
}

.cart-btn {
  background: var(--gold);
  color: white;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 600;
  transition: 0.3s;
}

.cart-btn:hover {
  background: var(--gold-hover);
  color: white;
  transform: translateY(-2px);
}

/* ==================================
   BUTTONS
================================== */

.btn-gold {
  background: var(--gold);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover,
.btn-gold:focus,
.btn-gold:active {
  background: var(--gold-hover);
  color: white;
  transform: translateY(-2px);
}

.view-btn,
.view-all-btn,
.continue-btn {
  background: white;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn:focus,
.view-btn:active,
.view-all-btn:hover,
.view-all-btn:focus,
.view-all-btn:active,
.continue-btn:hover,
.continue-btn:focus,
.continue-btn:active {
  background: var(--gold);
  color: white;
}
/* ================================== HERO CAROUSEL EXTRACTED ================================== */
.hero-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #ffffff; /* Smooth, clean base behind extracted text */
}

/* Perfect balanced desktop layout constraints */
.hero-banner {
  width: 100%;
  /* Changing this to contain reveals the full image edge-to-edge */
  height: auto;
  max-height: 450px;
  object-fit: contain;
  background-color: #000000; /* Optional: Adds a clean black backdrop if image aspect ratios differ */
  display: block;
}

/* Positions the tracker lines cleanly inside the bottom lip of the images */
.custom-indicators-bottom {
  margin-bottom: 15px !important;
  z-index: 5;
}

/* Content block styling directly underneath your sliding images */
.hero-below-content {
  background-color: #ffffff;
  width: 100%;
}

.hero-title {
  font-size: 2.6rem;
}

/* ================================== MOBILE RESPONSIVE OPTIMISATIONS ================================== */
@media (max-width: 768px) {
  .hero-banner {
    /* Let the image scale down naturally on mobile without pushing or pulling dimensions */
    height: auto;
    max-height: 260px;
  }

  .hero-below-content {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-lead {
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
  }

  .action-buttons .btn {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    max-height: 200px;
  }
}

/* ==================================
   PRODUCT CARDS (Optimised & Centred)
================================== */

.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #fff;
  width: 100%;
}

.product-image {
  width: 100%;
  height: 100%;
  /* Forces content to fit within container boundaries while keeping aspect ratio */
  object-fit: contain;
  display: block;
  transition: 0.3s;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 18px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  height: 52px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Added line clamping for safety */
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-card:hover .product-title {
  color: var(--gold);
}

.discount-space {
  height: 26px;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.old-price {
  height: 20px;
  font-size: 0.9rem;
}

.stock-status {
  height: 24px;
  font-size: 0.9rem;
}

.product-card .btn {
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
}

/* ==================================
   WHY CHOOSE US / INFO CARDS
================================== */

.why-card {
  background: var(--bg-card);
  padding: 30px 20px;
  border-radius: 15px;

  box-shadow: 0 5px 20px rgba(200, 155, 60, 0.18);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* ==================================
   FORMS
================================== */

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 10px;
}

.form-control {
  padding: 10px 15px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(200, 155, 60, 0.2);
}

/* ==================================
   SHOP CATEGORY BUTTONS
================================== */

.category-btn {
  background: white;
  color: var(--text);

  border: 1px solid var(--border);
  border-radius: 25px;

  padding: 6px 18px;
  margin-right: 8px;

  transition: 0.3s;
}

.category-btn:hover,
.category-btn-active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ==================================
   PRODUCT DETAIL PAGE
================================== */

.product-detail-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.product-info-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(200, 155, 60, 0.08);
}

/* ==================================
   CART PAGE
================================== */

.cart-card {
  background: var(--bg-card);

  border: none;
  border-radius: 15px;

  box-shadow: 0 5px 20px rgba(200, 155, 60, 0.12);
  transition: 0.3s;
}

.cart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(200, 155, 60, 0.25);
}

.cart-price {
  color: var(--gold);
  font-weight: 700;
}

.cart-total {
  color: black;
  font-weight: 400;
}

.qty-btn {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 8px;
  width: 35px;
  transition: 0.3s;
}

.qty-btn:hover {
  background: var(--gold-hover);
  color: white;
}

.whatsapp-btn {
  background: #1ea041;
  color: white;
  border: none;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #38e176;
  color: white;
}

.empty-cart-icon {
  color: var(--gold);
}

.cart-product-image {
  width: 70px;
  height: 70px;
  object-fit: cover;

  border-radius: 10px;
  border: 1px solid var(--border);

  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.15);
}

/* ==================================
   FOOTER
================================== */

.custom-footer {
  background: white;
  border-top: 2px solid var(--gold);
}

.footer-heading {
  color: var(--gold);
  font-weight: 700;
}

.footer-text {
  color: var(--gray);
}

.footer-link {
  color: var(--text);
  transition: 0.3s;
}

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

/*==================================
   SHOP PAGINATION 
================================== */

.shop-pagination-container {
  display: flex !important; /* Forces layout context over Bootstrap */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  margin-bottom: 24px;
  width: 100%;
}

.shop-page-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  min-width: 46px;
  height: 46px;
  padding: 0 18px;

  /* Clears native link styling */
  text-decoration: none !important;

  /* Fallback colors added in case var() values are missing */
  background: var(--bg-card, #ffffff);
  color: var(--gold, #c89b3c) !important;

  border: 1px solid var(--gold, rgba(200, 155, 60, 0.35));
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-page-btn:hover {
  background: var(--gold, #c89b3c) !important;
  color: #ffffff !important;
  border-color: var(--gold, #c89b3c) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.2);
}

.shop-page-btn.active-page,
span.active-page {
  background: var(--gold, #c89b3c) !important;
  color: #ffffff !important;
  border-color: var(--gold, #c89b3c) !important;
  cursor: default;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

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

@media (max-width: 991px) {
  .navbar-nav {
    margin-top: 15px;
    gap: 8px;
  }

  .cart-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 0.95rem;
  }

  .hero-section {
    padding: 50px 0;
    text-align: center;
  }

  .hero-image {
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  .product-image-wrapper {
    height: 150px;
    padding: 12px;
  }

  .product-card .card-body {
    padding: 12px;
  }

  .product-title {
    font-size: 0.82rem;
    height: 42px;
    margin-bottom: 8px;
  }

  .discount-space {
    height: 20px;
    margin-bottom: 4px;
  }

  .product-price {
    font-size: 1.2rem;
  }

  .old-price {
    font-size: 0.72rem;
    height: 16px;
  }

  .stock-status {
    display: none;
  }

  .product-card .btn {
    font-size: 0.72rem;
    padding: 7px;
  }

  .product-card .badge {
    font-size: 0.65rem;
  }
}

/* ==================================
   ABOUT HERO
================================== */

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  padding: 12px 18px;

  border-radius: 12px;

  box-shadow: 0 5px 18px rgba(200, 155, 60, 0.12);

  font-weight: 500;
}

.hero-feature i {
  font-size: 1.2rem;
}

.hero-section .display-5 {
  line-height: 1.2;
}

/* ==================================
   ABOUT INFO CARD
================================== */

.about-info-card {
  background: #fff;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.12);
}

.about-point {
  display: flex;
  gap: 18px;

  margin-bottom: 28px;
}

.about-point:last-child {
  margin-bottom: 0;
}

.about-point i {
  font-size: 1.8rem;
  min-width: 40px;
}

.about-point h6 {
  font-weight: 600;
}

/* ==================================
   WHAT WE OFFER
================================== */

.offer-card {
  background: #fff;

  padding: 35px 25px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.1);

  transition: 0.35s;
}

.offer-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(200, 155, 60, 0.2);
}

.offer-icon {
  width: 80px;
  height: 80px;

  margin: auto;

  border-radius: 50%;

  background: rgba(200, 155, 60, 0.12);

  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-icon i {
  font-size: 2rem;
  color: var(--gold);
}

.offer-card h5 {
  font-weight: 700;
}

/* ==================================
   WHY CHOOSE US
================================== */

.why-card {
  background: #fff;

  padding: 35px 28px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.12);

  transition: 0.35s;

  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(200, 155, 60, 0.22);
}

.why-icon {
  font-size: 3rem;

  color: var(--gold);
}

.why-card h5 {
  font-weight: 700;
}

/* ==================================
   OUR COMMITMENT
================================== */

.commitment-card {
  background: #fff;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.1);

  height: 100%;
}

.commitment-item {
  display: flex;

  gap: 18px;

  margin-bottom: 30px;
}

.commitment-item:last-child {
  margin-bottom: 0;
}

.commitment-item i {
  color: var(--gold);

  font-size: 1.5rem;

  margin-top: 4px;
}

.commitment-item h5 {
  font-weight: 700;

  margin-bottom: 8px;
}

.commitment-item p {
  color: #666;

  margin: 0;
}

/* ==================================
   TRUSTED BRANDS
================================== */

.brand-card {
  background: #fff;

  border: 1px solid rgba(200, 155, 60, 0.18);

  border-radius: 16px;

  padding: 28px;

  text-align: center;

  font-weight: 700;

  box-shadow: 0 8px 22px rgba(200, 155, 60, 0.08);

  transition: 0.35s;
}

.brand-card:hover {
  background: var(--gold);

  color: #fff;

  transform: translateY(-6px);

  box-shadow: 0 18px 35px rgba(200, 155, 60, 0.22);
}

/* ==================================
   FINAL CTA
================================== */

.cta-box {
  background: #fff;

  padding: 70px 40px;

  border-radius: 24px;

  box-shadow: 0 15px 45px rgba(200, 155, 60, 0.12);
}

.cta-text {
  max-width: 700px;

  margin: auto;

  font-size: 1.05rem;
}

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

@media (max-width: 768px) {
  .cta-box {
    padding: 45px 25px;
  }

  .hero-feature {
    justify-content: center;
  }

  .about-point,
  .commitment-item {
    gap: 14px;
  }

  .offer-card,
  .why-card,
  .brand-card,
  .about-info-card,
  .commitment-card {
    padding: 28px 20px;
  }
}
/*                           gym page gallery                            */
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
