<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Carousel Banner */
.carousel-div {
    position: relative;
    max-width: 100%;
    height: 65vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slides {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}
.slide {
    width: 100%;
    height: auto;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}
.slide.active {
    opacity: 1;
}
.dots {
    text-align: center;
    margin: 20px 0;
    z-index: 10;
}
.dot {
    width: 15px;
    height: 15px;
    padding: 5px;
    margin: 0 5px;
    display: inline-block;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #D6208D;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active, .dot:hover {
    background-color: #D6208D;
}
/* Set max width for product layout*/
.sale-products-div, .product-categories-div, .best-seller-products-div {
    padding: 20px;
    max-width: 1500px;
    margin: auto;
}
.product-category-wrapper{
    width: 100%;
    background-color: #D6208D;
}
.sale-products-div h2:nth-child(1), .product-categories-div h2:nth-child(1), .best-seller-products-div h2:nth-child(1) {
    color: #D6208D;
    font: 2.5rem sans-serif;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}
.sale-products, .product-category, .best-seller-products {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: flex-start; 
}
.sale-products li,.product-category li, .best-seller-products li {
    flex: 1 1 calc(25% - 20px); /* Four products per row (adjust as needed) */
    width: 350px; /* Max width for each product */
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}
.sale-products li:hover, .product-category li:hover, .best-seller-products li:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}
.sale-products h2, .product-category h2, .best-seller-products h2 {
    font: 1rem sans-serif;
    margin: 10px 0;
    color: black;
    font-weight: 600;
}
.sale-products .price, .best-seller-products .price {
    font-weight: 600 !important;
    color: #ff0000;
    margin: 5px 0;
    font: 1rem sans-serif;
}
.sale-products a, .product-category a, .best-seller-products a, .sale-products a .price ins,
.best-seller-products a .price ins{
    text-decoration: none;
}
.sale-products a li img, .product-category li img, .best-seller-products img {
    width: 100%;
    height: 350px;
}
/* Override styles for product category */
.product-categories-div h2:nth-child(1){
    color: white;
}
.product-category li {
    background-color: white;
}
/* Responsive Design */
@media (max-width: 1000px) {
    .carousel-div {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .sale-products, .product-category, .best-seller-products {
        justify-content: center;
    }  
    .sale-products li, .product-category li, .best-seller-products li {
        flex: 1 1 calc(50% - 20px); 
    }
    .carousel-div {
        height: 50vh;
    }
    
    .dots {
        margin-top: 5px; 
    }
    
    .dot {
        height: 8px;
        width: 8px;
    }
}

@media (max-width: 720px) {
    .carousel-div {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .sale-products li, .product-category li {
        flex: 1 1 100%; /* One product per row on smaller screens */
    }
    .carousel-div {
        height: 30vh;
    }
    
    .dots {
        margin-top: 5px;
    }
    
    .dot {
        height: 6px;
        width: 6px;
    }
}

@media (max-width: 380px) {
    .sale-products-div h2:nth-child(1), .product-categories-div h2:nth-child(1) {
        font-size: 2.0rem;
    }   
    .sale-products a li img, .product-category a li img {
        height: 250px;
    }
    .sale-products li,.product-category li {
        width: 230px;
    }
    .sale-products h2, .product-category h2 {
        font-size: 0.8rem;
    }
}</pre></body></html>