.discover-heading {
  text-align: center;
  margin-bottom: 28px;
}

 .logo img {
          width: 120px;
        } 

.discover-heading span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #555;
}

.discover-heading h2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0;
}
.bg-primaryRed {
  background-color: #ee1c29;
}
.font-primaryRed {
  color: #ee1c29;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .main-img {
  opacity: 0;
}

/* Wishlist Icon */
.wishlist-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.product-card:hover .wishlist-icon {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-icon i {
  font-size: 16px;
  color: #c40000; /* red theme */
}

.usp-icons::before {
  font-size: 25px;
}

.social-btns i {
  color: #fff;
}

.view-all-btn {
  border: 1px solid #000;
  background: transparent;
  padding: 10px 28px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #c40000;
  color: #fff !important;
  border-color: #c40000;
}
.custom-tabs .nav-link {
  border-radius: 5px;
  margin: 0 8px;
  color: #000;
  background: none;
  font-size: 13px;
  padding: 6px 16px;
}
.view-all-btn {
  border: 1px solid #000;
  background: transparent;
  padding: 8px 90px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
  color: #555 !important;
}

.view-all-btn:hover {
  background: #c40000; /* red theme */
  color: #fff;
  border-color: #c40000;
}
.product-info {
  padding: 15px;
  text-align: center;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.price-section {
  margin-bottom: 10px;
}

.discount-price {
  font-size: 16px;
  font-weight: 600;
  color: #c40000; /* red theme */
  margin-right: 6px;
}

.original-price {
  font-size: 13px;
  text-decoration: line-through;
  color: #888;
}

.add-to-cart-btn {
  width: 100%;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  padding: 6px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #c40000;
  border-color: #c40000;
}

.custom-tabs .nav-link.active {
  border-bottom: 2px solid #ee1c29;
  background: #ee1c29;
  color: #fff !important;
  transition: all;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 12px;
  padding: 4px 8px;
}
.padding-x-80 {
  padding: 80px 0px;
}

@media (max-width: 991px) {
  .custom-tabs .nav-link {
    margin: 0px;
    font-size: 12px;
    padding: 4px 10px;
  }
}

.prodListHeading h2{
  text-align: center;
  font-size: 35px;
  font-weight: 100;
  color: #000;
}

.breadcrumb-item+.breadcrumb-item::before{
  display: none;
}

.breadcrumb-item a::after {
  content: " >";
  margin-left: 5px;
}

.breadcrumb-item.active::after {
  content: "";
}

.breadcrumb {
  font-size: 13px;
}