 :root {
            --blue: #0023A5;
            --yellow: #FFD300;
            --glass: rgba(255, 255, 255, .06)
        }

        body {
            padding-top: 64px;
            background: var(--blue);
            color: #fff;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Tajawal", "Noto Sans", Arial, sans-serif
        }

        .freego-nav {
            background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .05));
            backdrop-filter: saturate(1.4) blur(8px)
        }

        .section {
            padding: 72px 0
        }

        .section-title {
            font-weight: 900;
            letter-spacing: .5px;
            text-transform: uppercase;
            border-bottom: 3px solid var(--yellow);
            display: inline-block;
            padding-bottom: .25rem
        }

        .glass {
            background: var(--glass);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 14px;
            backdrop-filter: blur(10px)
        }

        .card.freego {
            background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
            border: 1px solid rgba(255, 255, 255, .18);
            overflow: hidden;
            position: relative;
            transition: transform .25s, box-shadow .25s
        }

        .card.freego:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, .25)
        }

        .btn-freego {
            --bs-btn-color: #00124e;
            --bs-btn-bg: var(--yellow);
            --bs-btn-border-color: var(--yellow);
            --bs-btn-hover-bg: #ffe047;
            --bs-btn-hover-border-color: #ffe047;
            --bs-btn-active-bg: #f5c700;
            --bs-btn-active-border-color: #f5c700;
            font-weight: 700
        }

        .hero {
            min-height: 42vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(90% 70% at 50% 20%, rgba(0, 0, 0, .15), rgba(0, 0, 0, .6)), linear-gradient(180deg, #0730cf, #02135e)
        }

        .hero h1 {
            font-weight: 900
        }

        .wave-divider {
            height: 64px;
            background: url('images/brand-divider.svg') center/cover no-repeat
        }

        .icon-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(180deg, #ffe66b, #ffd300);
            display: grid;
            place-items: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .25)
        }

        .icon-badge i {
            color: #00124e
        }

        .object-cover {
            object-fit: cover
        }

        .qty .form-control {
            max-width: 84px
        }

        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem
        }

        .chip {
            border: 1px solid rgba(255, 255, 255, .2);
            background: rgba(255, 255, 255, .06);
            color: #fff;
            border-radius: 999px;
            padding: .25rem .6rem;
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            cursor: pointer
        }

        .chip.active {
            background: #FFD300;
            color: #00124e;
            border-color: #FFD300
        }

        .price {
            font-weight: 800
        }

        .cart-bar {
            position: sticky;
            bottom: 16px
        }

        .freego-footer {
            background: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .9))
        }

        @media(max-width:576px) {
            .section {
                padding: 56px 0
            }

            .hero {
                min-height: 36vh
            }
        }

        [dir="rtl"] .ms-2 {
            margin-right: .5rem !important;
            margin-left: 0 !important
        }