.quantity-control {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .quantity-btn {
        width: 36px;
        height: 36px;
        border: 1px solid #dee2e6;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 600;
        color: #495057;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
    }

    .quantity-btn:hover {
        background: #f8f9fa;
        border-color: #adb5bd;
        color: #212529;
    }

    .quantity-btn:active {
        transform: scale(0.95);
    }

    .quantity-input {
        width: 60px;
        height: 36px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        color: #495057;
        padding: 0;
        background: white;
    }

    .quantity-input:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

    .quantity-input::-webkit-inner-spin-button,
    .quantity-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .quantity-input::-moz-inner-spin-button,
    .quantity-input::-moz-outer-spin-button {
        -moz-appearance: none;
        margin: 0;
    }

    .stock-info {
        font-size: 11px;
        color: #6c757d;
        text-align: center;
        margin-top: 4px;
    }