@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #00104b;
    --primary-hover: #0030A0;
    --secondary: #0058f0;
    --white: #f9f9f9;
    --ink: #101828;
    --muted: #667085;
    --line: #e6eaf2;
    --soft: #f3f7ff;
    --radius-sm: 8px;
    --radius-md: 22px;
    --radius-lg: 28px;

    /* Font Size */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-xxl: 26px;

    /* Font Weight */
    --fw-sm: 400;
    --fw-md: 500;
    --fw-semibold: 600;
    --fw-lg: 700;
    --fw-bold: bold;

    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 16, 75, .06);
    --shadow-md: 0 10px 30px rgba(0, 16, 75, .08);
    --shadow-lg: 0 18px 50px rgba(0, 16, 75, .12);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Thai', system-ui, sans-serif;
    font-size: var(--fs-md);
    color: var(--ink);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: var(--secondary);

    &:hover {
        color: var(--primary);
    }
}

/* === Navbar === */
header {
    nav.navbar {
        background: rgba(249, 249, 249, .92);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(230, 234, 242, .8);
        position: sticky;
        top: 0;
        z-index: 1;
        padding: 10px 0;

        .navbar-brand img {
            height: 38px;
            width: auto;
        }

        .nav-link {
            font-weight: var(--fw-semibold);
            color: #334155 !important;
            padding: 10px 16px !important;

            &:hover,
            &.active {
                color: var(--secondary) !important;
            }
        }
    }
}

/* === Wrapper === */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

    .content-title {
        text-align: center;
        margin-bottom: 36px;

        h2 {
            font-size: var(--fs-xxl);
            font-weight: var(--fw-bold);
            color: var(--primary);
            letter-spacing: -.01em;
            margin-bottom: 8px;
        }
    }
}

.home-page {

    .form-search {
        position: relative;
        background-color: var(--primary);

        .wrapper {
            position: relative;
            background-image: var(--banner-home);
            background-size: cover;
            background-position: center 55%;
            min-height: 480px;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px 52px;

            &::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(160deg,
                        rgba(0, 16, 75, .82) 0%,
                        rgba(0, 88, 240, .28) 60%,
                        rgba(0, 16, 75, .65) 100%);
                z-index: 0;
            }

            .content-title,
            .content-form {
                position: relative;
                z-index: 1;
            }

            .content-title {
                margin-bottom: 28px;

                h1 {
                    font-size: var(--fs-xxl);
                    font-weight: var(--fw-bold);
                    line-height: 1.1;
                    color: #fff;
                    letter-spacing: -.02em;
                    text-shadow: 0 2px 18px rgba(0, 16, 75, .45);
                    margin-bottom: 0;
                }
            }

            .content-form {
                width: 100%;
                max-width: 1100px;
                background-color: #f9f9f9;
                border: 1px solid var(--line);
                border-radius: var(--radius-lg);
                box-shadow: 0 24px 60px rgba(0, 16, 75, .30);
                padding: 10px;

                .container-search .box-centent {
                    box-shadow: unset;
                    background: unset;

                    & {
                        input[type=text] {
                            background-color: unset;
                        }

                        .switch-position {
                            background: unset;
                        }
                    }
                }
            }
        }
    }

    .news-promotions {
        padding: 72px 0;

        .content-body {

            .news-list {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;

                .news-item {
                    display: flex;
                    flex-direction: column;
                    background: #fff;
                    border: 1px solid var(--line);
                    border-radius: var(--radius-md);
                    box-shadow: var(--shadow-md);
                    overflow: hidden;
                    transition: transform 0.22s, box-shadow 0.22s;
                    color: var(--ink);

                    &:hover {
                        transform: translateY(-4px);
                        box-shadow: 0 18px 40px rgba(0, 16, 75, .12);

                        .news-image img {
                            transform: scale(1.05);
                        }

                        .news-info h3 {
                            color: var(--secondary);
                        }
                    }

                    .news-image {
                        width: 100%;
                        height: 200px;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            display: block;
                            transition: transform 0.35s;
                        }
                    }

                    .news-info {
                        padding: 18px 20px 20px;
                        display: flex;
                        flex-direction: column;
                        gap: 6px;
                        flex: 1;

                        h3 {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-bold);
                            color: var(--primary);
                            margin-bottom: 0;
                            line-height: 1.4;
                            -webkit-line-clamp: 2;
                            -webkit-box-orient: vertical;
                            display: -webkit-box;
                            overflow: hidden;
                        }

                        p {
                            font-size: var(--fs-sm);
                            color: var(--muted);
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
    }

    .route-popular {
        padding: 72px 0;
        background: #f1f5fb;

        .content-body {

            .route-list {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;

                .route-item {
                    display: flex;
                    flex-direction: column;
                    background: #fff;
                    border: 1px solid var(--line);
                    border-radius: var(--radius-md);
                    box-shadow: var(--shadow-md);
                    overflow: hidden;
                    color: var(--ink);
                    transition: transform 0.22s, box-shadow 0.22s;

                    &:hover {
                        transform: translateY(-4px);
                        box-shadow: 0 18px 40px rgba(0, 16, 75, .12);

                        .route-image img {
                            transform: scale(1.05);
                        }
                    }

                    .route-image {
                        position: relative;
                        width: 100%;
                        height: 180px;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            display: block;
                            transition: transform 0.35s;
                        }

                        &::after {
                            content: "";
                            position: absolute;
                            inset: 0;
                            background: linear-gradient(to top,
                                    rgba(0, 16, 75, .72) 0%,
                                    rgba(0, 16, 75, .18) 50%,
                                    transparent 100%);
                            pointer-events: none;
                        }

                        .route-info {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            padding: 12px 14px;
                            z-index: 1;

                            h3 {
                                font-size: var(--fs-sm);
                                font-weight: var(--fw-bold);
                                color: #fff;
                                margin-bottom: 0;
                                line-height: 1.3;
                                text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
                            }
                        }
                    }
                }
            }
        }
    }

    .provider {
        padding: 70px 0;

        .content-body {
            overflow: hidden;

            .provider-carousel {

                .provider-item {
                    padding: 10px 15px;

                    a {
                        height: 100px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: #fff;
                        border: 1px solid var(--line);
                        border-radius: 16px;
                        padding: 10px 15px;
                        transition: box-shadow 0.2s, transform 0.2s;

                        &:hover {
                            box-shadow: 0 1px 1px rgba(0, 16, 75, .15);
                            transform: translateY(-2px);

                            img {
                                filter: grayscale(0%);
                            }
                        }

                        img {
                            max-height: 80px;
                            max-width: 100%;
                            width: auto;
                            object-fit: contain;
                            filter: grayscale(30%);
                            transition: filter 0.2s;
                        }

                        .provider-initials {
                            width: 48px;
                            height: 48px;
                            border-radius: 50%;
                            background: linear-gradient(135deg, var(--primary), var(--secondary));
                            color: #fff;
                            font-size: var(--fs-lg);
                            font-weight: var(--fw-bold);
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            flex-shrink: 0;
                        }
                    }
                }
            }

            /* hide nav & dots */
            .owl-nav,
            .owl-dots {
                display: none !important;
            }
        }
    }

    .faqs {
        padding: 72px 0;
        background: #f1f5fb;

        .content-body {

            .faq-list {
                list-style: none;
                padding: 0;
                margin: 0;
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-md);
                overflow: hidden;
                padding: 8px;

                .faq-item {
                    border-bottom: 1px solid var(--line);

                    &:last-child {
                        border-bottom: none;
                    }

                    .faq-question {
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: center;
                        cursor: pointer;
                        padding: 16px 14px;
                        border-radius: 14px;
                        transition: background 0.2s;

                        &:hover {
                            background: #eef5ff;
                        }

                        h3 {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-lg);
                            color: var(--primary);
                            margin-bottom: 0;
                        }

                        i {
                            font-size: var(--fs-md);
                            color: var(--muted);
                            transition: transform 0.3s ease;
                            flex-shrink: 0;
                            margin-left: 12px;
                        }
                    }

                    .faq-answer {
                        display: none;

                        &.active {
                            display: block;
                            padding: 0 16px 16px;

                            p {
                                font-size: var(--fs-sm);
                                color: var(--muted);
                                margin-bottom: 0;
                                line-height: 1.7;
                            }
                        }
                    }
                }
            }
        }
    }

    .routes-region {
        padding: 72px 0;
        background: #f8fafd;

        .content-title {
            text-align: center;
            margin-bottom: 36px;

            h2 {
                font-size: var(--fs-xxl);
                font-weight: var(--fw-bold);
                color: var(--primary);
                margin-bottom: 8px;
            }

            p {
                font-size: var(--fs-sm);
                color: var(--muted);
                margin-bottom: 0;
            }
        }

        .content-body {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;

            .region-card {
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-md);
                overflow: hidden;
                border-top: 3px solid var(--primary);

                &.region-north {
                    border-top-color: #3b82f6;
                }

                &.region-northeast {
                    border-top-color: #f59e0b;
                }

                &.region-central {
                    border-top-color: #10b981;
                }

                &.region-south {
                    border-top-color: #ef4444;
                }

                .region-header {
                    padding: 14px 16px 12px;
                    border-bottom: 1px solid var(--line);
                    background: #f8f9fc;
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    i {
                        font-size: var(--fs-md);
                        color: var(--primary);
                        flex-shrink: 0;
                    }

                    h3 {
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-bold);
                        color: var(--primary);
                        margin: 0;
                        text-transform: uppercase;
                        letter-spacing: .04em;
                    }

                    .region-north & i {
                        color: #3b82f6;
                    }

                    .region-northeast & i {
                        color: #f59e0b;
                    }

                    .region-central & i {
                        color: #10b981;
                    }

                    .region-south & i {
                        color: #ef4444;
                    }
                }

                .region-routes {
                    list-style: none;
                    padding: 8px;
                    margin: 0;

                    li a {
                        display: flex;
                        align-items: center;
                        gap: 4px;
                        padding: 7px 8px;
                        border-radius: 8px;
                        text-decoration: none;
                        color: var(--ink);
                        font-size: var(--fs-sm);
                        line-height: 1.4;
                        transition: background 0.18s, color 0.18s;

                        &:hover {
                            background: #eef5ff;
                            color: var(--secondary);
                        }

                        i {
                            font-size: var(--fs-lg);
                            color: var(--muted);
                            flex-shrink: 0;
                        }
                    }
                }
            }
        }
    }

    .explore-more {
        position: relative;

        .wrapper {
            max-width: 100%;
            background-image: var(--explore-more);
            background-size: cover;
            background-position: center;
            padding: 96px 20px;
            position: relative;

            &::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(160deg,
                        rgba(0, 16, 75, .72) 0%,
                        rgba(0, 88, 240, .28) 60%,
                        rgba(0, 16, 75, .55) 100%);
            }

            .content-body {
                position: relative;
                z-index: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 16px;

                h2 {
                    font-size: var(--fs-xxl);
                    font-weight: var(--fw-bold);
                    color: #fff;
                    letter-spacing: -.02em;
                    text-shadow: 0 2px 18px rgba(0, 16, 75, .45);
                    margin-bottom: 0;
                }

                p {
                    font-size: var(--fs-lg);
                    color: rgba(255, 255, 255, .85);
                    max-width: 600px;
                    margin-bottom: 0;
                }
            }
        }
    }

}

.content-page>.content-title {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 64px 0 48px;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg,
                rgba(0, 16, 75, .92) 0%,
                rgba(0, 88, 240, .30) 55%,
                rgba(0, 16, 75, .82) 100%);
        z-index: 0;
    }

    .wrapper {
        position: relative;
        z-index: 1;
        text-align: center;

        h1 {
            font-size: var(--fs-xxl);
            font-weight: var(--fw-bold);
            color: #fff;
            letter-spacing: -.02em;
            text-shadow: 0 2px 18px rgba(0, 16, 75, .45);
            line-height: 1.15;
            margin-bottom: 12px;
        }

        p {
            font-size: var(--fs-lg);
            color: rgba(255, 255, 255, .80);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        time {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, .65);
            margin-top: 10px;
        }
    }

    .page-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px 8px;
        font-size: var(--fs-sm);
        margin-bottom: 16px;
        justify-content: center;

        a {
            color: rgba(255, 255, 255, .70);
            text-decoration: none;
            transition: color .2s;

            &:hover {
                color: #fff;
                text-decoration: underline;
            }
        }

        .page-breadcrumb__sep {
            color: rgba(255, 255, 255, .40);
            user-select: none;
        }

        .page-breadcrumb__current {
            color: rgba(255, 255, 255, .95);
            font-weight: var(--fw-semibold);
        }
    }
}

.content-page {
    .content-body {
        background: #f7f9fc;

        &.contact-page {

            /* ── Channel Cards Section ── */
            .contact-channels {
                padding: 72px 0 64px;

                .contact-list {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 28px;
                }

                .contact-card {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    background: #fff;
                    border: 1px solid var(--line);
                    border-radius: var(--radius-md);
                    box-shadow: var(--shadow-md);
                    padding: 32px 28px;
                    gap: 16px;
                    transition: transform 0.22s, box-shadow 0.22s;

                    &:hover {
                        transform: translateY(-5px);
                        box-shadow: var(--shadow-lg);
                    }

                    .contact-card__icon {
                        width: 64px;
                        height: 64px;
                        border-radius: 18px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;

                        img {
                            width: 40px;
                            height: 40px;
                            object-fit: contain;
                        }

                        .contact-card__icon-fallback {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 100%;
                            height: 100%;
                        }
                    }

                    &.contact-card--line .contact-card__icon {
                        background: #e8fdf0;
                        color: #06c755;
                    }

                    &.contact-card--facebook .contact-card__icon {
                        background: #e8f0ff;
                        color: #1877f2;
                    }

                    &.contact-card--email .contact-card__icon {
                        background: #eef5ff;
                        color: var(--primary);
                    }

                    .contact-card__body {
                        flex: 1;

                        h2 {
                            font-size: var(--fs-xl);
                            font-weight: var(--fw-bold);
                            color: var(--dark);
                            margin-bottom: 8px;
                            line-height: 1.3;
                        }

                        p {
                            font-size: var(--fs-sm);
                            color: var(--muted);
                            margin-bottom: 0;
                            line-height: 1.7;
                        }

                        .contact-email-address {
                            display: inline-block;
                            margin-top: 10px;
                            font-size: var(--fs-sm);
                            font-weight: var(--fw-semibold);
                            color: var(--primary);
                            word-break: break-all;
                        }
                    }

                    .contact-card__action {
                        margin-top: auto;
                        padding-top: 8px;
                        width: 100%;
                    }
                }
            }

            /* ── Contact Buttons ── */
            .btn-contact {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                padding: 12px 24px;
                border-radius: var(--radius-sm);
                font-size: var(--fs-sm);
                font-weight: var(--fw-semibold);
                text-decoration: none;
                transition: background 0.2s, transform 0.15s, box-shadow 0.2s;

                &:hover {
                    transform: translateY(-1px);
                    box-shadow: 0 6px 20px rgba(0, 16, 75, .15);
                }

                &.btn-contact--line {
                    background: #06c755;
                    color: #fff;

                    &:hover {
                        background: #05ad4a;
                        color: #fff;
                    }
                }

                &.btn-contact--facebook {
                    background: #1877f2;
                    color: #fff;

                    &:hover {
                        background: #1260cc;
                        color: #fff;
                    }
                }

                &.btn-contact--email {
                    background: var(--primary);
                    color: #fff;

                    &:hover {
                        background: #002f9e;
                        color: #fff;
                    }
                }
            }

            /* ── GEO / AEO Context Block ── */
            .contact-about {
                padding: 56px 0 72px;
                background: #eef3fb;
                border-top: 1px solid var(--line);

                .contact-about__body {
                    max-width: 720px;
                    margin: 0 auto;
                    text-align: center;

                    h2 {
                        font-size: var(--fs-xl);
                        font-weight: var(--fw-bold);
                        color: var(--primary);
                        margin-bottom: 14px;
                    }

                    p {
                        font-size: var(--fs-md);
                        color: var(--muted);
                        line-height: 1.85;
                        margin-bottom: 0;
                    }
                }
            }
        }

        &.faqs-page {
            padding: 64px 0;

            .faq-list {
                max-width: 860px;
                margin: 0 auto;
                list-style: none;
                padding: 8px;
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-md);
                overflow: hidden;

                .faq-item {
                    border-bottom: 1px solid var(--line);

                    &:last-child {
                        border-bottom: none;
                    }

                    .faq-question {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        cursor: pointer;
                        padding: 16px 14px;
                        border-radius: 14px;
                        transition: background 0.2s;

                        &:hover {
                            background: #eef5ff;
                        }

                        h2 {
                            font-size: var(--fs-md);
                            font-weight: var(--fw-lg);
                            color: var(--primary);
                            margin-bottom: 0;
                        }

                        i {
                            font-size: var(--fs-md);
                            color: var(--muted);
                            transition: transform 0.3s ease;
                            flex-shrink: 0;
                            margin-left: 12px;
                        }
                    }

                    .faq-answer {
                        display: none;

                        &.active {
                            display: block;
                            padding: 0 16px 16px;

                            p {
                                font-size: var(--fs-sm);
                                color: var(--muted);
                                margin-bottom: 0;
                                line-height: 1.7;
                            }
                        }
                    }
                }
            }
        }

        &.blogs-page {
            padding: 56px 0 96px;

            .blog-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }

            /* ── Shared badge ───────────────────────────── */
            .blog-card__badge {
                display: inline-flex;
                align-items: center;
                gap: 5px;
                font-size: var(--fs-xs);
                font-weight: var(--fw-semibold);
                color: var(--primary);
                background: rgba(0, 65, 194, .09);
                padding: 4px 12px;
                border-radius: 20px;
                margin-bottom: 14px;
                width: fit-content;
            }

            /* ── Featured card (first post) ─────────────── */
            .blog-card--featured {
                grid-column: 1 / -1;
                display: grid;
                grid-template-columns: 1fr 1fr;
                border-radius: 24px;
                overflow: hidden;
                background: #fff;
                box-shadow: 0 4px 32px rgba(0, 65, 194, .10);
                transition: box-shadow .25s ease;

                &:hover {
                    transform: none;
                    box-shadow: 0 10px 48px rgba(0, 65, 194, .16);
                }

                .blog-card__image-link {
                    display: block;
                    height: 100%;
                    min-height: 340px;
                    overflow: hidden;
                }

                .blog-card__image {
                    height: 100%;
                    aspect-ratio: unset;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform .4s ease;
                    }
                }

                &:hover .blog-card__image img {
                    transform: scale(1.04);
                }

                .blog-card__body {
                    padding: 48px 44px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    flex: 1;
                }

                .blog-card__date {
                    font-size: var(--fs-sm);
                    margin-bottom: 14px;
                }

                .blog-card__title {
                    font-size: var(--fs-xl);
                    font-weight: var(--fw-bold);
                    color: var(--dark);
                    line-height: 1.4;
                    margin-bottom: 14px;

                    a {
                        color: inherit;
                        text-decoration: none;
                        transition: color .2s;

                        &:hover {
                            color: var(--primary);
                        }
                    }
                }

                .blog-card__excerpt {
                    font-size: var(--fs-md);
                    color: var(--muted);
                    line-height: 1.75;
                    margin-bottom: 28px;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    flex: 1;
                }

                .blog-card__read-more {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    font-size: var(--fs-md);
                    font-weight: var(--fw-semibold);
                    color: #fff;
                    background: var(--primary);
                    padding: 11px 24px;
                    border-radius: 10px;
                    text-decoration: none;
                    transition: background .2s, gap .2s;
                    align-self: flex-start;

                    &:hover {
                        background: #0036a8;
                        gap: 12px;
                    }
                }
            }

            /* ── Standard card ──────────────────────────── */
            .blog-card {
                background: #fff;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 2px 16px rgba(0, 65, 194, .07);
                display: flex;
                flex-direction: column;
                transition: transform .2s ease, box-shadow .2s ease;

                &:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 8px 32px rgba(0, 65, 194, .13);
                }

                .blog-card__image-link {
                    display: block;
                    overflow: hidden;
                }

                .blog-card__image {
                    width: 100%;
                    aspect-ratio: 16 / 9;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform .35s ease;
                    }
                }

                &:hover .blog-card__image img {
                    transform: scale(1.04);
                }

                .blog-card__body {
                    padding: 20px 22px 24px;
                    display: flex;
                    flex-direction: column;
                    flex: 1;
                }

                .blog-card__date {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    font-size: var(--fs-xs);
                    color: var(--muted);
                    margin-bottom: 10px;

                    i {
                        font-size: var(--fs-xs);
                    }
                }

                .blog-card__title {
                    font-size: var(--fs-md);
                    font-weight: var(--fw-lg);
                    color: var(--dark);
                    line-height: 1.45;
                    margin-bottom: 10px;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;

                    a {
                        color: inherit;
                        text-decoration: none;
                        transition: color .2s;

                        &:hover {
                            color: var(--primary);
                        }
                    }
                }

                .blog-card__excerpt {
                    font-size: var(--fs-sm);
                    color: var(--muted);
                    line-height: 1.7;
                    flex: 1;
                    margin-bottom: 18px;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }

                .blog-card__read-more {
                    display: inline-flex;
                    align-items: center;
                    gap: 6px;
                    font-size: var(--fs-sm);
                    font-weight: var(--fw-semibold);
                    color: var(--primary);
                    text-decoration: none;
                    border-top: 1px solid #f0f2f7;
                    padding-top: 16px;
                    margin-top: auto;
                    transition: gap .2s;

                    &:hover {
                        gap: 10px;
                    }
                }
            }
        }

        &.blog-detail-page {
            padding: 56px 0 80px;

            .wrapper {
                max-width: 820px;
            }

            .blog-detail__breadcrumb {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 6px;
                font-size: var(--fs-sm);
                color: var(--muted);
                margin-bottom: 28px;

                a {
                    color: var(--primary);
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }
                }

                i {
                    font-size: var(--fs-xs);
                    color: var(--muted);
                }

                span {
                    color: var(--dark);
                }
            }

            .blog-detail__cover {
                width: 100%;
                border-radius: 20px;
                overflow: hidden;
                margin-bottom: 40px;
                box-shadow: 0 4px 24px rgba(0, 65, 194, .1);

                img {
                    width: 100%;
                    aspect-ratio: 16 / 7;
                    object-fit: cover;
                    display: block;
                }
            }

            .blog-detail__content {
                background: #fff;
                border-radius: 20px;
                padding: 40px 48px;
                box-shadow: 0 2px 16px rgba(0, 65, 194, .06);
                color: var(--dark);
                font-size: var(--fs-md);
                line-height: 1.85;

                p {
                    margin-bottom: 20px;
                    color: #3a3f4a;
                }

                h3 {
                    font-size: var(--fs-lg);
                    font-weight: 700;
                    color: var(--primary);
                    margin: 32px 0 12px;
                }

                img {
                    max-width: 100%;
                    height: auto;
                    border-radius: 12px;
                }

                strong {
                    color: var(--primary);
                }
            }

            .blog-detail__back {
                margin-top: 32px;

                .btn-back {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    font-size: var(--fs-sm);
                    font-weight: 600;
                    color: var(--primary);
                    text-decoration: none;
                    padding: 10px 22px;
                    border: 2px solid var(--primary);
                    border-radius: 50px;
                    transition: background .2s, color .2s, gap .2s;

                    &:hover {
                        background: var(--primary);
                        color: #fff;
                        gap: 12px;
                    }
                }
            }
        }

        &.routes-page {
            padding: 56px 0 96px;

            /* ── City list — vertical stack ─────────── */
            .routes-city-list {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            /* ── City section row ────────────────────── */
            .city-section {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                padding: 18px 0;
                border-bottom: 1px solid #eef1f8;

                &:last-child {
                    border-bottom: none;
                }
            }

            /* ── City name (left label) ──────────────── */
            .city-header {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                flex-shrink: 0;
                width: 160px;
                padding-top: 2px;

                h2 {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    font-size: var(--fs-md);
                    font-weight: var(--fw-semibold);
                    color: var(--dark);
                    margin: 0;

                    i {
                        font-size: 13px;
                        color: var(--primary);
                    }
                }

                .city-route-count {
                    font-size: var(--fs-xs);
                    color: var(--muted);
                }
            }

            /* ── Route chips — horizontal wrap ──────── */
            .city-routes {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                align-items: center;
                flex: 1;
            }

            .route-chip {
                display: inline-flex;
                align-items: center;
                gap: 2px;
                padding: 5px 12px 5px 8px;
                border-radius: 20px;
                background: #f0f4ff;
                color: var(--dark);
                font-size: var(--fs-sm);
                text-decoration: none;
                white-space: nowrap;
                transition: background .15s, color .15s;

                i {
                    font-size: 16px;
                    color: var(--primary);
                    flex-shrink: 0;
                }

                &:hover {
                    background: var(--primary);
                    color: #fff;

                    i {
                        color: #fff;
                    }
                }
            }
        }

        &.timetable-page {
            padding: 64px 0 80px;

            .timetable-intro {
                text-align: center;
                margin-bottom: 40px;

                h2 {
                    font-size: var(--fs-xl);
                    font-weight: var(--fw-bold);
                    color: var(--primary);
                    margin-bottom: 8px;
                }

                p {
                    font-size: var(--fs-sm);
                    color: var(--muted);
                }
            }

            .operator-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }

            .operator-card {
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-sm);
                padding: 24px 16px 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 14px;
                text-decoration: none;
                color: var(--ink);
                transition: transform .22s ease, box-shadow .22s ease, border-color .22s;

                &:hover {
                    transform: translateY(-4px);
                    box-shadow: var(--shadow-md);
                    border-color: var(--secondary);
                    color: var(--primary);
                }

                .operator-card__logo {
                    width: 72px;
                    height: 72px;
                    border-radius: 50%;
                    overflow: hidden;
                    border: 2px solid var(--line);
                    flex-shrink: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: var(--soft);

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                    &.operator-card__logo--initials {
                        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
                        border-color: transparent;

                        span {
                            font-size: var(--fs-xl);
                            font-weight: var(--fw-bold);
                            color: #fff;
                            text-transform: uppercase;
                            letter-spacing: .02em;
                        }
                    }
                }

                .operator-card__name {
                    font-size: var(--fs-sm);
                    font-weight: var(--fw-semibold);
                    text-align: center;
                    line-height: 1.4;
                    color: inherit;
                }

                .operator-card__cta {
                    margin-top: auto;
                    font-size: var(--fs-xs);
                    font-weight: var(--fw-semibold);
                    color: var(--secondary);
                    display: flex;
                    align-items: center;
                    gap: 4px;
                }
            }
        }

        &.timetable-detail-page {
            padding: 56px 0 80px;

            /* Operator header card */
            .operator-header {
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-md);
                padding: 32px 36px;
                display: flex;
                align-items: center;
                gap: 24px;
                margin-bottom: 40px;

                .operator-header__logo {
                    width: 88px;
                    height: 88px;
                    border-radius: 50%;
                    border: 2px solid var(--line);
                    overflow: hidden;
                    flex-shrink: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: var(--soft);

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                    &.operator-header__logo--initials {
                        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
                        border-color: transparent;

                        span {
                            font-size: var(--fs-xxl);
                            font-weight: var(--fw-bold);
                            color: #fff;
                            text-transform: uppercase;
                        }
                    }
                }

                .operator-header__info {
                    flex: 1;
                    min-width: 0;

                    h2 {
                        font-size: var(--fs-xl);
                        font-weight: var(--fw-bold);
                        color: var(--primary);
                        margin-bottom: 4px;
                    }

                    p {
                        font-size: var(--fs-sm);
                        color: var(--muted);
                        margin-bottom: 0;
                    }

                    .operator-badge {
                        display: inline-flex;
                        align-items: center;
                        gap: 5px;
                        background: #e8f0ff;
                        color: var(--secondary);
                        font-size: var(--fs-xs);
                        font-weight: var(--fw-semibold);
                        padding: 4px 10px;
                        border-radius: 50px;
                        margin-top: 8px;
                    }
                }
            }

            /* Route count summary */
            .routes-summary {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 20px;

                h3 {
                    font-size: var(--fs-lg);
                    font-weight: var(--fw-bold);
                    color: var(--primary);
                    margin-bottom: 0;
                }

                .routes-count {
                    font-size: var(--fs-sm);
                    color: var(--muted);
                    background: var(--soft);
                    border: 1px solid var(--line);
                    padding: 4px 12px;
                    border-radius: 50px;
                }
            }

            /* Route list */
            .routes-list {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .route-item {
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-sm);
                overflow: hidden;

                .route-item__header {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 18px 24px;
                    cursor: pointer;
                    transition: background .18s;
                    gap: 12px;

                    &:hover {
                        background: var(--soft);
                    }

                    .route-item__name {
                        font-size: var(--fs-md);
                        font-weight: var(--fw-semibold);
                        color: var(--primary);
                        display: flex;
                        align-items: center;
                        gap: 10px;

                        .route-code {
                            background: var(--primary);
                            color: #fff;
                            font-size: var(--fs-xs);
                            font-weight: var(--fw-bold);
                            padding: 3px 9px;
                            border-radius: 6px;
                            flex-shrink: 0;
                        }
                    }

                    .route-item__meta {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        flex-shrink: 0;

                        .stops-count {
                            font-size: var(--fs-xs);
                            color: var(--muted);
                            display: flex;
                            align-items: center;
                            gap: 4px;
                        }

                        .route-toggle-icon {
                            color: var(--muted);
                            font-size: var(--fs-md);
                            transition: transform .3s ease;
                            flex-shrink: 0;
                        }
                    }
                }

                &.is-open .route-item__header .route-toggle-icon {
                    transform: rotate(180deg);
                }

                .route-item__stops {
                    display: none;
                    padding: 0 24px 24px 24px;
                    border-top: 1px solid var(--line);
                }

                &.is-open .route-item__stops {
                    display: block;
                }
            }

            /* Stops Timeline */
            .stops-timeline {
                list-style: none;
                padding: 20px 0 0 0;
                margin: 0;
                position: relative;

                &::before {
                    content: "";
                    position: absolute;
                    left: 9px;
                    top: 28px;
                    bottom: 24px;
                    width: 2px;
                    background: linear-gradient(to bottom, var(--secondary), var(--line));
                }

                li {
                    position: relative;
                    padding: 0 0 20px 34px;

                    &:last-child {
                        padding-bottom: 0;
                    }

                    .stop-dot {
                        position: absolute;
                        left: 0;
                        top: 4px;
                        width: 20px;
                        height: 20px;
                        border-radius: 50%;
                        border: 3px solid var(--secondary);
                        background: #fff;
                        z-index: 1;
                    }

                    &:first-child .stop-dot {
                        background: var(--secondary);
                    }

                    &:last-child .stop-dot {
                        background: var(--primary);
                        border-color: var(--primary);
                    }

                    .stop-name {
                        font-size: var(--fs-sm);
                        font-weight: var(--fw-semibold);
                        color: var(--ink);
                        line-height: 1.4;
                    }

                    .stop-province {
                        font-size: var(--fs-xs);
                        color: var(--muted);
                        margin-top: 2px;
                    }
                }
            }

            /* Book CTA */
            .timetable-cta {
                text-align: center;
                margin-top: 40px;
                padding: 36px;
                background: linear-gradient(135deg, var(--primary) 0%, #0041C2 100%);
                border-radius: var(--radius-md);

                p {
                    font-size: var(--fs-md);
                    color: rgba(255, 255, 255, .85);
                    margin-bottom: 16px;
                }

                .btn-book {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff;
                    color: var(--primary);
                    font-size: var(--fs-md);
                    font-weight: var(--fw-bold);
                    padding: 14px 32px;
                    border-radius: var(--radius-sm);
                    text-decoration: none;
                    transition: transform .2s, box-shadow .2s;

                    &:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 8px 28px rgba(0, 0, 0, .20);
                        color: var(--primary);
                    }
                }
            }

            /* Back link */
            .timetable-back {
                margin-top: 24px;

                a {
                    display: inline-flex;
                    align-items: center;
                    gap: 6px;
                    font-size: var(--fs-sm);
                    font-weight: var(--fw-semibold);
                    color: var(--primary);
                    text-decoration: none;
                    padding: 8px 20px;
                    border: 2px solid var(--primary);
                    border-radius: 50px;
                    transition: background .2s, color .2s;

                    &:hover {
                        background: var(--primary);
                        color: #fff;
                    }
                }
            }
        }
    }
}

footer.footer {
    background: var(--primary);
    color: #fff;
    padding: 56px 0 24px;

    .footer-logo {
        height: 42px;
        filter: brightness(0) invert(1);
    }

    h3 {
        color: #fff;
        font-size: var(--fs-md);
        font-weight: var(--fw-lg);
        margin-bottom: 12px;
    }

    li,
    p {
        margin-bottom: 8px;
        font-size: var(--fs-sm);
    }

    a {
        color: #d8e6ff;

        &:hover {
            color: #fff;
        }
    }

    small,
    span {
        color: #b8c7e6;
        font-size: var(--fs-xs);
    }
}

/* === Responsive === */

/* ── Tablet LG — max 1199px ────────────────────────────────── */
@media (max-width: 1199px) {

    .home-page {

        .news-promotions .content-body .news-list,
        .route-popular .content-body .route-list {
            grid-template-columns: repeat(3, 1fr);
        }

        .routes-region .content-body {
            grid-template-columns: repeat(2, 1fr);
        }

        .provider .content-body .provider-carousel .provider-item a {
            height: 88px;
        }
    }

    .content-page .content-body {
        &.blogs-page .blog-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        &.routes-page .routes-city-list {
            /* flex column — no change needed at 1199px */
        }

        &.timetable-page .operator-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

/* ── Tablet MD — max 991px ─────────────────────────────────── */
@media (max-width: 991px) {

    .wrapper {
        padding: 15px 30px;
    }

    .home-page {
        .form-search .wrapper {
            min-height: 420px;
            padding: 60px 30px 40px;

            .content-title h1 {
                font-size: var(--fs-xxl);
            }
        }

        .news-promotions,
        .route-popular,
        .provider,
        .routes-region {
            padding: 56px 0;
        }

        .routes-region .content-body {
            grid-template-columns: repeat(2, 1fr);
        }

        .news-promotions .content-body .news-list,
        .route-popular .content-body .route-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
    }

    .content-page {
        &>.content-title {
            padding: 48px 0 32px;

            .wrapper h1 {
                font-size: var(--fs-xxl);
            }
        }

        .content-body {
            &.contact-page .contact-channels .contact-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            &.blogs-page {
                .blog-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
            }

            &.blog-detail-page {
                .blog-detail__content {
                    padding: 28px 24px;
                }
            }

            &.routes-page {
                padding: 36px 0 64px;

                .city-section {
                    flex-direction: column;
                    gap: 10px;
                }

                .city-header {
                    width: 100%;
                    flex-direction: row;
                    align-items: center;
                    justify-content: space-between;
                }
            }

            &.timetable-page .operator-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            &.timetable-detail-page .operator-header {
                padding: 24px;
                gap: 16px;
            }
        }
    }
}

/* ── Mobile LG — max 767px ─────────────────────────────────── */
@media (max-width: 767px) {

    header nav.navbar {
        padding: 10px 0;

        .navbar-brand img {
            height: 32px;
        }

        .navbar-collapse {
            background: rgba(249, 249, 249, .98);
            border-top: 1px solid var(--line);
            padding: 12px 0 16px;
            margin-top: 4px;
        }

        .nav-link {
            padding: 10px 20px !important;
            font-size: var(--fs-md);
        }
    }

    .wrapper {
        padding: 0 15px;

        .content-title h2 {
            font-size: var(--fs-xl);
        }
    }

    .home-page {
        .form-search .wrapper {
            min-height: 520px;
            padding: 40px 16px 28px;
            justify-content: flex-start;
            padding-top: 60px;

            .content-title h1 {
                font-size: var(--fs-xl);
            }

            .content-form {
                border-radius: var(--radius-md);
                padding: 0;
            }
        }

        .news-promotions,
        .route-popular,
        .provider,
        .routes-region {
            padding: 44px 0;
        }

        .routes-region .content-body {
            grid-template-columns: repeat(2, 1fr);
        }

        .news-promotions .content-body .news-list {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .route-popular .content-body .route-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;

            .route-item .route-image {
                height: 140px;
            }
        }

        .faqs .content-body .faq-list .faq-item .faq-question h3 {
            font-size: var(--fs-sm);
        }

        .explore-more .wrapper {
            padding: 56px 16px;

            .content-body h2 {
                font-size: var(--fs-xl);
            }

            .content-body p {
                font-size: var(--fs-md);
            }
        }
    }

    footer.footer {
        padding: 40px 0 20px;
    }

    .content-page {
        &>.content-title {
            padding: 40px 0 28px;

            .wrapper h1 {
                font-size: var(--fs-xl);
            }

            .wrapper p {
                font-size: var(--fs-md);
            }
        }

        .content-body {
            &.contact-page {
                .contact-channels {
                    padding: 36px 0 44px;

                    .contact-list {
                        grid-template-columns: 1fr;
                        gap: 14px;
                    }

                    .contact-card {
                        flex-direction: row;
                        flex-wrap: wrap;
                        align-items: flex-start;

                        .contact-card__icon {
                            width: 52px;
                            height: 52px;
                        }

                        .contact-card__body {
                            flex: 1;
                            min-width: 0;
                        }

                        .contact-card__action {
                            width: 100%;
                        }
                    }
                }

                .contact-about {
                    padding: 36px 0 48px;
                }
            }

            &.blogs-page {
                padding: 36px 0 56px;

                .blog-grid {
                    grid-template-columns: 1fr;
                    gap: 18px;
                }
            }

            &.blog-detail-page {
                padding: 28px 0 48px;

                .blog-detail__content {
                    padding: 24px 18px;

                    h3 {
                        font-size: var(--fs-lg);
                    }
                }

                .blog-detail__cover img {
                    aspect-ratio: 16 / 9;
                }
            }

            &.timetable-page {
                padding: 40px 0 56px;

                .operator-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 12px;
                }

                .operator-card {
                    padding: 16px 10px 14px;

                    .operator-card__logo {
                        width: 60px;
                        height: 60px;
                    }
                }
            }

            &.timetable-detail-page {
                padding: 28px 0 48px;

                .operator-header {
                    flex-direction: column;
                    text-align: center;
                    padding: 20px;
                    gap: 12px;

                    .operator-header__logo {
                        width: 72px;
                        height: 72px;
                    }

                    .operator-header__info h2 {
                        font-size: var(--fs-lg);
                    }
                }

                .routes-summary {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 6px;
                }

                .route-item .route-item__header {
                    padding: 14px 16px;
                }

                .route-item .route-item__stops {
                    padding: 0 16px 16px;
                }

                .timetable-cta {
                    padding: 24px 16px;

                    p {
                        font-size: var(--fs-sm);
                    }

                    .btn-book {
                        font-size: var(--fs-sm);
                        padding: 12px 24px;
                    }
                }
            }
        }
    }
}

/* ── Mobile SM — max 480px ─────────────────────────────────── */
@media (max-width: 480px) {

    .wrapper {
        padding: 0 12px;
    }

    .home-page {
        .form-search .wrapper {
            min-height: 480px;
            padding: 30px 15px 40px;

            .content-title h1 {
                font-size: var(--fs-lg);
            }
        }

        .news-promotions,
        .route-popular,
        .provider,
        .routes-region {
            padding: 36px 0;
        }

        .routes-region .content-body {
            grid-template-columns: 1fr;
        }

        .route-popular .content-body .route-list {
            grid-template-columns: 1fr;

            .route-item .route-image {
                height: 160px;
            }
        }

        .provider .content-body .provider-carousel .provider-item a {
            height: 72px;
        }
    }

    .content-page {
        &>.content-title {
            padding: 32px 0 22px;

            .wrapper h1 {
                font-size: var(--fs-lg);
            }

            .page-breadcrumb {
                font-size: var(--fs-xs);
            }
        }

        .content-body {
            &.timetable-page .operator-grid {
                gap: 8px;
            }

            &.timetable-detail-page {
                .stops-timeline li {
                    padding-left: 28px;
                }

                .stops-timeline::before {
                    left: 7px;
                }
            }
        }
    }
}

/* ══════════════════════════════════════════════════════════════
   COOKIE AGREEMENT
══════════════════════════════════════════════════════════════ */
.cookie-agreement {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 920px;
    background: #001664;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: cookieSlideUp .35s cubic-bezier(.22, .68, 0, 1.2) both;

    &.cookie-hiding {
        animation: cookieSlideDown .28s ease-in forwards;
    }
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
}

.cookie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;

    i {
        font-size: 20px;
        color: #fff;
    }
}

.cookie-text {
    flex: 1;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
    margin: 0;

    a {
        color: #fff;
        font-weight: var(--fw-semibold);
        text-decoration: underline;
        text-underline-offset: 2px;

        &:hover {
            opacity: .8;
        }
    }
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--secondary);
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s, transform .1s;

    &:hover {
        background: var(--primary-hover);
        transform: translateY(-1px);
    }

    &:active {
        transform: translateY(0);
    }
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes cookieSlideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

@media (max-width: 600px) {
    .cookie-agreement {
        bottom: 16px;
        width: calc(100% - 24px);
        border-radius: var(--radius-sm);
    }

    .cookie-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }

    .cookie-icon {
        display: none;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}