/* Qty Controls */
.qty-controls {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 3px;
    border: 1px solid #e9ecef;
}

.qty-controls button {
    border: none;
    background: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: bold;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 6px;
}

.qty-controls button:hover:not(:disabled) {
    background-color: #fee8d6;
    color: #fe9923;
}

.qty-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-controls span {
    width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #212529;
}

.option-qty-container {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-wrapper {
    transition: border-color 0.2s;
}

.option-card-container {
    margin-bottom: 8px;
}
