/* ============================= */
/* Hero Banner                   */
/* ============================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
}

.hero-banner img {
  /*
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  */
}

#heroCarousel {
  box-shadow: 0 4px 20px rgba(232,62,140,.12);
  border-radius: 14px;
  overflow: hidden;
}

#heroCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators .active {
  background-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
  opacity: 1;
}

/* ============================= */
/* Banner Background Gradients   */
/* ============================= */
.hero-banner-1 { background: linear-gradient(135deg, #ff3c78, #ff6fb3); }
.hero-banner-2 { background: linear-gradient(135deg, #ff6fb3, #ffe0ef); }
.hero-banner-3 { background: linear-gradient(135deg, #ff3c78, #b620e0); }

/* ============================= */
/* Floating Image                */
/* ============================= */
.floating-img {
  max-height: 250px;
  object-fit: contain;
  margin-top: 25px;
  margin-bottom: 0;
  align-self: flex-end;
  filter: drop-shadow(0px 6px 18px rgba(0,0,0,0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
  opacity: 0;
}

.floating-img:hover {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0px 12px 24px rgba(0,0,0,0.3));
}

/* ============================= */
/* Text + Button Animations      */
/* ============================= */
.banner-text-col h2,
.banner-text-col p,
.banner-text-col a {
  opacity: 0;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.carousel-item.active .banner-text-col h2 {
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.1s;
}
.carousel-item.active .banner-text-col p {
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
}
.carousel-item.active .banner-text-col a {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}
.carousel-item.active .floating-img {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
}

/* ============================= */
/* Gradient Button w/ Shimmer    */
/* ============================= */
.btn-pink-animated {
  background: linear-gradient(135deg, #ff3c78, #ff6fb3);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 12px rgba(255, 60, 120, 0.4);
  overflow: hidden;
}

.btn-pink-animated:hover {
  background: linear-gradient(135deg, #e2336a, #ff4d94);
  transform: translateY(-2px);
  box-shadow: 0px 6px 16px rgba(255, 60, 120, 0.6);
}

.btn-pink-animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
}

.btn-pink-animated:hover::after {
  animation-duration: 1.2s;
}

@keyframes pinkPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 60, 120, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(255, 60, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 60, 120, 0); }
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Glow pulse only on desktop */
@media (min-width: 992px) {
  .btn-pink-animated {
    animation: pinkPulse 2.5s infinite;
  }
}

/* ============================= */
/* Carousel Controls             */
/* ============================= */
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
}

/* ============================= */
/* Banner Text                   */
/* ============================= */
.banner-text-col {
  padding-left: 40px;
}

.banner-text-col h1,
.banner-text-col h2 {
  font-size: 28px;
}

.banner-text-col p {
  font-size: 18px;
  margin-bottom: 16px;
}

.banner-text-col .btn {
  padding: 6px 20px;
  font-size: 13px;
}

.hero-title-mobile {
  display: none;
}

/* ============================= */
/* General                       */
/* ============================= */
.bg-dark {
  background: linear-gradient(135deg, #ff3c78, #b620e0);
}

.bi {
  font-size: 20px;
}

h5 {
  font-weight: bold;
}

/* ============================================= */
/* Premium Section Headers                       */
/* ============================================= */
.listing-wrapper > .d-flex.align-items-center.mb-2 {
  background: #fdf2f8;
  border: 1px solid #f0e0ea;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px !important;
}

.listing-wrapper > .d-flex.align-items-center.mb-2 h5 {
  font-size: 17px;
  font-weight: 700;
  color: #d63384;
  position: relative;
  padding-left: 14px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 74%;
  display: inline-block;
  vertical-align: middle;
}

.listing-wrapper > .d-flex.align-items-center.mb-2 h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, #e83e8c, #d63384);
}

/* ============================= */
/* Thumbnails & Cards            */
/* ============================= */
.categoryThumbs {
  cursor: pointer;
  flex-shrink: initial;
}

.productThumbs {
  cursor: pointer;
}

.blogThumbs {
  cursor: pointer;
}

.category-thumb {
  transition: transform 0.3s ease;
}

.category-thumb:hover {
  transform: scale(1.08);
}

/* ===== Category Thumbnails Premium ===== */
.category-img-wrapper {
  box-shadow: none;
  border: 3px solid #f0e0ea;
  transition: all 0.3s ease;
}

.category-img-wrapper:hover {
  border-color: #e83e8c;
  box-shadow: 0 0 16px rgba(232,62,140,.25);
}

.categoryThumbs .product-title-thumb {
  font-size: 13px;
  color: #555;
  transition: color 0.2s ease;
}

.categoryThumbs:hover .product-title-thumb {
  color: #d63384;
}

/* ===== Brand Thumbnails Premium ===== */
.brand-img-wrapper {
  overflow: hidden;
  border-radius: 50% !important;
  width: 110px;
  height: 110px;
  box-shadow: none;
  border: 3px solid #f0e0ea;
  transition: all 0.3s ease;
}

.brand-img-wrapper:hover {
  border-color: #e83e8c;
  box-shadow: 0 0 16px rgba(232,62,140,.25);
}

.brandThumbs .product-title-thumb {
  font-size: 13px;
  color: #555;
  transition: color 0.2s ease;
}

.brandThumbs:hover .product-title-thumb {
  color: #d63384;
}

/* ===== Product Card Premium ===== */
.productThumbs {
  background: #fff;
  border: 1px solid #f0e0ea;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.productThumbs:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,62,140,.15);
  border-color: #f5c6d8;
  background: #fdf2f8;
}

.productThumbs .card-img-top {
  box-shadow: 0 2px 8px rgba(232,62,140,.08);
  border: 1px solid #f0e0ea;
}

.productThumbs:hover .card-img-top {
  box-shadow: 0 4px 12px rgba(232,62,140,.15);
}

.productThumbs:hover .product-title-thumb {
  color: #d63384;
}

/* ===== Blog Cards Premium ===== */
.blogThumbs .card {
  overflow: hidden;
}

.blogThumbs .card-body .card-title {
  font-weight: 700;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogThumbs:hover .card-title {
  color: #d63384;
}

.blogThumbs .card-body .btn-pink {
  border-radius: 20px;
  font-size: 12px;
  padding: 4px 16px;
}

/* ============================= */
/* Product Info                  */
/* ============================= */
.rating-stars i {
  font-size: 14px;
  vertical-align: middle;
}

.rating-stars .stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.rating-stars .rating-text {
  vertical-align: middle;
}

.product-title-thumb {
  margin-bottom: 0px;
  text-transform: capitalize;
}

.country-flag {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
  background: #fff;
  z-index: 2;
}

.blog-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: calc(1.4em * 3);
}

/* ===== Section Separator Premium ===== */
.dashedBorder {
  margin: 20px 0;
  opacity: 0.4;
}

/* ============================= */
/* Mobile Responsive             */
/* ============================= */
@media (max-width: 767px) {
  .hero-banner {
    height: 240px;
    min-height: 240px;
  }

  .hero-banner .row {
    flex-direction: column-reverse;
  }

  .banner-text-col {
    text-align: left !important;
    margin-top: -261px;
    padding-left: 20px;
  }

  .floating-img {
    margin: 0 auto;
    margin-right: -29px;
    margin-top: -30px;
    height: 220px;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  .banner-text-col h1 {
    font-size: 22px;
    white-space: nowrap;
  }

  .banner-text-col h2 {
    font-size: 17px;
  }

  .banner-text-col p {
    font-size: 13px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  #banner1_img {
    margin-top: -8px !important;
  }

  .pMobile {
    width: 242px;
  }

  .bannerImg2 {
    height: 240px;
    margin-top: -10px;
  }

  /* Mobile section headers */
  .listing-wrapper > .d-flex.align-items-center.mb-2 {
    padding: 10px 12px;
  }

  .listing-wrapper > .d-flex.align-items-center.mb-2 h5 {
    font-size: 14px;
    max-width: 65%;
  }
}
