/* Стили для контролов количества в блоке trend_swiper */
.quantity-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: background-color 0.2s;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-btn:active {
    background: #dee2e6;
}

.quantity-minus {
    border-right: 1px solid #ddd;
}

.quantity-plus {
    border-left: 1px solid #ddd;
}

.quantity-input {
    border: none;
    padding: 8px 12px;
    text-align: center;
    font-size: 14px;
    width: 60px;
    outline: none;
    background: white;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

.price-display {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.total-price {
    color: #029AAD;
}

/* Стили для кнопки "В корзину" */
.addToCart {
    background: #029AAD;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.2s;
}

.addToCart:hover {
    background: #027a8a;
}

.addToCart:active {
    background: #025f6b;
}

/* Стили для кнопки "Сообщить о наличии" */
.follow.noNal {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.2s;
}

.follow.noNal:hover {
    background: #5a6268;
}

.follow.noNal:active {
    background: #495057;
}

