/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 40px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--menu-primary-color);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--menu-primary-color);
}

.qty-btn:hover {
    background: var(--menu-primary-color);
    color: white;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn.qty-minus:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}

.qty-btn.qty-minus:disabled:hover {
    background: white;
    transform: none;
}

.qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 16px;
    color: var(--menu-dark-color);
}

/* Add Button */
.btn-add-to-cart-simple {
    width: 100%;
    height: 40px;
    background: var(--menu-primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart-simple:hover {
    background: var(--menu-secondary-color);
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .quantity-controls {
        height: 36px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .qty-value {
        font-size: 14px;
    }

    .btn-add-to-cart-simple {
        height: 36px;
        font-size: 13px;
    }
}