.add-to-cart-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.add-to-cart-block .qty-input {
    width: 64px;
    height: 38px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
    background: #fff;
}

.add-to-cart-block .qty-input:focus {
    outline: none;
    border-color: #df2121;
    box-shadow: 0 0 0 2px rgba(223, 33, 33, 0.15);
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 18px;
    background: #df2121;
    color: #fff;
    border: 1px solid #df2121;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-add-to-cart:hover,
.btn-add-to-cart:focus {
    background: #a30d0d;
    border-color: #a30d0d;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.btn-add-to-cart:disabled,
.btn-add-to-cart.disabled {
    background: #cfcfcf;
    border-color: #cfcfcf;
    color: #fff;
    cursor: not-allowed;
}

.btn-add-to-cart .glyphicon {
    font-size: 14px;
}

.btn-add-to-cart.is-added {
    background: #2e8b57;
    border-color: #2e8b57;
}
