        /* Global Styles */
        :root {
            --primary-color: #000000;
            --secondary-color: #f8f9fa;
            --accent-color: #ff4081;
            --text-color: #333;
            --light-bg: #f9f9f9;
        }

        body {
            /*font-family: 'Arial', sans-serif;*/
            color: var(--text-color);
            overflow-x: hidden;
            /*background: #fff4f9;*/
            font-family: 'Poppins', sans-serif;
        }

       
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.hero-slideshow {
    height: 100%;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

/*.hero-slide {*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    position: relative;*/
/*}*/
/*.hero-slide-img {*/
/*    height: 100vh;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/

/*.hero-slide-img img {*/
/*    width: 100%;*/
/*    height: 100%;*
    object-fit: contain; * or cover if you want it to fill */
/*}*/

/*@media (max-width: 768px) {*/
/*    .hero-slide {*/
/*        height: 60vh;*/
/*        background-size: cover;*/
/*        background-position: center center;*/
/*    }*/
/*}*/
/*@media (max-width: 768px) {*/
/*    .hero-slide {*/
/*        background-size: contain;*/
/*        background-repeat: no-repeat;*/
/*        background-position: center center;*/
/*    }*/
/*}*/

.hero-slide {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures full image shows without cropping */
}



@media (max-width: 768px) {
    

    .swiper-container {
        padding: 20px; /* Add padding for mobile view if needed */
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, 0.3);*/
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


        /* Products Section */
        .products-section {
            padding: 40px 0;
            /*background: #e91e63;*/
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 600;
        }

        .product-card {
            margin-bottom: 30px;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }


       

        /*.product-image img {*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    object-fit: contain;*/
        /*    transition: transform 0.4s ease;*/
        /*}*/

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-details {
            padding: 15px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
            margin-bottom:8px;
            /*color:#333;*/
            color:#e91e63;
        }

        .product-price {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 16px;
        }

        /* Image with Text Section */
        .image-with-text {
            padding: 100px 0;
            background: #fff;
        }

        .image-with-text__wrapper {
            display: flex;
            align-items: center;
            gap: 30px; /* Reduced gap */
        }

        .image-with-text--reverse .image-with-text__wrapper {
            flex-direction: row-reverse;
        }

        .image-with-text__image-wrapper {
            flex: 1;
            position: relative;
            min-height: 400px; /* Reduced height */
            max-height: 400px; /* Added max height */
        }

        .image-with-text__image {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .image-with-text__content-wrapper {
            flex: 1;
            padding: 30px;
        }

        .image-with-text__content {
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background: var(--light-bg);
            text-align: center;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .newsletter-button {
            background: var(--primary-color);
            color: #fff;
            border: none;
            padding: 15px 40px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-button:hover {
            background: var(--accent-color);
        }

        /* Footer */
        footer {
            background: var(--light-bg);
            padding: 80px 0 30px;
            margin-top: 60px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            text-align: center;
        }

        /* Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .image-with-text__wrapper {
                flex-direction: column !important;
                gap: 40px;
            }

            /*.hero-section {*/
            /*    height: 70vh;*/
            /*}*/
        }

        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-section {
                height: 30vh;
            }

            .footer-section {
                margin-bottom: 30px;
            }
        }

        /* Cart Badge */
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-color);
            color: #fff;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        /* Additional Image with Text Styles */
.image-with-text__image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

.heading.h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.image-with-text__text-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.button.button--primary {
    display: inline-block;
    background-color: #e91e63;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.button.button--primary:hover {
    background-color: #333;
    color: #fff;
}

[reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image with Text Section Styles */
.image-with-text {
    padding: 100px 0;
    background: #fff;
}

.image-with-text__wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.image-with-text__wrapper--reverse {
    flex-direction: row-reverse;
}

.image-with-text__image-wrapper {
    flex: 1;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.image-with-text__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.image-with-text__content-wrapper {
    flex: 1;
    padding: 30px;
}

.image-with-text__content {
    max-width: 500px;
    margin: 0 auto;
}

.heading.h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

.image-with-text__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.button-wrapper {
    margin-top: 30px;
}

.button.button--primary {
    display: inline-block;
    background-color: #e91e63;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.button.button--primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
    margin: 60px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 16px;
}

.newsletter-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .image-with-text {
        padding: 60px 0;
    }

    .image-with-text__wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .image-with-text__wrapper--reverse {
        flex-direction: column;
    }

    .image-with-text__image-wrapper {
        min-height: 400px;
        width: 100%;
    }

    .image-with-text__content {
        text-align: center;
    }

    .heading.h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .image-with-text {
        padding: 40px 0;
    }

    .image-with-text__image-wrapper {
        min-height: 300px;
    }

    .heading.h3 {
        font-size: 1.75rem;
    }

    .image-with-text__content p {
        font-size: 1rem;
    }
}

/* Products Section Styles */

/* Category Header */
.section-header {
    text-align: center;
    margin-bottom: 30px; /* Reduced margin */
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}
/* Refined Image with Text Section Styles */
.image-with-text {
    padding: 60px 0;
    background: #fff;
}

.image-with-text__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-with-text__wrapper--reverse {
    flex-direction: row-reverse;
}

.image-with-text__image-wrapper {
    flex: 1;
    max-width: 500px; /* Control maximum width */
    height: 300px; /* Reduced height */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-with-text__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-with-text__image:hover {
    transform: scale(1.05);
}

.image-with-text__content-wrapper {
    flex: 1;
    max-width: 500px;
}

.image-with-text__content {
    padding: 20px;
}
.image-with-text__image-wrapper {
    flex: 1;
    max-width: 400px; /* Reduced from 500px */
    height: 250px; /* Reduced from 300px */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.image-with-text__wrapper {
    display: flex;
    align-items: center;
    gap: 30px; /* Reduced gap */
    max-width: 1000px; /* Reduced overall width */
    margin: 0 auto;
    padding: 0 20px;
}
.heading.h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    position: relative;
}

.heading.h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #000;
    margin-top: 10px;
}

.image-with-text__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.button-wrapper {
    margin-top: 20px;
}

.button.button--primary {
    display: inline-block;
    padding: 12px 28px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.button.button--primary:hover {
    background: transparent;
    color: #000;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .image-with-text__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image-with-text__wrapper--reverse {
        flex-direction: column;
    }

    .image-with-text__image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .image-with-text__content {
        padding: 20px 0;
    }

    .heading.h3::after {
        margin: 10px auto 0;
    }
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .image-with-text__image-wrapper {
        width: 100%;
        max-width: 350px; /* Reduced for tablets */
        height: 220px;
    }
}

@media (max-width: 768px) {
    .image-with-text__image-wrapper {
        height: 200px; /* Even smaller for mobile */
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .image-with-text {
        padding: 40px 0;
    }

    .image-with-text__image-wrapper {
        height: 250px;
    }

    .heading.h3 {
        font-size: 1.75rem;
    }
}

/* Optional Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* Product Image */
.product-image {
    background: #f8f8f8;
    overflow: hidden;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}


.hover-image {
    display: none; /* Removes the hover image effect completely */
}
.product-card:hover .main-image {
opacity: 1; /* Keep main image visible on hover */
    transform: scale(1.05); /* Optional: Add a subtle zoom effect on hover */
    
}

.product-card:hover .hover-image {
    opacity: 1;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef6270;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 1;
}

/* Product Details */
.product-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Reduce spacing between product cards */
.row-cols-2.row-cols-md-3.row-cols-lg-4.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}
.product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color:#e91e63;
}

.price-section {
    margin: 8px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

/* Product Actions */
.product-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding-top: 10px;

}

.product-card:hover .product-actions {
    opacity: 1;
}

.btn-view-details {
    padding: 8px 16px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #000;
}

.btn-view-details:hover {
   background: #fff;
   color: #000;
   border-color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-actions {
        opacity: 1;
    }
}

.btn-wishlist {
    background: none;
    border: none;
    color: #e91e63;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-wishlist:hover {
    background: #f0f0f0;
}
