/* ==================================================
   HOME PAGE CSS
   Used on: index.html
================================================== */


/* ==================================================
   HERO SECTION
================================================== */

.hero {
  min-height: calc(100vh - 100px);
  padding: 120px 20px;
  text-align: center;

  background:
    linear-gradient(
      rgba(15,15,15,0.65),
      rgba(15,15,15,0.85)
    ),
    url("../images/hero.png") center / cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HERO BUTTON GROUP */
.btn-group {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==================================================
   HERO SPECIAL BUTTONS (Catalogue + WhatsApp)
================================================== */

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  padding: 0 34px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;

  border-radius: 10px;
  border: 2px solid #C9A24D;
  background: #111;
  color: #C9A24D;

  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Shadow lift effect */
.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  z-index: -1;
  transform: translate(8px, 8px);
  transition: transform 0.25s ease;
}

.hero-btn:hover::after {
  transform: translate(0, 0);
}

/* GOLD VARIANT */
.hero-btn-gold::after {
  background: #C9A24D;
}

.hero-btn-gold:hover {
  background: #C9A24D;
  color: #000;
}

/* WHATSAPP VARIANT */
.hero-btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.hero-btn-whatsapp::after {
  background: #25D366;
}

.hero-btn-whatsapp:hover {
  background: #25D366;
  color: #000;
}


/* ==================================================
   HOME CAROUSEL
================================================== */

.carousel-section {
  width: 100%;
  padding: 50px 0;
  background: #0F0F0F;


}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4rem;

}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;

}

.carousel-item {
  min-width: 100%;
  height: 650px
  position: relative;

}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.6)
  );
}

/* Carousel Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(15,15,15,0.6);
  color: #C9A24D;
  border: 1px solid rgba(201,162,77,0.4);

  font-size: 40px;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 10;

  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #C9A24D;
  color: #000;
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }


/* ==================================================
   BRAND STATS
================================================== */

.brand-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 70px 40px;
  background: #111;
  text-align: center;
}

.stat-box h3 {
  font-size: 36px;
  color: #C9A24D;
}

.stat-box p {
  font-size: 14px;
  color: #aaa;
}


/* ==================================================
   CATEGORIES GRID
================================================== */

.categories {
  padding: 80px 20px;
  text-align: center;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.cat-box {
  padding: 30px;
  border: 1px solid #333;
  color: #C9A24D;
  font-weight: 600;
  transition: 0.3s ease;
}

.cat-box:hover {
  background: rgba(201,162,77,0.08);
}


/* ==================================================
   INDIA MART TRUST SECTION
================================================== */

.imart-trust-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.95),
    rgba(10,10,10,0.85)
  );
  overflow: hidden;
  text-align: center;
}

.imart-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  opacity: 0.05;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.imart-trust-content {
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.imart-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #25D366;
  color: #25D366;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.imart-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.imart-icon {
  padding: 14px;
  border: 1px solid rgba(201,162,77,0.35);
  background: rgba(15,15,15,0.85);
  color: #ccc;
}


/* ==================================================
   BEST SELLERS & BULK CTA
================================================== */

.best-sellers {
  padding: 80px 20px;
  text-align: center;
}

.bulk-section {
  padding: 0;
  text-align: center;
  background:
    linear-gradient(rgba(15,15,15,0.9), rgba(15,15,15,0.9)),
    url("../images/hero-bg.png");
}


/* ==================================================
   MOBILE RESPONSIVE – HOME
================================================== */

@media (max-width: 768px) {

  .carousel-item {
    height: 320px;
  }

  .carousel-btn {
    font-size: 28px;
    padding: 8px 14px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .imart-watermark {
    width: 220px;
  }

   .hero {
    height: 200px;
    background: url("assets/images/hero-m.jpg") no-repeat;
  }

}



  /* ===== HERO SECTION ===== */
  .hero {
    min-height: 60vh;
    padding: 120px 16px 60px;
    background-position: center top;
  }

  .btn-group {
    gap: 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 15px;
  }

  /* ===== CAROUSEL ===== */
  .carousel-section {
    padding: 30px 0;
  }

  .carousel-item {
    height: 280px;
  }

  .carousel-btn {
    font-size: 26px;
    padding: 6px 12px;
  }

  /* ===== BRAND STATS ===== */
  .brand-stats {
    padding: 50px 20px;
    gap: 30px;
  }

  .stat-box h3 {
    font-size: 30px;
  }

  .stat-box p {
    font-size: 13px;
  }

  /* ===== CATEGORIES ===== */
  .categories {
    padding: 60px 16px;
  }

  .categories h2 {
    font-size: 26px;
  }

  .cat-grid {
    gap: 16px;
  }

  .cat-box {
    padding: 22px;
    font-size: 15px;
  }

  /* ===== INDIA MART TRUST ===== */
  .imart-trust-section {
    padding: 80px 16px;
  }

  .imart-trust-section h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .imart-trust-section p {
    font-size: 15px;
  }

  .imart-icons {
    gap: 14px;
  }

  .imart-icon {
    font-size: 13px;
    padding: 12px;
  }

  /* ===== BEST SELLERS ===== */
  .best-sellers {
    padding: 70px 16px;
  }

  .products {
    padding: 0 10px 40px;
    gap: 20px;
  }

  .product-card {
    padding: 22px 16px;
  }

  /* ===== BULK SECTION ===== */
  .bulk-section {
    padding: 80px 16px;
  }

  .bulk-section h2 {
    font-size: 26px;
  }

  .bulk-section p {
    font-size: 15px;
  }


