*,
body,
html {
    font-family: Arial, Helvetica, sans-serif;
}

.main-btn {
    background: #be9f57 linear-gradient(135deg, #f9e8aa, #be9f57 49%, #f9e8aa) 0 0 no-repeat padding-box;
    padding: 8px 16px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #fff !important;
    text-transform: uppercase;
    transition: 0.4s ease-in;
}

.main-btn:hover {
    background: #a3853f linear-gradient(135deg, #f6db7a, #a3853f 49%, #f6db7a) 0 0 no-repeat padding-box;
}



::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

::-webkit-scrollbar-thumb {
    background-color: #b7a47b;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}


.products-section {
    width: 100%;
    overflow: hidden;
}

.product-card {
    display: block;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.7) 0%, rgba(244, 239, 228, 0.168) 50.48%, rgba(209, 204, 200, 0.7) 100%);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
    text-decoration: none !important;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    box-shadow: 0 0 10px #00000040;
}

.products-section .product-image {
    width: 100% !important;
    height: 270px !important;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

.product-title {
    font-size: 24px;
    font-weight: 400;
    color: #212529;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-decoration: none !important;
}

.product-card .main-btn {
    width: max-content;
    margin: 0px auto;
    text-decoration: none;
}


/* Featured Porduct */

.section-title {
    color: #000;
    font-size: 32px;
    font-weight: 400;
}

/* Unique class for this specific swiper */

.featured-product-card {
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
}


.featured-product-image-container {
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.featured-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-product-title {
    font-size: 18px;
    font-weight: 400;
    color: #212529;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #BE9F57;
    text-align: center;
}

/* Custom navigation buttons */
.featured-product-swiper-button-next,
.featured-product-swiper-button-prev {
    background: white;
    border-radius: 50%;
    box-shadow: 4px 4px 16px 0px #0000002B;
    width: 60px;
    height: 60px;
    margin-top: -20px;
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.featured-product-swiper-button-next:hover,
.featured-product-swiper-button-prev:hover {
    background: #BE9F57;
    color: white;
    transform: scale(1.1);
}


.featured-product-swiper-button-next:after,
.featured-product-swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.featured-product-swiper-button-next:hover::after,
.featured-product-swiper-button-prev:hover::after {
    color: #fff !important;
}


.featured-product-swiper .swiper-slide {
    position: relative;
    transition: 0.3s ease;
}


.featured-product-swiper .swiper-slide:hover {
    box-shadow: 0 0 10px #00000040;
}

.featured-product-swiper .overlay {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.featured-product-swiper .swiper-slide:hover .overlay {
    visibility: visible;
    opacity: 1;
}

/* .featured-product-swiper #wishlistlogin .modal-dialog {
    margin-top: 0px !important;
    top: 0;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-product-image-container {
        height: 200px;
    }

    .featured-product-title {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }

    .featured-product-price {
        font-size: 1rem;
    }

    .featured-product-swiper {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .featured-product-image-container {
        height: 180px;
    }

    .featured-product-info {
        padding: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .products-section>div.row {
        gap: 15px;
    }

    .product-card {
        margin-bottom: 30px;
        padding: 25px 15px;
    }

    .product-image {
        height: 200px;
    }

    .product-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 180px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .main-btn {
        font-size: 15px;
        height: 40px;
    }
}