# Vehicle Storage Overview

Nord Inventory manages trunk and glovebox capacity independently.

Each vehicle/category can define:

- trunk max weight;
- trunk slots;
- glovebox max weight;
- glovebox slots.

## Capacity precedence

For both weight and slots:

1. Model-specific override.
2. Vehicle category default.
3. Nord fallback configuration.

The effective values are re-resolved whenever the storage opens.

## Default fallback values

```lua
Config.TrunkWeight = 120000
Config.TrunkSlots = 50
Config.GloveboxWeight = 15000
Config.GloveboxSlots = 10
```

## Glovebox ideal weight

```lua
Config.VehicleRegistry.GloveboxIdealWeight = Config.GloveboxWeight
```

Admin Studio displays a warning when a glovebox is configured above this recommended value. The warning is informational and does not block saving.

## Safe slot reduction

If capacity is reduced below the slots currently in use, Nord compacts items safely. When necessary, it retains enough effective slots to avoid hiding/deleting existing items.
