:root {
    --primary: #002455;
    --primary2: #08387c;
    --navy: #031739;
    --ink: #101a34;
    --muted: #667085;
    --line: #e7eaf1;
    --soft: #f6f7fb;
    --success: #00381e;
    --warning: #ff8b2d;
    --danger: #e74f52;
    --radius: 14px;
    --shadow: 0 12px 35px rgba(27, 38, 76, .08);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: #fff;
    font-size: 14px;
    line-height: 1.55
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: auto
}

.topbar {
    height: 32px;
    background: linear-gradient(90deg, #002455, #002455);
    color: #fff;
    font-size: 11px
}

.topbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar-ticker {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    color: #ffd471;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase
}

.ticker-window {
    min-width: 0;
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent)
}

.ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: latest-jobs-scroll 52s linear infinite
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px
}

.ticker-group a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    white-space: nowrap
}

.ticker-group a::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.45)
}

.ticker-group small {
    color: #b9d8ff;
    font-size: 9px
}

.ticker-group a:hover {
    color: #ffd471
}

.ticker-window:hover .ticker-track,
.ticker-window:focus-within .ticker-track {
    animation-play-state: paused
}

.topbar-support {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    color: #fff;
    white-space: nowrap
}

@keyframes latest-jobs-scroll {
    from { transform: translateX(0) }
    to { transform: translateX(-50%) }
}

@media(prefers-reduced-motion:reduce) {
    .ticker-track {
        animation-play-state: paused
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.nav-row {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 24px
}

.logo {
    width: 172px;
    flex: 0 0 auto
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto
}

.nav a {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap
}

.nav a.active,
.nav a:hover {
    color: var(--primary)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px
}

.icon-btn,
.btn {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    min-height: 40px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s
}

.icon-btn {
    width: 40px;
    padding: 0
}

.icon-btn i,
.btn i {
    font-size: 1.1em;
    line-height: 1
}

.meta i,
.trust-row i,
.floating i,
.footer-col i {
    margin-right: 4px;
    vertical-align: -1px
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    border-color: transparent
}

.btn-success {
    color: #fff;
    background: var(--success);
    border-color: transparent
}

.btn-outline {
    border-color: #d39b23;
    color: var(--primary)
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(211, 155, 35, .13)
}

.mobile-toggle {
    display: none
}

.nav-mobile-head,
.nav-mobile-actions,
.nav-overlay {
    display: none
}

@media(max-width:1050px) {
    body.menu-open {
        overflow: hidden
    }
    body.menu-open .site-header {
        z-index: 120
    }
    .site-header .nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 104;
        width: min(88vw, 390px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 20px 22px 26px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        overflow-y: auto;
        background: radial-gradient(circle at 100% 0, rgba(211, 155, 35, .18), transparent 230px), #fff;
        border-left: 1px solid rgba(211, 155, 35, .2);
        border-radius: 24px 0 0 24px;
        box-shadow: -24px 0 60px rgba(15, 23, 42, .2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(105%);
        transition: transform .46s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, visibility 0s linear .46s
    }
    .site-header .nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 42px;
        right: 42px;
        height: 3px;
        border-radius: 0 0 8px 8px;
        background: linear-gradient(90deg, var(--primary), #8d6df3, var(--primary2))
    }
    .site-header .nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition-delay: 0s
    }
    .nav-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 60px;
        margin-bottom: 14px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity .3s ease .18s, transform .36s ease .18s
    }
    .nav.open .nav-mobile-head {
        opacity: 1;
        transform: translateY(0)
    }
    .nav-mobile-brand {
        width: 158px;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important
    }
    .nav-mobile-brand img {
        display: block;
        width: 100%
    }
    .site-header .nav>a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 47px;
        padding: 0 14px;
        border: 1px solid transparent;
        border-radius: 12px;
        font-size: 14px;
        opacity: 0;
        transform: translateX(26px);
        transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
    }
    .site-header .nav>a::after {
        content: "\ea61";
        margin-left: auto;
        font-family: "tabler-icons";
        font-size: 17px;
        opacity: .35;
        transition: transform .2s ease, opacity .2s ease
    }
    .site-header .nav>a:hover,
    .site-header .nav>a.active {
        background: linear-gradient(90deg, rgba(211, 155, 35, .12), rgba(141, 109, 243, .08));
        border-color: rgba(211, 155, 35, .18)
    }
    .site-header .nav>a:hover::after {
        opacity: 1;
        transform: translateX(3px)
    }
    .site-header .nav.open>a {
        opacity: 1;
        transform: translateX(0)
    }
    .site-header .nav.open>a:nth-of-type(1) {
        transition-delay: .12s
    }
    .site-header .nav.open>a:nth-of-type(2) {
        transition-delay: .16s
    }
    .site-header .nav.open>a:nth-of-type(3) {
        transition-delay: .20s
    }
    .site-header .nav.open>a:nth-of-type(4) {
        transition-delay: .24s
    }
    .site-header .nav.open>a:nth-of-type(5) {
        transition-delay: .28s
    }
    .site-header .nav.open>a:nth-of-type(6) {
        transition-delay: .32s
    }
    .site-header .nav.open>a:nth-of-type(7) {
        transition-delay: .36s
    }
    .site-header .nav.open>a:nth-of-type(8) {
        transition-delay: .40s
    }
    .nav-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 9px;
        margin-top: auto;
        padding-top: 20px;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity .3s ease .4s, transform .38s ease .4s
    }
    .nav.open .nav-mobile-actions {
        opacity: 1;
        transform: translateY(0)
    }
    .nav-mobile-actions .btn {
        min-height: 44px;
        padding: 0 10px;
        font-size: 12px
    }
    .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 103;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(7, 13, 28, .58);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .32s ease, visibility 0s linear .32s
    }
    body.menu-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s
    }
    .mobile-toggle {
        position: relative;
        z-index: 105;
        overflow: hidden
    }
    .mobile-toggle i {
        transition: transform .35s cubic-bezier(.22, 1, .36, 1)
    }
    body.menu-open .mobile-toggle {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        box-shadow: 0 9px 24px rgba(83, 45, 190, .3)
    }
    body.menu-open .mobile-toggle i {
        transform: rotate(180deg)
    }
    .mobile-bottom {
        transition: transform .3s ease, opacity .25s ease
    }
    body.menu-open .mobile-bottom {
        opacity: 0;
        transform: translateY(100%);
        pointer-events: none
    }
    body.dark .site-header .nav {
        background: radial-gradient(circle at 100% 0, rgba(211, 155, 35, .16), transparent 230px), #101b31;
        border-left-color: #26334d;
        box-shadow: -24px 0 60px rgba(0, 0, 0, .48)
    }
    body.dark .nav-mobile-actions .btn:not(.btn-primary) {
        color: var(--ink);
        background: #17243d
    }
}

@media(prefers-reduced-motion:reduce) {
    .site-header .nav,
    .site-header .nav *,
    .nav-overlay,
    .mobile-toggle i {
        transition-duration: .01ms !important;
        transition-delay: 0s !important
    }
}

.page-hero {
    background: linear-gradient(120deg, #fbfbff, #f2f3ff);
    padding: 45px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px
}

.eyebrow {
    font-size: 12px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero h1,
.page-title {
    font-size: 46px;
    line-height: 1.08;
    margin: 10px 0 16px;
    letter-spacing: -.03em
}

.hero p,
.lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 650px
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 25px 0
}

.trust-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: #344054;
    font-size: 12px
}

.stats {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -24px;
    position: relative;
    z-index: 3
}

.stat {
    padding: 24px;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat strong {
    font-size: 22px;
    display: block
}

.stat span {
    color: var(--muted);
    font-size: 12px
}

.section {
    padding: 42px 0
}

.section.soft {
    background: var(--soft)
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 18px
}

.section-head h2 {
    font-size: 23px;
    margin: 0
}

.section-head p {
    margin: 5px 0 0;
    color: var(--muted)
}

.link {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px
}

.quick-card,
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 5px 18px rgba(20, 30, 65, .035)
}

article.card {
    transition: background-color .35s ease
}

article.card:hover {
    background-color: #0083ff0f
}

.quick-card {
    text-align: center;
    padding: 17px 8px
}

.quick-card .ico {
    font-size: 25px;
    margin-bottom: 8px
}

.quick-card .ico i {
    display: inline-block;
    line-height: 1
}

.quick-card strong {
    font-size: 12px
}

.tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px
}

.tab {
    padding: 11px 18px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary)
}

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

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

.exam-card,
.job-card,
.test-card,
.material-card,
.article-card {
    padding: 18px
}

.current-affairs-feature,
.related-affair-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--soft)
}

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px
}

.article-detail-meta i {
    margin-right: 4px
}

.article-detail-title {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18
}

.article-lead {
    margin: 0 0 26px;
    font-size: 16px !important;
    line-height: 1.75;
    color: var(--ink) !important
}

.article-body {
    font-size: 15px;
    line-height: 1.8
}

.article-body p,
.article-body li {
    color: var(--muted);
    line-height: 1.8
}

.article-body h2 {
    margin: 30px 0 9px;
    font-size: 23px
}

.article-highlights,
.exam-takeaway {
    margin: 26px 0;
    padding: 22px
}

.article-highlights h3,
.exam-takeaway h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px
}

.article-tags {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line)
}

.article-tags > strong {
    display: block;
    margin-bottom: 12px
}

.related-affair-image {
    border-radius: 10px
}

.brand-row {
    display: flex;
    gap: 13px;
    align-items: center
}

.brand-row img {
    width: 58px;
    height: 58px
}

.badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 800;
    background: #eef1ff;
    color: var(--primary)
}

.badge.green {
    background: #f4ffff;
    color: #00381e
}

.badge.orange {
    background: #fff0e4;
    color: #d65d00
}

.meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 11px;
    margin: 13px 0
}

.card h3 {
    margin: 5px 0;
    font-size: 16px
}

.card p {
    color: var(--muted);
    font-size: 12px
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.card-actions .btn {
    flex: 1;
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.job-card.horizontal {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px
}

.job-card.horizontal>* {
    min-width: 0
}

.job-card.horizontal img {
    width: 70px
}

.job-card.horizontal .job-feature-image {
    width: 190px;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--soft)
}

.job-card .job-organization {
    margin: 4px 0 6px;
    font-weight: 700;
    color: var(--ink)
}

.job-card .job-short-description {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.job-detail-feature {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 22px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--soft)
}

.exam-detail-hero {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) 1.1fr;
    align-items: center;
    gap: 28px
}

.exam-detail-feature {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line)
}

@media(max-width:780px) {
    .exam-detail-hero {
        grid-template-columns: 1fr
    }
}

.job-card.horizontal .card-actions {
    width: 240px
}

.paper-card.horizontal {
    grid-template-columns: auto minmax(0, 1fr) minmax(180px, 340px)
}

.paper-card.horizontal .card-actions {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: flex-end
}

.paper-card.horizontal .card-actions .btn {
    flex: 1 1 105px;
    white-space: nowrap
}

.layout-sidebar {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px
}

.filter {
    padding: 20px;
    position: sticky;
    top: 95px;
    height: max-content
}

.filter h3 {
    margin: 0 0 18px
}

.job-filter-panel {
    max-height: calc(100vh - 115px);
    padding: 18px;
    overflow-y: auto
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

.filter-title h3 {
    margin: 0
}

.filter-title > i {
    color: var(--primary);
    font-size: 24px
}

.filter-title small,
.field-hint {
    color: var(--muted);
    font-size: 10px
}

.filter-group-title {
    margin: 19px 0 11px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.filter-actions {
    display: grid;
    gap: 8px;
    margin-top: 20px
}

.filter-actions .btn {
    width: 100%
}

@media(max-width:780px) {
    .job-filter-panel {
        max-height: none;
        overflow: visible
    }
}

.field {
    margin-bottom: 15px
}

.field label {
    display: block;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 7px
}

.input,
.select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 9px;
    min-height: 42px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    outline: none
}

.input:focus,
.select:focus,
textarea:focus {
    border-color: #886df0;
    box-shadow: 0 0 0 3px #ede9ff
}

.check-list {
    display: grid;
    gap: 8px;
    color: #526078;
    font-size: 12px
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.chip-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.chip {
    padding: 7px 10px;
    border-radius: 8px;
    background: #f0edff;
    color: #4c2ccc;
    font-size: 11px
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 25px
}

.pagination a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    place-items: center
}

.pagination a.active {
    background: var(--primary);
    color: #fff
}

.app-banner {
    background: linear-gradient(90deg, #5527df, #241090);
    border-radius: 16px;
    color: #fff;
    padding: 24px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.footer {
    background: linear-gradient(120deg, #071d43, #04132f);
    color: #fff;
    padding: 45px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 35px
}

.footer h4 {
    font-size: 13px;
    margin: 0 0 12px
}

.footer a,
.footer p {
    display: block;
    color: #c8d3ea;
    font-size: 11px;
    margin: 7px 0
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 28px;
    padding-top: 18px;
    color: #aab7d0;
    font-size: 11px
}

.breadcrumb {
    color: var(--muted);
    font-size: 12px;
    padding: 22px 0
}

.detail-hero {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 22px
}

.detail-main,
.side-card {
    padding: 24px
}

.side-card {
    position: sticky;
    top: 95px;
    height: max-content
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.info-box {
    padding: 16px;
    text-align: center
}

.info-box strong {
    display: block;
    font-size: 15px
}

.info-box span {
    font-size: 11px;
    color: var(--muted)
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px
}

.content-card {
    padding: 22px;
    margin-bottom: 16px
}

.content-card h3 {
    margin-top: 0
}

.table-wrap {
    overflow: auto
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table th,
.table td {
    padding: 11px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 12px
}

.table th {
    background: #fafbfe
}

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

.material-card img {
    aspect-ratio: 3/3.9;
    object-fit: cover;
    border-radius: 11px
}

.price {
    font-size: 18px;
    font-weight: 800
}

.old {
    color: #98a2b3;
    text-decoration: line-through;
    font-size: 11px;
    margin-left: 7px
}

.article-card img {
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    background: #e8ecf7
}

.auth-page {
    min-height: 100vh;
    background: #f5f7fb;
    display: grid;
    place-items: center;
    padding: 35px
}

.auth-shell {
    width: min(960px, 100%);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.auth-side {
    background: linear-gradient(145deg, #183fb4, #532ce6);
    color: #fff;
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.auth-main {
    padding: 58px 70px
}

.auth-main h1 {
    font-size: 28px
}

.otp-row {
    display: flex;
    gap: 10px
}

.otp-row input {
    width: 48px;
    height: 54px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--line);
    border-radius: 8px
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 25px 0
}

.step {
    display: flex;
    align-items: center;
    color: #98a2b3
}

.step i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e6e8ef;
    font-style: normal;
    margin: 0 8px
}

.step.active {
    color: var(--primary);
    font-weight: 700
}

.step.active i {
    background: var(--primary);
    color: #fff
}

.step:after {
    content: "";
    width: 90px;
    height: 1px;
    background: #d8dce6
}

.step:last-child:after {
    display: none
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 25px
}

.cart-menu-button {
    position: relative
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border: 2px solid var(--card);
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 15px;
    text-align: center
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--line)
}

.cart-item img {
    width: 72px;
    height: 92px;
    object-fit: cover;
    border-radius: 8px
}

.summary {
    padding: 22px;
    height: max-content;
    position: sticky;
    top: 95px
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0
}

.summary-row.total {
    font-size: 18px;
    font-weight: 800;
    border-top: 1px solid var(--line);
    padding-top: 15px
}

.payment-options {
    display: grid;
    gap: 10px
}

.payment-option {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.empty-state {
    text-align: center;
    padding: 55px
}

.mobile-bottom {
    display: none
}


/* Informational and support pages */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.info-hero {
    padding: 32px;
    background: linear-gradient(110deg, #f1efff, #eaf0ff)
}

.info-hero .hero-grid {
    align-items: center
}

.info-hero-icon {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(255, 255, 255, .72);
    font-size: 70px
}

.policy-content {
    /* max-width: 900px; */
    margin: auto;
    padding: 30px
}

.policy-content h2 {
    margin: 28px 0 9px;
    font-size: 21px;
    padding-left: 6px;
    padding-right: 8px;
}

.policy-content h2:first-child {
    margin-top: 0
}

.policy-content p,
.policy-content li {
    color: var(--muted);
    line-height: 1.75;
    padding-left: 8px;
    padding-right: 10px;
    text-align: justify;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px
}

.form-grid .field-full {
    grid-column: 1 / -1
}

.faq-list {
    display: grid;
    gap: 12px
}

.faq-list details {
    padding: 17px 19px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700
}

.faq-list details p {
    margin: 12px 0 0
}

@media(max-width:780px) {
    .form-grid {
        grid-template-columns: 1fr
    }
    .form-grid .field-full {
        grid-column: auto
    }
    .info-hero-icon {
        width: 110px;
        height: 110px;
        font-size: 52px
    }
}
