.bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}
.pagination-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
  }
  
  .page-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #4a90e2;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .page-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .page-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  #pageNumbers {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    min-width: 100px;
    text-align: center;
  }
  /* Product link styling */
.text-decoration-none {
  color: inherit !important;
}

.text-decoration-none:hover {
  color: inherit !important;
  text-decoration: none !important;
}
.text-decoration-none h5 {
  color: #ffffff !important;  
}
.text-decoration-none .price {
  color: #ffbe33 !important;  
}

.product_carousel_section {
  background-color: #f8f9fa;
  padding: 45px 0;
}

.product_carousel_section .box {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.product_carousel_section .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product_carousel_section .img-box {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.product_carousel_section .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_carousel_section .detail-box {
  padding: 15px;
}

.product_carousel_section .detail-box h5 {
  margin-bottom: 10px;
  font-size: 18px;
}

.product_carousel_section .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_carousel_section .options h6 {
  margin: 0;
  color: #f1612d;
  font-weight: 600;
}

.product_carousel_section .options svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  fill: #f1612d;
}

.nav_wishlist-btn:hover i,
.nav-link:hover i {
    color: #FFD700 !important; 
    transform: scale(1.1); 
    transition: all 0.3s ease; 
}
.img-box {
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff4c4c;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.big-offer {
  font-size: 12px;
  background-color: #ff0000;
  padding: 2px 5px;
  border-radius: 2px;
  margin-bottom: 2px;
}

.offer-type {
  font-size: 11px;
  margin-bottom: 2px;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.price {
  color: #ff4c4c;
  font-weight: bold;
}
.cart_link {
  position: relative;
  display: inline-block;
}

.cart_link svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  min-width: 16px;
  text-align: center;
  line-height: 16px;
}