@media (max-width: 800px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .redemption-controls {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .redeem-buttons {
        justify-content: center;
    }

    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .inventory-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .inventory-header h3 {
        margin-right: 0;
    }

    .inventory-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .modal-content {
        width: 90%;
    }

    .toggle-wrapper {
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.2);
        padding: 10px;
        border-radius: 6px;
        margin-bottom: 10px;
        border: 1px solid var(--primary-color);
    }
}