/* SRJ Offer Carousel */
.srj-offer-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Slide image with fixed responsive height */
.srj-slide-img {
  height: 42vh; /* desktop height */
  object-fit: cover;
}
@media (max-width: 992px) {
  .srj-slide-img {
    height: 36vh;
  }
}
@media (max-width: 576px) {
  .srj-slide-img {
    height: 28vh;
  }
}

/* Soft dark gradient to improve text contrast */
/* .srj-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
} */

/* Caption area (Flipkart-like left aligned) */
.srj-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.srj-caption h2 {
  font-weight: 800;
  letter-spacing: 0.3px;
  margin: 0.5rem 0 0.25rem;
}
.srj-caption p {
  margin: 0 0 1rem;
  opacity: 0.95;
}

/* Offer badge */
.srj-badge {
  display: inline-block;
  background: #ffde59;
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* CTA button */
.srj-btn {
  display: inline-block;
  background: #ffffff;
  color: #111;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.srj-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* Dots */
.srj-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 0;
  margin: 0 5px;
}
.srj-dots .active {
  background-color: #fff;
}

/* Arrows */
.srj-arrow {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.srj-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.04);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}

/* Compact caption on mobile */
@media (max-width: 576px) {
  .srj-caption {
    padding: 0 1rem;
  }
  .srj-caption h2 {
    font-size: 1.15rem;
  }
  .srj-caption p {
    font-size: 0.85rem;
  }
  .srj-badge {
    font-size: 0.8rem;
  }
  .srj-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* View All Button */
.srj-viewall-btn {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.srj-viewall-btn:hover {
  background: #e91e63;
  color: #fff;
}

/* Category Card */
.srj-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Round Images */
.srj-category-img {
  width: 90px; /* 🔹 Increase this value to make the image bigger */
  height: 90px; /* 🔹 Increase this value to make the image taller */
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effects (No border now) */
.srj-category-card:hover .srj-category-img {
  transform: scale(1.08);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Titles */
.srj-category-title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.srj-category-card:hover .srj-category-title {
  color: #e91e63;
}

/* -------------------------
   Products Section Styling
---------------------------- */
#our-products {
  padding: 60px 0;
  background: #fafafa;
}

#our-products h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

#our-products h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c19d53, #f1c76f);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* -------------------------
   Product Card Styling
---------------------------- */
.srj-product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.srj-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.srj-product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fdfdfd;
  padding: 15px;
  transition: transform 0.3s ease;
}

.srj-product-card:hover img {
  transform: scale(1.07);
}

/* Product Info */
.srj-product-info {
  padding: 15px;
  text-align: center;
}

.srj-product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 50px;
}

.srj-product-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #c19d53;
  margin-bottom: 12px;
}

/* -------------------------
   Button Styling
---------------------------- */
.btn.srj-btn-gold {
  background-color: #b07d62; /* Choose your background color */
  color: #fff; /* White text */
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease;
}

.btn.srj-btn-gold:hover {
  background: #945c43; /* Darker shade on hover */
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
