.pagination {
    --bs-pagination-active-bg: #000 !important;
    color: #000 !important;
}

.page-item .active {
    /* border: none !important; */
    /* outline: none !important; */
}

.banner_bg_main {
    width: 100%;
    height: 500px;
    background-image: url("../frontend/img/banner.png");

    background-size: 100%;
    background-repeat: no-repeat;
}

/* copyright section start */

.copyright_section {
    width: 100%;
    float: left;
    background-color: #252525;
    height: auto;
}

.copyright_text {
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin: 20px 0px;
}

.copyright_text a {
    color: #ffffff;
}

.copyright_text a:hover {
    color: #f26522;
}

.margin_top90 {
    margin-top: 90px;
}

.product-title h6 {
    font-weight: bold;
    font-size: 20px;
}

/* copyright section end */

@media (min-width: 992px) {
    .col-lg-1-7 {
        flex: 0 0 14.285%;
        max-width: 14.285%;
    }
}

/* Optional: Adjust height on smaller screens */

@media (max-width: 1024px) {
    .banner_bg_main {
        height: 370px !important;
    }
}

@media (max-width: 768px) {
    .banner_bg_main {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .banner_bg_main {
        height: 200px !important;
    }
}

@media (max-width: 320px) {
    .banner_bg_main {
        height: 150px !important;
    }
}

/*  */
.text {
    border-bottom: 4px solid rgb(35, 35, 35);
    padding-bottom: 15px;
}

.product-card {
    position: relative;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out;
    z-index: 1;
}

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

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff2ee5;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.hover-icon-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transform: translate(20px, 20px);
    transition: all 0.3s ease-in-out;
    z-index: 3;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px 12px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover .hover-icon-link {
    opacity: 1;
    transform: translate(0, 0);
}

.hover-icon-link i {
    color: #000;
    font-size: 1rem;
}

.hover-icon-link:hover {
    background: #f0f0f0;
}

.product-title {
    font-size: 19px;
    font-weight: 500;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.85rem;
}

.product-price {
    font-size: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9rem;
    margin-right: 8px;
}

.new-price {
    color: #b30000;
    font-weight: 600;
}

.review-count {
    font-size: 0.875rem;
    color: #555;
    margin-left: 6px;
}

/* .card-body {
            background-color: #fff;
        } */

@media (max-width: 991px) {
    .col-lg-3 {
        margin-bottom: 2rem;
    }
}

/* Add these new styles to your existing CSS */
.product-card {
    /* Keep your existing styles */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.product-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for staggered effect */
.product-card.animated:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card.animated:nth-child(2) {
    transition-delay: 0.2s;
}

.product-card.animated:nth-child(3) {
    transition-delay: 0.3s;
}

.product-card.animated:nth-child(4) {
    transition-delay: 0.4s;
}

/* footer */
.footer-link {
    color: black;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    background-color: #222;
    color: white;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    transition: 0.3s;
}

.fab {
    line-height: 38px !important;
}

.footer-icon:hover {
    background-color: white;
    color: black;
    transform: scale(1.1);
}

/*  */

input::placeholder {
    color: #aaa;
    font-style: italic;
}

input:focus {
    border-color: #333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    outline: none;
}

#gentsCarouselSplide-track {
    max-height: 490px;
    height: 100%;
}

.custom-bullet {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    transition: all 0.3s ease;
}

.custom-bullet.active {
    background-color: #000;
    width: 30px;
    border-radius: 20px;
}

.custom-pagination {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .blog-card {
        padding: 0 !important;
    }

    .blog-image img {

        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    .fs-sm-14 {
        font-size: 14px !important;
    }

    .p-sm-8 {
        padding: 8px !important;
    }
}

#gentsCarouselSplide .splide__arrows {
    position: absolute !important;
    top: 40% !important;
    width: 100%;
}

.border {
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.top-picks-main-card {
    background-color: #ffffff73 !important;
    box-shadow: 0 0 10px 5px #fbb6f6d4 !important;
}

.gents-section {
    .splide__arrow--next {
        right: -2em;
    }

    .splide__arrow--prev {
        left: -2em;
    }
}

#gentsCarouselSplide-track {
    max-height: 590px;
    height: 100%;
}

.new-arrivals-sec {
    background-color: #e3dff5;
    padding: 40px 0 !important;
}

.card.product-card {
    border: 0.5px solid #c5b8ff !important;
    background-color: #c2bae5b8 !important;
}


.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: #ff95f1;
    border-bottom-color: #dee2e6;
    border-top: 0;
    border-right: 0;
    border-left: 0;

    color: #ffffff !important;
}

.nav-tabs .nav-link {
    color: #959595 !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: #ffffff !important;
    background-color: #ffb5f5;
}

.send-mail-hero-sec {

    .container {
        border-top: 1px solid rgb(223, 223, 223);
        border-bottom: 1px solid rgb(223, 223, 223);
        padding: 48px 0;
    }
}

.sec-heading {
    border-bottom: 3px solid rgb(255 46 229);
    color: rgb(255 46 229);
}

.sec-heading-text {
    color: rgb(255 46 229);
}

/* .card-body {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
} */

.links-two {
    display: none !important;
}

@media(max-width: 700px) {
    .gents-section {
        .splide__arrow--next {
            right: 0em;
        }
    }

    .gents-section {
        .splide__arrow--prev {
            left: 0em;
        }
    }

    .nav-tabs .nav-link {
        font-size: 15px;
    }

    .links-two {
        display: block !important;
    }

    .links-one {
        display: none !important;
    }

    .footer-logo {
        margin-bottom: 30px;
        justify-content: center;
        display: flex;
    }

    .hero-carousel-heading {
        font-size: 40px !important;
        font-weight: 700 !important;
    }

    .hero-desc-text {
        font-size: 18px !important;
    }

    .footer-cover {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .send-mail-hero-sec {
        margin-bottom: 0 !important;
    }
}

.navbar-toggler {
    border-color: white;
}

.clr-purple {
    color: #ff2ee5;
}

.bg-purple {
    background-color: #ff2ee5 !important;
}

.subscribe-btn {
    background-color: #ff2ee5;
    border-color: #ff2ee5;
}

.footer-icons::before {
    color: #ff2ee5;

}

.footer-icon {
    background-color: #ff2ee5;

}

.top-scroll-helper {

    background-color: #ff2ee5;
    border-color: #ff2ee5;
}

@media screen and (max-width: 991px) {
    .mobile-btn-wrapper {
        display: flex !important;
    }
    .edit-main-container{
        max-width: 100px !important;
    }
}