/* Related Products Slider Styles */
.wrps-container {
    padding: 40px 0;
}
.slick-hidden {
    visibility: hidden;
}
.slick-initialized {-261px
    visibility: visible;
}
.wrps-heading {
    margin-bottom: 30px;
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.wrps-slider {
    position: relative;
    padding: 0 40px;
    margin: 0 -10px;
}

.wrps-product-item {
    position: relative;
    margin: 0 10px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

span.product-checks {
    min-height: 28px;
    display: block;
}
/* Product Badge */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FF4E4E, #ff6b6b);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(255, 78, 78, 0.2);
}

/* Product Image */
.product-image {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

/* Product Title */
.product-title {
    margin-bottom: 5px;
}

.product-title a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Rating */
.product-rating {
    margin-bottom: 10px;
}

.product-rating .star-rating {
    color: #FFD700;
    font-size: 14px;
    margin: 0 auto !important;
}

/* Product Price */
.wrps-container .product-price {
    padding: 0px 16px;
    display: flex;
    gap: 9px;
    align-items: center;
}

.wrps-container .product-price del {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    margin-right: 8px;
}

.wrps-container .product-price ins {
    text-decoration: none;
    color: #FF4E4E;
}

/* Add to Cart Button */
.add-to-cart {
    text-align: center;
}

.add-to-cart .button {
    display: inline-block;
    background: #4CAF50;
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    position: relative;
    overflow: hidden;
}

.add-to-cart .button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.add-to-cart .button.loading {
    padding-right: 40px;
}

.add-to-cart .button.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-loading-spinner 0.6s linear infinite;
}

.add-to-cart .button.added {
    background: #45a049;
}

.add-to-cart .button.added::after {
    content: "✓";
    position: absolute;
    right: 15px;
    animation: button-added 0.3s ease-out;
}

@keyframes button-loading-spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes button-added {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slider Navigation */

/* Responsive */
@media (max-width: 768px) {
    .wrps-slider {
        padding: 0 20px;
    }
    
    .product-title a {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .add-to-cart .button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.wrps-slider .wrps-product-item {
  border: 1px solid #ddd6d6;
  padding-bottom: 16px;
}
.wrps-slider .slick-list.draggable {
  width: 100%!important;
}

/* Bundle Product Styles */
.bundle-pack {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.bundle-header {
    margin-bottom: 20px;
}

.bundle-header-text {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.bundle-header-text .highlight {
    color: #FF4E4E;
    font-weight: normal;
}

.bundle-products {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bundle-product {
    flex: 1;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.bundle-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bundle-separator {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.bundle-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bundle-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bundle-price .sale-price {
    font-size: 24px;
    font-weight: 600;
    color: #FF4E4E;
}

.bundle-price .regular-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.floating-cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #00C853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 200, 83, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.floating-cart-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 200, 83, 0.3);
}

.floating-cart-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@media (max-width: 768px) {
    .bundle-products {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .bundle-product {
        flex: 0 0 calc(50% - 15px);
    }
    
    .bundle-separator {
        font-size: 16px;
    }
    
    .bundle-price .sale-price {
        font-size: 20px;
    }
    
    .bundle-price .regular-price {
        font-size: 14px;
    }
    
    .bundle-title {
        font-size: 14px;
    }
}

.product-image span.product-tags {
    margin: 0px;
    position: relative;
    top: 9px;
    justify-content: flex-start;
    padding: 0px 14px;
}

.product-image span.product-tags span {
    font-size: 12px!important; 
    padding-left: 7px!important; 
    padding-right: 7px!important; 
    padding-top: 5px!important; 
    padding-bottom: 4px!important; 
    
}

.product-image span.tag-flag {
    width: auto;
    height: auto;
}

.product-image span.tag-normal {
    height: auto;
}
span.product-check-icon {
    background: white;
    padding: 0px 9px;
    border-radius: 20px;
    font-size: 14px;
    gap: 11px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    color: #079C73;
}

.product-image a {
    display: flex;
}
span.product-tags {
    min-height: 23px;
}
span.product-check {
    position: relative;
    top: 0;
    left: 17px;
}
.product-title a {
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 17px;
}
.product-description p {
    color: #000;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 17px;
}
.product-price {
    padding: 0px;
    margin: 0px;
}

span.product-price-old bdi {
    color: #6B757D;
    font-family: Roboto;
    font-size: 12.497px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: line-through;
}

span.product-price-new bdi {
    color: #FC3864;
    text-align: right;
    font-family: Roboto;
    font-size: 19.187px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.product-price {
    padding: 0px 16px;
}

.product-description p {
    margin: 0px;
}
.wrps-container .add-to-cart a {
    background: black!important; 
    border-radius: 20px!important; 
    width: 88%!important;
  border-radius: 34px!important;
  height: 45px;
  padding: 6px 0px;
  margin-top: 10px;
  margin-bottom: 11px;
  text-transform: capitalize;
  font-weight: bold;
	    margin: 0 auto; 
}
.wrps-container  .wrps-slider .slick-prev {
    position: absolute!important; 
    right: 0px!important; 
}
.wrps-container .wrps-slider {
    padding: 0px;
}

.wrps-container  .slick-prev:before, .wrps-container  .slick-next:before {
    font-size: 32px;
  }
  .wrps-container .slick-prev:before, .wrps-container .slick-next:before {
    color: #5f6368;
    font-size: 20px;
    opacity: 1;
    font-size: 32px;
  }

.wrps-container .slick-next {
    right: -15px; 
}
  
  .wrps-container button.slick-prev.slick-arrow.slick-disabled ,
  .wrps-container button.slick-next.slick-arrow.slick-disabled  {
    opacity: 0.2;
}

.wrps-container .add-to-cart a {
    line-height: 100%;
    color: white;
    padding-top: 16px;
}
.product-badge {
    display: none;
}


span.product-check-icon {
    background: #bbf6de;
    padding: 0px 5px;
    border-radius: 20px;
    font-size: 13px;
    gap: 5px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    color: #0f1938;
    font-weight: 600;
    margin-top: 5px;
}