/* ======================================================= */
/* ====== EXACT PRODUCT BANNER CSS ======================= */
/* ======================================================= */

.product-banner {
  position: relative;
  /* width: 100%; */
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

@media (min-width: 640px) {
  /* sm:min-h-[80vh] */
  .product-banner {
    min-height: 80vh;
  }
}

/* --- Dark Overlay --- */
.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* inset-0 */
  background-color: rgba(0, 0, 0, 0.4); /* bg-black/40 */
  z-index: 1;
}

/* --- Decorative Shapes --- */
.deco-shape {
  position: absolute;
  background-color: #4f46e5; /* bg-indigo-600 */
  opacity: 0.8;
  display: none; /* Mobile par hidden */
  z-index: 2;
}

@media (min-width: 768px) {
  /* md:block */
  .deco-shape {
    display: block;
    width: 8rem; /* md:w-32 */
    height: 8rem; /* md:h-32 */
  }
}

.deco-shape.top-left {
  top: 2rem; /* top-8 */
  left: 2rem; /* left-8 */
}

.deco-shape.bottom-right {
  bottom: 2rem; /* bottom-8 */
  right: 2rem; /* right-8 */
}

/* --- Content Wrapper --- */
.banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --- Heading and Description --- */
.banner-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-bold */
  letter-spacing: -0.025em; /* tracking-tight */
  display: inline-block;
  position: relative;
  padding-bottom: 1rem; /* pb-4 */
}

@media (min-width: 640px) {
  /* sm:text-5xl */
  .banner-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  /* lg:text-6xl */
  .banner-title {
    font-size: 3.75rem;
  }
}

.title-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
}

.banner-description {
  margin-top: 1.5rem; /* mt-6 */
  font-size: 1.125rem; /* text-lg */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb; /* text-gray-200 */
}
@media (min-width: 768px) {
  /* md:text-xl */
  .banner-description {
    font-size: 1.25rem;
  }
}
