.product-block.col-sm-6 {
    border: 5px solid #218064 !important;
}

.header-search__form{
    border: 2px solid #218064 !important;
}

.checkout-customer__group{
display:none;
visibility:hidden;
}






.product-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
}


.product-thumb__price {
    display: flex;
    align-items: center;
    gap: 10px; /* Регулируй отступ между ценой и кнопкой */
}

.product-thumb__cart {
    display: flex;
    align-items: center;
}


.product-thumb__price {
    display: flex;
    align-items: center;
    gap: 10px; /* Відстань між цінами */
    flex-wrap: wrap;
}

.price-new {
    font-weight: bold;
    color: red;
}

.price-old {
    text-decoration: line-through;
    color: gray;
}
.product-thumb__price {
    display: flex;
    align-items: center;
    gap: 10px; /* Відстань між цінами */
    flex-wrap: wrap;
}

.price-new {
    font-weight: bold;
    color: red;
}

.price-old {
    text-decoration: line-through;
    color: gray;
}
.product-thumb__cart {
    margin-top: -3px; /* Піднімає кнопку */
}


@media (max-width: 768px) { /* Для мобільних пристроїв */
    .product-info-wrapper {
        flex-direction: column; /* Щоб ціна і кнопка були одна під одною */
        align-items: center; /* Центруємо все */
        text-align: center;
    }

    .product-thumb__cart {
        margin-top: 5px; /* Прибираємо негативний margin */
        display: flex;
        justify-content: center; /* Вирівнюємо кнопку */
        width: 100%;
    }
}

