.cetagory-single-product:hover .product-visible-cnt div:last-child button {
    /*transform: translateY(0px);
    visibility: visible;
    opacity: 1;*/


    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
    max-height: 55px;
    min-height: 55px;
    height: 55px;
    transform: none;
    opacity: 1;


}
.product-visible-cnt div:last-child button {
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    text-align: center;
    margin-bottom: 28px;
    margin-top: 20px !important;
}
.shipping-option-container.justify-content-between.align-items-center li{
    padding: 20px 16px;
    background-color: var(--whiteColor);
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    margin-bottom: 16px;
    cursor: pointer;
}
.shipping-option-container.justify-content-between.align-items-center label{
    line-height: 1.5;
    font-weight: inherit;
}
.shipping-option-container.justify-content-between.align-items-center input{
    height: 21px;
    width: 21px;
    cursor: pointer;
    font-family: var(--InterFont);
    outline: none;
    transition: 0.2s;
}
.shipping-option-container.justify-content-between.align-items-center li .cost-name-amount.all-shipping-options{
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.form--input.value-size{
    background-color: transparent;
    border: 0px;
    display: none;
}
.pdc_dimension_size li{
    cursor: pointer;
    color: var(--grayColor);
    padding-left: 20px;
}

.pdc_dimension_size li.active{
    color: var(--textPrimaryColor);
}
.pdc_favorite{
    cursor: pointer;
}
.checkout_payment_method_select{
    padding: 20px 16px;
    background-color: var(--whiteColor);
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    margin-bottom: 16px;
    cursor: pointer;
    width: 100%;
}
.checkout_payment_method_select label h6{
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}
.checkout_payment_method_select input{
    height: 21px;
    width: 21px;
    cursor: pointer;
    margin:0px;
}
.checkout_payment_method_select .cpm_select_item{
    display: flex;
    gap:
            10px;
    align-items: center;
    cursor: pointer;
}
.hide{
    display:none;
}
.product-view-content .product-badge div:first-child span {
    padding: 5px 11px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--whiteColor);


}
/* Replace Owl Carousel with CSS Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}