        .product .bp_img_category_option {
    transition-duration: 0.5s;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.86);
}
.product .bp_link_category_option {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 0;
}
.product .bp_img_category_option {
    height: 300px;
    width: 100%;
    max-width: 300px;
    object-fit: cover;
}
.product .bp_name_category_option {
    border: 1px solid gray;
    background-image: -webkit-linear-gradient(left, #ca3024, #5f0202) !important;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    width: 200px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    font-size: 12px;
}

.product .bp_name_category_option:before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: black;
}
.product .more-btn:before {
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 0.25s linear;
}
.product .more-btn:hover:before {
    width: 100%;
}
.product .bp_category_option {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
}

.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-bottom: 60px;
}

.products-title {
    position: relative;
}

.products-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
}

.products-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background-color: #333;
}

.products-heading {
    font-size: 48px;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 1px;
}

.products-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.products-description p {
    margin: 0;
}

@media (max-width: 992px) {
    .products-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-heading {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .products-heading {
        font-size: 28px;
    }

    .products-label {
        font-size: 12px;
        padding-left: 40px;
    }

    .products-label::before {
        width: 28px;
    }

    .products-description {
        font-size: 14px;
    }
}

