:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --amber: #f59e0b;
    --amber-soft: #fbbf24;
    --orange: #f97316;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius-xl: 1.5rem;
    --radius-lg: 1rem;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 34rem),
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.18), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 72%);
    z-index: -1;
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(30, 58, 138, 0.88), rgba(15, 23, 42, 0.94));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.site-header-inner {
    width: min(calc(100% - 2rem), var(--container));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.36);
}

.brand-text {
    font-size: 1.12rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link,
.mobile-link {
    color: #e2e8f0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 0.72rem 1rem;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #fde68a;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.58rem;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 0.34rem 0;
    background: white;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto 0.85rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(2, 6, 23, 0.82);
}

.mobile-nav.is-open {
    display: grid;
    gap: 0.35rem;
}

.mobile-link {
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
}

.hero {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 0.8s ease, transform 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-image,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay,
.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.65) 44%, rgba(2, 6, 23, 0.35) 100%),
        linear-gradient(0deg, #020617 0%, transparent 44%);
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 76vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 3rem;
    padding: 6rem 0 5rem;
}

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.4rem 0.78rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.1);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero h1,
.hero-slide-title,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero h1,
.hero-slide-title {
    max-width: 820px;
    font-size: clamp(2.8rem, 7vw, 6.8rem);
    background: linear-gradient(90deg, #fff, #fde68a, #f97316);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-feature-title {
    margin: 1rem 0 0;
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    color: white;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    max-width: 720px;
    margin: 1.2rem 0 0;
    color: #cbd5e1;
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.85;
}

.hero-tags,
.tag-row,
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-tags {
    margin-top: 1.3rem;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 1.7rem;
    padding: 0.22rem 0.62rem;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.22);
    font-size: 0.78rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: white;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 24px 60px rgba(249, 115, 22, 0.38);
}

.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.hero-poster {
    display: block;
    align-self: center;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.75rem;
    background: rgba(15, 23, 42, 0.58);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.9);
}

.hero-poster span {
    display: block;
    padding: 0.85rem 0.3rem 0.2rem;
    color: #fde68a;
    font-weight: 800;
    text-align: center;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 5;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
}

.hero-controls button {
    width: 2rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
}

.hero-controls button.is-active {
    width: 3.2rem;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.quick-search {
    position: relative;
    z-index: 6;
    margin-top: -2.5rem;
}

.quick-search-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.25rem;
}

.quick-search span {
    color: var(--muted);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.15rem;
    padding: 0.35rem 0.45rem 0.35rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.75);
}

.search-box span {
    color: #fde68a;
    font-weight: 900;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
}

.search-box input::placeholder {
    color: #64748b;
}

.wide-search {
    max-width: 680px;
    margin-top: 1.8rem;
}

.section-block {
    padding: 5rem 0;
}

.section-dark {
    background: rgba(2, 6, 23, 0.42);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.section-heading p {
    max-width: 720px;
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-action,
.text-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #fde68a;
    font-weight: 900;
}

.section-action:hover,
.text-link:hover {
    color: white;
}

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

.ranking-grid {
    counter-reset: rank;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.85), transparent);
}

.card-rank {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    height: 2rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.28);
}

.movie-card-body {
    padding: 1rem;
}

.movie-title {
    display: -webkit-box;
    min-height: 3rem;
    overflow: hidden;
    color: white;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: #fde68a;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
    color: #93c5fd;
    font-size: 0.82rem;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 0.5rem;
    color: #475569;
}

.movie-card p {
    display: -webkit-box;
    min-height: 3.2rem;
    margin: 0.75rem 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 0.9rem;
}

.movie-card-compact .movie-card-body {
    padding: 0.9rem;
}

.movie-card-compact .movie-title {
    font-size: 1rem;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.72);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.42);
}

.category-card img,
.category-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-card img {
    object-fit: cover;
    opacity: 0.44;
    transition: transform 0.35s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-shade {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.22));
}

.category-card strong,
.category-card small {
    position: relative;
    z-index: 2;
}

.category-card strong {
    font-size: 1.35rem;
}

.category-card small {
    display: -webkit-box;
    margin-top: 0.55rem;
    overflow: hidden;
    color: #cbd5e1;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background:
        linear-gradient(135deg, rgba(30, 58, 138, 0.42), rgba(120, 53, 15, 0.28)),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2), transparent 28rem);
    border-bottom: 1px solid var(--line);
}

.compact-hero h1 {
    max-width: 860px;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.filter-row {
    margin-top: 1.4rem;
}

.filter-row button {
    min-height: 2.4rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    cursor: pointer;
}

.filter-row button:hover,
.filter-row button.is-active {
    color: white;
    border-color: rgba(245, 158, 11, 0.48);
    background: rgba(245, 158, 11, 0.18);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
}

.category-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0.8rem;
    background: #0f172a;
}

.category-title {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: white;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-title:hover {
    color: #fde68a;
}

.category-overview-card p {
    margin: 0 0 0.9rem;
    color: var(--muted);
    line-height: 1.75;
}

.category-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.category-mini-list span {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.1);
    font-size: 0.82rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    color: #cbd5e1;
    font-size: 0.92rem;
}

.breadcrumb a {
    color: #fde68a;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #020617;
}

.detail-hero-inner {
    position: relative;
    z-index: 3;
    padding: 5rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.detail-poster {
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 1rem;
    background: #0f172a;
}

.detail-copy h1 {
    max-width: 900px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    color: white;
}

.player-section {
    padding: 3.5rem 0 0;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 1.5rem;
    background: #000;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 0.6rem;
    border: 0;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.28), rgba(2, 6, 23, 0.78));
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 20px 55px rgba(249, 115, 22, 0.32);
    font-size: 2rem;
}

.play-overlay strong {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.62);
    font-size: 1.08rem;
}

.video-frame.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-content-section {
    padding-top: 3.5rem;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.25rem;
    align-items: start;
}

.content-card {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.content-card h2 {
    margin: 0 0 1rem;
    color: white;
    font-size: 1.55rem;
}

.content-card h2:not(:first-child) {
    margin-top: 2rem;
}

.content-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.95;
}

.info-card {
    position: sticky;
    top: 96px;
}

.info-row {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
}

.info-row span {
    color: var(--muted);
}

.info-row strong {
    color: #e2e8f0;
    font-weight: 700;
}

.empty-state {
    margin: 2rem 0 0;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.08);
    text-align: center;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    padding: 2.5rem 0;
}

.footer-brand {
    color: #fde68a;
    font-size: 1.2rem;
}

.site-footer p {
    max-width: 640px;
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.footer-links a {
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #dbeafe;
}

.footer-links a:hover {
    color: #fde68a;
    border-color: rgba(245, 158, 11, 0.38);
}

.footer-bottom {
    padding: 1rem;
    border-top: 1px solid var(--line);
    color: #64748b;
    text-align: center;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1100px) {
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 260px;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero,
    .hero-content {
        min-height: 720px;
    }

    .hero-content,
    .quick-search-inner,
    .detail-grid,
    .detail-content-grid,
    .footer-grid,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-poster {
        max-width: 260px;
    }

    .info-card {
        position: static;
    }
}

@media (max-width: 560px) {
    .container,
    .site-header-inner,
    .mobile-nav {
        width: min(calc(100% - 1rem), var(--container));
    }

    .brand-text {
        font-size: 1rem;
    }

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

    .hero-content,
    .page-hero,
    .detail-hero-inner {
        padding-block: 4rem;
    }

    .hero-actions,
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .filter-row button {
        width: 100%;
    }

    .movie-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 3.5rem 0;
    }

    .quick-search {
        margin-top: -1.3rem;
    }
}
