/* banner css */

.banner-text {
    font-family: 'Kumbh Sans', sans-serif;
    color: #BD9191;
}

.banner-title {
    font-family: 'Afacad', sans-serif;
}

.medium-screen-title {
    font-family: 'Afacad', sans-serif;
}

.banner-section {
  background: url('./Productimages/product-banner.png') center/cover no-repeat;
  height: 300px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; /* ensures absolute image doesn't spill out */
  top: 82px;
}

.inner-image {

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('./Productimages/product-inner-img.png') no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
    z-index: 0;


}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-title,
.banner-text {
  color: #fff;
}



@media (max-width: 768px) {
  .banner-section {
    background: url('./Productimages/product-lg-banner.png') center/cover no-repeat;
    height: 100px; /* adjust if needed */
  }

 .inner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfect centering */
  background: url('./Productimages/lg-inner-image.png') no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 80%;
  display: block;
  z-index: 0;
}
 .banner-content {
    text-align: center;
  }
  .banner-title{
    font-size: 30px;
  }

  .banner-text{
    font-size: 15px;
  }

}



@media (min-width: 2000px) {
  .banner-section {
   background: url('./Productimages/product-lg-banner.png') center/cover no-repeat;
    height: 400px; /* adjust if needed */
  }

 .inner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfect centering */
 background: url('./Productimages/lg-inner-image.png') no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 60%;
  display: block;
  z-index: 0;
}
 .banner-content {
    text-align: center;
  }
  .banner-title{
    font-size: 70px;
  }

  .banner-text{
    font-size: 25px;
  }

}
.breadcrumb a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: white;
  opacity: 1;
}

/* product section */
.nav-tabs .nav-link {
  border: 1px solid #ddd;

  color: #CCCCCC;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  flex-grow: 1;
  margin-right: 10px;
  user-select: none;
  font-size: 25px;
  font-weight: lighter;
  font-family: 'Afacad', sans-serif;

}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #CCCCCC;
  --bs-nav-tabs-border-radius: 0.5rem;
  --bs-nav-tabs-link-hover-border-color: #e9f0ff #e9f0ff #ddd;
  --bs-nav-tabs-link-active-color: #000066;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #ddd #ddd #fff;

  border-bottom: none;
  /* removed border bottom */
}



/* Organic label without background */
.organic-label {
  background: #d32f2f !important;
  color: white;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 10px;
  font-family: 'Afacad', sans-serif;
}

/* Product Cards */
.nav-tabs {
  display: flex;
  gap: 10px;
  /* space between tabs */
  border-bottom: none;
  justify-content: center;
  /* center align */
  padding-left: 0;
  margin-bottom: 1rem;
}

.nav-tabs .nav-item {
  flex: 0 0 auto;
  /* don't grow/shrink */
}

.nav-tabs .nav-link {
  display: inline-block;
  padding: 1.75rem 5rem;
 
  font-weight: 600;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #666;
  background-color: #fff;
  min-width: 130px;

  height: 48px;
 
  line-height: 1.2;
  transition: all 0.3s ease;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-tabs .nav-link.active {
  background-color: #001a66;
  color: #fff !important;
  border-color: #001a66;
  box-shadow: 0 4px 10px rgba(0, 26, 102, 0.4);
  margin-right: 10px;
  /* space after active tab */
}

.product-card {
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  border-radius: 6px;
  padding: 1rem;
  background: white;
  text-align: center;
  margin-bottom: 2rem;
  color: #606060;
  font-family: 'Afacad', sans-serif;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Description text */
.collection-desc {
  margin-top: 20px;
  font-size: 19px;
  color: #606060;
  font-family: 'Afacad', sans-serif;
  text-align: center;
}

.collection-desc strong {
  color: #EF3030;
  font-weight: 700;
  font-family: 'Afacad', sans-serif;
}

.section-heading {
  font-size: 40px;
  font-weight: bold;
  color: #302F2F;
  font-family: 'Afacad', sans-serif;
}

.product-name {
  color: #302F2F;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Afacad', sans-serif;
}


/* Medium screens: 2 tabs per row */
@media (max-width: 991.98px) {
  .nav-tabs .nav-item {
    flex: 1 1 48%;
  }
}

/* Small screens: 1 tab per row */
@media (max-width: 767.98px) {
  .nav-tabs .nav-item {
    flex: 1 1 100%;
  }
}

      
           