/**
/**
 * Styles for Add to Cart button in auto catalog
 */
.pixad-add-to-cart {
    margin: 15px 0;
    text-align: center;
}

/* Общие стили для кнопки добавления в корзину */
.btn_attocart {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #f7f7f7;
    color: #222;
    border: 2px solid #222;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    margin: 15px 0;
    line-height: 1.4;
}

.btn_attocart:hover {
    background-color: #222;
    color: #fff;
    text-decoration: none;
}

.btn_attocart.out-of-stock {
    background-color: #f1f1f1;
    border-color: #ccc;
    color: #888;
    cursor: not-allowed;
}

.btn_attocart.no-product {
    display: none;
}

/* Обратная совместимость со старыми стилями */
.pixad-add-to-cart-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f7f7f7;
    color: #222;
    border: 2px solid #222;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.pixad-add-to-cart-button:hover {
    background-color: #222;
    color: #fff;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 767px) {
    .btn_attocart,
    .pixad-add-to-cart-button {
        padding: 10px 15px;
        font-size: 12px;
    }
}
