/* ===== Banner Slider ===== */
.carousel-item {
  height: 80vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.carousel-caption {
  bottom: 20%;
  text-align: left;
}
.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}
.carousel-caption p {
  font-size: 1.2rem;
  color: #f1f1f1;
}
.carousel-caption .btn {
  border-radius: 30px;
  padding: 10px 25px;
}
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

/*==============three banner------------------*/

.banner-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.banner {
  border-radius: 15px;
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.25); */
  border-radius: 15px;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  opacity: 0.9;
}

.banner h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.banner p {
  font-size: 14px;
  margin-bottom: 15px;
}

.banner button {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.banner button:hover {
  background: #ff6b6b;
}

/* Banner Backgrounds */
.dog {
  /* background: url("assets/images/banner/petyellow.png") no-repeat center/cover,
    #fbbf24; */
    background-color: #fbbf24;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cat {
  /* background: url("assets/images/banner/pink.png") no-repeat center/cover,
    #f472b6; */
    background-color: #f472b6;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sale {
  /* background: url("assets/images/banner/blue.png") no-repeat center/cover,
    #38bdf8; */
    background-color: #38bdf8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .banner h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .banner h2 {
    font-size: 20px;
  }
  .banner {
    height: 220px;
    padding: 15px;
  }
}
/* ================ Category Slider ====================== */
.category-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.category-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.category-slider {
  padding: 10px 5px 40px;
}

.category-slide {
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-slide p a{
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-decoration: none;
  color: rgb(31, 31, 31);
}

/* Circle Navigation Buttons for Category */
.category-next,
.category-prev {
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-next::after,
.category-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.category-next:hover,
.category-prev:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Responsive text */
@media (max-width: 768px) {
  .category-section h2 {
    font-size: 22px;
  }
  .category-slide img {
    width: 80px;
    height: 80px;
  }
  .category-slide p {
    font-size: 14px;
  }
}


/* ============== Related Product ============== */
.related-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  width: 100%; /* new line add */
}


.related-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.related-slider {
  width: 100%; /* new line add */
  padding: 10px 5px 40px;
}

.related-slide {
  background: #fdfdfd;
  border-radius: 16px;
  text-align: left;
  padding: 15px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.158);
}

.related-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Product Image with Hover Cart */
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}

.add-cart {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b7c07;
  color: #fff;
  padding: 8px 18px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-image:hover .add-cart {
  bottom: 20px;
  opacity: 1;
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #3b8d15;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Product Title */
.related-slide h3.product-title a{
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 6px;
  color: #333;
  text-decoration: none;
}

/* Price & Wishlist Row */
.price-wishlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-slide p.product-price {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.related-slide p.product-price span {
  text-decoration: line-through;
  color: #888;
  margin-left: 6px;
  font-size: 14px;
}

 .wishlist-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.wishlist-btn i {
    color: red; /* default red */
    font-size: 20px;
    transition: color 0.3s ease;
}

.wishlist-btn:hover i {
    color: green; /* hover pe green */
}

/* Circle Navigation Buttons */
.related-next,
.related-prev {
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.related-next::after,
.related-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.related-next:hover,
.related-prev:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Responsive */
@media (max-width: 768px) {
  .related-section h2 {
    font-size: 22px;
  }
  .product-image img {
    height: 180px;
  }
  .related-slide h3.product-title {
    font-size: 14px;
  }
  .related-slide p.product-price {
    font-size: 13px;
  }
  .add-cart {
    font-size: 12px;
    padding: 6px 14px;
  }
}
/* =========== Why Choose Us Section =========== */
.why-choose-us {
  padding: 60px 20px;
  background: #fff;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.choose-left {
  flex: 1;
  text-align: center;
}

.choose-left img {
  max-width: 100%;
  height: auto;
}

.choose-right {
  flex: 1;
}

.choose-right h2 {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.choose-right .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature .icon {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #333;
}

.feature p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-us .container {
    flex-direction: column;
    text-align: center;
  }

  .choose-right {
    text-align: center;
  }

  .feature {
    justify-content: center;
    text-align: left;
  }
}

/* ============ Pet Banner Section ============ */
.pet-banner {
  position: relative;
  background: #2dc4f3 url('assets/images/paw-pattern.png') repeat;
  text-align: center;
  padding: 80px 20px;
  color: #000;
  overflow: hidden;
}

/* Banner Content */
.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.shop-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Decorative bottom torn effect */
/* .pet-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('assets/images/banner/bg-banner-pet.png') repeat-x;
  background-size: cover;
  z-index: 1;
} */
.pet-banner {
  content: "";
  left: 0;
  width: 100%;
  height: auto;
  /* background-size: cover; */
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 24px;
  }
  .banner-content p {
    font-size: 14px;
  }
  .shop-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* instagram and brand */
/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin-bottom: 35px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.section-title p {
  color: #666;
  font-size: 15px;
  font-style: italic;
}

/* ===== Instagram Slider ===== */
.instagram-section {
  padding: 50px 10px;
  background: #fff;
}
.instaSwiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}
.instaSwiper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.instaSwiper img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===== Brand Slider ===== */
.brand-slider {
  padding: 40px 10px;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.brandSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brandSwiper img {
  max-width: 110px;
  max-height: 50px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.brandSwiper img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Swiper Navigation Buttons (optional) ===== */
.swiper-button-next,
.swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff !important;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #fff;
  color: #000 !important;
  border: 1px solid #000;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 22px;
  }
  .instaSwiper img {
    height: 160px;
  }
  .brandSwiper img {
    max-width: 80px;
  }
}
