 .reels-wrapper-horizontal {
            position: relative;
            width: 100%;
            padding: 0 56px;
        }

        .reels-row {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: calc((100% - 5 * var(--gap)) / 6);
            gap: var(--gap);
            overflow: hidden;
            scroll-behavior: smooth;
            align-items: start;
        }

        .reel {
            width: 100%;
            aspect-ratio: 9 / 16;
            border-radius: 18px;
            border: 8px solid #222;
            overflow: hidden;
            background: #000;
            position: relative;
            cursor: pointer;
        }

        .reel video,
        .reel-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .reels-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 10px;
            background: rgba(80, 80, 80, 0.75);
            color: #fff;
            z-index: 20;
            cursor: pointer;
            font-size: 18px;
        }

        .reels-prev {
            left: 8px;
        }

        .reels-next {
            right: 8px;
        }

        .reels-footer {
            display: flex;
            justify-content: center;
            margin-top: 14px;
        }

        .reels-list-container {
            display: none;
            position: fixed;
            inset: 0;
            background: ;
            z-index: 3000;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .reels-list-container.active {
            display: flex;
        }

        .reels-list {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            scroll-behavior: smooth;
            gap: 4px;
            padding: 4px 0 80px;
        }

        .reels-list-item {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            margin: 0;
        }

        .reel.reel-full {
            width: auto;
            height: 100vh;
            aspect-ratio: 9 / 16;
            background: #000;
            overflow: hidden;
            border: 0;
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .reel-video.reel-video-full {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .reels-list-footer {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 18px;
            display: flex;
            justify-content: center;
            z-index: 3005;
            pointer-events: none;
        }

        .reels-list-footer .btn {
            min-width: 170px;
            position: relative;
            z-index: 3006;
            pointer-events: auto;
        }

        

        @media (max-width: 900px) {
            .offer-grid {
                grid-template-columns: 1fr;
            }

            .reels-wrapper-horizontal {
                padding: 0 12px;
            }


        }