/* product page css start here */

.dropdown-item {
    height: 5rem;
}

.dropdown-item:hover {
    background: white;
    color: #000;
}

.product_main {
    grid-template-columns: 15% 80%;
    gap: 10rem;
    padding-top: 5rem;
}

.product_grid {
    grid-template-columns: repeat(4, 23%);
    max-height: 100vh;
}

.product_main_sidebar {
    max-height: 100vh;
}

.wishlist-product-cta button {
    padding: 15px 10px;
}

/* product page css end here */

/* product page responsive css start here */
@media (min-width: 1199.99px) {
    .product_mobile_header {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .mobile_filter_section {
        min-height: 50px;
    }

    .product_header,
    .product_main_sidebar {
        display: none;
    }

    .product_main {
        display: flex;
        padding-top: 6rem;
    }

    .product_grid {
        grid-template-columns: repeat(3, 30%);
    }
}

@media (max-width: 767.98px) {
    .product_grid {
        grid-template-columns: repeat(2, 48.5%);
    }
}

@media (max-width: 575.98px) {
    .product_grid {
        grid-template-columns: 100%;
    }

    .product_card img {
        max-height: 250px;
    }
}

/* product page responsive css end here */