:root {
    --bg: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --amber: #f59e0b;
    --amber-soft: #fbbf24;
    --red: #ef4444;
    --card: #ffffff;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: linear-gradient(90deg, #0f172a, #1e293b 55%, #0f172a);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.24);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-soft), var(--amber));
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.28);
}

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-text small {
    display: block;
    margin-top: 6px;
    color: #cbd5e1;
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.nav-link {
    position: relative;
    color: #f8fafc;
    transition: color 0.22s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--amber);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: all 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--amber-soft);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #fff;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-links {
    display: grid;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 22px;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

.hero-track,
.hero-slide {
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 56px;
    align-items: center;
    padding: 90px max(32px, calc((100vw - 1180px) / 2)) 132px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.85s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: var(--amber-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 6.3vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 28px;
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.28);
    font-size: 12px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #111827;
    background: linear-gradient(135deg, var(--amber-soft), var(--amber));
    box-shadow: 0 16px 35px rgba(245, 158, 11, 0.28);
}

.btn.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn.subtle {
    color: #fde68a;
    background: rgba(251, 191, 36, 0.08);
}

.btn.small {
    min-height: 36px;
    padding: 0 15px;
    font-size: 13px;
    color: #111827;
    background: #fbbf24;
}

.btn.wide {
    width: 100%;
    margin-top: 18px;
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
    aspect-ratio: 2 / 3;
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: #fbbf24;
    box-shadow: 0 18px 38px rgba(251, 191, 36, 0.32);
}

.hero-controls {
    position: absolute;
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 72px;
    left: max(32px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 16px;
    color: #fff;
    background: rgba(15, 23, 42, 0.38);
    cursor: pointer;
    pointer-events: auto;
}

.hero-dots {
    display: flex;
    gap: 9px;
    pointer-events: auto;
}

.hero-dot {
    width: 36px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #fbbf24;
}

.hero-search {
    position: absolute;
    bottom: 16px;
    left: 50%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(660px, calc(100% - 32px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
}

.hero-search input,
.search-panel input {
    min-height: 56px;
    padding: 0 22px;
    border: 0;
    color: #fff;
    background: transparent;
    outline: none;
}

.hero-search input::placeholder,
.search-panel input::placeholder {
    color: #cbd5e1;
}

.hero-search button,
.search-panel button {
    padding: 0 28px;
    border: 0;
    color: #111827;
    background: #fbbf24;
    font-weight: 900;
    cursor: pointer;
}

.hero-category-links {
    position: absolute;
    bottom: 92px;
    left: max(32px, calc((100vw - 1180px) / 2));
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-category-links a {
    padding: 8px 14px;
    border-radius: 999px;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.section {
    padding: 70px 0 0;
}

.section-head,
.strip-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2,
.strip-title h2,
.rank-panel-head h2,
.article-block h2,
.side-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-more {
    color: #b45309;
    font-weight: 900;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.slim-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111827;
    aspect-ratio: 3 / 4;
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.76));
}

.year-pill,
.rank-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    color: #111827;
    background: #fbbf24;
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    right: auto;
    left: 13px;
    color: #fff;
    background: #ef4444;
}

.play-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: #fbbf24;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition: all 0.24s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body p {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta {
    margin-top: 13px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.compact-card .card-body h3 {
    font-size: 16px;
}

.compact-card .card-body p {
    min-height: 44px;
    font-size: 13px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
}

.rank-panel,
.side-card {
    align-self: start;
    border-radius: 26px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(180deg, #111827, #020617);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.rank-item span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #111827;
    background: #fbbf24;
    font-weight: 900;
}

.rank-item strong,
.rank-item em {
    display: block;
}

.rank-item em {
    color: #cbd5e1;
    font-size: 12px;
    font-style: normal;
}

.category-sections {
    display: grid;
    gap: 28px;
    padding-top: 62px;
}

.category-strip {
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.page-hero {
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.34), transparent 30%), linear-gradient(90deg, #0f172a, #1e293b 58%, #78350f);
}

.page-hero .container {
    padding: 92px 0 86px;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #e2e8f0;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 22px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a {
    color: #fde68a;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 32px;
    color: #fff;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.category-card > a {
    display: block;
    padding: 32px;
}

.category-card h2 {
    margin: 12px 0 12px;
    font-size: 36px;
    letter-spacing: -0.04em;
}

.category-card p {
    max-width: 520px;
    margin: 0;
    color: #e2e8f0;
}

.category-count {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #111827;
    background: #fbbf24;
    font-size: 12px;
    font-weight: 900;
}

.category-card ul {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-card li a {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.filter-bar {
    position: sticky;
    top: 88px;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px 150px 145px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(14px);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 15px;
    padding: 0 14px;
    background: #fff;
    outline: none;
}

.rank-page-list {
    display: grid;
    gap: 18px;
}

.rank-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
}

.rank-poster {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #111827;
    aspect-ratio: 3 / 4;
}

.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-poster span {
    position: absolute;
    top: 10px;
    left: 10px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #111827;
    background: #fbbf24;
    font-weight: 900;
}

.rank-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.rank-card p:not(.eyebrow) {
    margin: 0 0 12px;
    color: #475569;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(700px, 100%);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.56);
}

.search-results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    min-height: 80px;
}

.search-empty {
    grid-column: 1 / -1;
    padding: 26px;
    border-radius: 22px;
    color: #475569;
    background: #fff;
}

.detail-hero {
    color: #fff;
    background-position: center;
    background-size: cover;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    padding-top: 78px;
    padding-bottom: 78px;
}

.detail-cover {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    aspect-ratio: 3 / 4;
}

.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-cover span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: #fbbf24;
}

.detail-intro h1 {
    max-width: 800px;
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.detail-intro p:not(.eyebrow) {
    max-width: 780px;
    color: #e2e8f0;
    font-size: 18px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 30px;
}

.player-card,
.article-block,
.side-card {
    border-radius: 28px;
}

.player-card {
    overflow: hidden;
    background: #020617;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.24);
}

.player-shell {
    position: relative;
    background: #020617;
    aspect-ratio: 16 / 9;
}

.movie-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #020617;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.38), rgba(2, 6, 23, 0.78));
    cursor: pointer;
}

.player-start span {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: #fbbf24;
    box-shadow: 0 18px 38px rgba(251, 191, 36, 0.3);
}

.player-start strong {
    font-size: 20px;
}

.player-start.is-hidden {
    display: none;
}

.article-block {
    margin-top: 24px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.article-block p {
    margin: 16px 0 0;
    color: #334155;
    font-size: 17px;
}

.side-card {
    position: sticky;
    top: 104px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px 14px;
    margin: 22px 0 0;
}

.side-card dt {
    color: #94a3b8;
}

.side-card dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
}

.side-card a {
    color: #fde68a;
}

.site-footer {
    margin-top: 82px;
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 44px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    body.menu-open .mobile-panel {
        display: block;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 70px;
    }

    .hero-poster {
        display: none;
    }

    .movie-grid,
    .slim-grid,
    .search-results {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .detail-content,
    .detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .side-card {
        position: static;
    }

    .detail-cover {
        width: min(310px, 100%);
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .hero,
    .hero-track,
    .hero-slide {
        min-height: 640px;
    }

    .hero-slide {
        padding: 58px 18px 170px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-controls {
        right: 16px;
        bottom: 120px;
        left: 16px;
    }

    .hero-category-links {
        right: 16px;
        bottom: 72px;
        left: 16px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }

    .hero-category-links a {
        white-space: nowrap;
    }

    .section-head,
    .strip-title {
        align-items: start;
        flex-direction: column;
    }

    .movie-grid,
    .slim-grid,
    .search-results,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .card-body {
        padding: 14px;
    }

    .card-body p,
    .tag-row {
        display: none;
    }

    .category-strip {
        padding: 18px;
        border-radius: 24px;
    }

    .page-hero .container {
        padding-top: 62px;
        padding-bottom: 58px;
    }

    .filter-bar {
        position: static;
        grid-template-columns: 1fr;
    }

    .rank-card {
        grid-template-columns: 90px 1fr;
        gap: 14px;
    }

    .rank-card h2 {
        font-size: 20px;
    }

    .detail-hero-grid {
        padding-top: 46px;
        padding-bottom: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 470px) {
    .movie-grid,
    .slim-grid,
    .search-results,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-search,
    .search-panel {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .hero-search button,
    .search-panel button {
        min-height: 48px;
    }
}
