:root {
    --purple-950: #2e1065;
    --purple-900: #4c1d95;
    --purple-700: #7e22ce;
    --purple-600: #9333ea;
    --pink-600: #db2777;
    --pink-500: #ec4899;
    --pink-100: #fce7f3;
    --lavender: #faf5ff;
    --paper: #ffffff;
    --ink: #211529;
    --muted: #6b5d73;
    --line: rgba(126, 34, 206, 0.14);
    --shadow: 0 24px 60px rgba(76, 29, 149, 0.18);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #faf5ff 0%, #fdf2f8 38%, #ffffff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}

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: 100;
    color: #fff;
    background: linear-gradient(90deg, var(--purple-700), var(--pink-500), #a855f7);
    box-shadow: 0 14px 30px rgba(126, 34, 206, 0.28);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.logo {
    font-size: 21px;
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--pink-500);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-form input,
.filter-toolbar input,
.filter-toolbar select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    outline: none;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 16px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-search input {
    width: 220px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.top-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.search-form input:focus,
.filter-toolbar input:focus,
.filter-toolbar select:focus {
    border-color: rgba(236, 72, 153, 0.55);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.14);
}

.search-form button,
.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-form button,
.primary-btn {
    color: #fff;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
    padding: 12px 20px;
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.28);
}

.top-search button {
    color: var(--purple-700);
    background: #fff;
    padding: 10px 16px;
    box-shadow: none;
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 20px;
    backdrop-filter: blur(8px);
}

.search-form button:hover,
.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: #fff;
}

.mobile-panel {
    padding: 0 16px 20px;
    background: linear-gradient(180deg, rgba(76, 29, 149, 0.98), rgba(219, 39, 119, 0.96));
}

.mobile-panel nav,
.mobile-category-row {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.mobile-category-row {
    grid-template-columns: repeat(5, 1fr);
}

.mobile-category-row a {
    text-align: center;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background: var(--purple-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg,
.detail-bg,
.category-page-hero > img,
.ranking-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade,
.detail-bg-layer,
.category-hero-shade,
.ranking-hero-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(236, 72, 153, 0.35), transparent 34%),
        linear-gradient(90deg, rgba(46, 16, 101, 0.92), rgba(76, 29, 149, 0.68) 48%, rgba(0, 0, 0, 0.42)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 54px;
    min-height: 620px;
    padding: 72px 0;
}

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

.eyebrow,
.page-hero > span,
.section-heading span,
.ranking-copy span,
.category-hero-content span,
.ranking-hero-content span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.detail-copy h1,
.page-hero h1,
.category-hero-content h1,
.ranking-hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
}

.hero p,
.detail-one-line,
.page-hero p,
.category-hero-content p,
.ranking-hero-content p,
.ranking-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.9;
}

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

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    filter: blur(24px);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.42) !important;
}

.hero-dot.is-active {
    width: 34px !important;
    border-radius: 999px !important;
    background: #fff !important;
}

.home-search-band {
    padding: 34px 0;
    color: #fff;
    background: linear-gradient(90deg, var(--purple-900), var(--pink-600));
}

.search-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 30px;
    align-items: center;
}

.search-band-inner h2,
.section-heading h2,
.ranking-copy h2,
.player-section h2,
.detail-content h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.search-band-inner p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.large-search input,
.page-search-form input {
    min-height: 54px;
}

.section-block {
    padding: 70px 0 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-heading span {
    color: var(--pink-600);
    background: var(--pink-100);
}

.section-heading a,
.text-link {
    color: var(--purple-700);
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 38px rgba(126, 34, 206, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

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

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

.cover-type,
.rank-badge {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(46, 16, 101, 0.76);
    backdrop-filter: blur(8px);
}

.cover-type {
    right: 12px;
}

.rank-badge {
    left: 12px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
}

.movie-info {
    padding: 18px;
}

.movie-title {
    display: block;
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.movie-title:hover,
.ranking-title:hover {
    color: var(--purple-700);
}

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

.movie-meta span {
    border-radius: 999px;
    background: #faf5ff;
    padding: 4px 9px;
}

.movie-info p {
    min-height: 56px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    border-radius: 999px;
    color: var(--purple-700);
    background: #f3e8ff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 750;
}

.hero-tags span,
.detail-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

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

.category-tile {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.26), transparent 34%),
        linear-gradient(135deg, var(--purple-700), var(--pink-500));
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.24s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
}

.category-tile span {
    width: max-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

.category-tile strong {
    font-size: 24px;
    font-weight: 900;
}

.category-tile em {
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    line-height: 1.65;
}

.ranking-band {
    margin-top: 72px;
    padding: 72px 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(236, 72, 153, 0.35), transparent 35%),
        linear-gradient(135deg, var(--purple-950), var(--purple-700));
}

.ranking-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.ranking-list {
    display: grid;
    gap: 14px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 54px 82px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    padding: 12px;
    backdrop-filter: blur(10px);
}

.page-ranking-list .ranking-item {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
    box-shadow: 0 12px 30px rgba(126, 34, 206, 0.08);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
}

.ranking-thumb img {
    width: 82px;
    height: 104px;
    border-radius: 16px;
    object-fit: cover;
}

.ranking-title {
    color: inherit;
    font-size: 18px;
    font-weight: 900;
}

.ranking-item p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.page-ranking-list .ranking-item p {
    color: var(--muted);
}

.subpage-main,
.detail-main {
    min-height: 60vh;
}

.page-hero {
    margin-top: 42px;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 0%, rgba(236, 72, 153, 0.38), transparent 30%),
        linear-gradient(135deg, var(--purple-900), var(--purple-700));
    padding: 64px;
    box-shadow: var(--shadow);
}

.compact-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
}

.overview-grid {
    display: grid;
    gap: 28px;
    padding-top: 46px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 22px;
    box-shadow: 0 18px 42px rgba(126, 34, 206, 0.1);
}

.overview-covers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.overview-covers img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
}

.category-overview-card span {
    color: var(--pink-600);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-overview-card h2 {
    margin: 8px 0;
    font-size: 30px;
}

.category-overview-card p {
    color: var(--muted);
    line-height: 1.8;
}

.category-overview-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.category-overview-card li a {
    color: var(--purple-700);
    font-weight: 750;
}

.category-page-hero,
.ranking-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    color: #fff;
    background: var(--purple-950);
}

.category-hero-content,
.ranking-hero-content {
    position: relative;
    z-index: 2;
    padding: 94px 0;
}

.filter-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    margin-bottom: 24px;
}

.filter-toolbar select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--purple-700) 50%), linear-gradient(135deg, var(--purple-700) 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.search-status {
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

.detail-hero {
    min-height: 680px;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 56px 0 80px;
}

.breadcrumb,
.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.detail-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    margin-top: 44px;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.44);
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.detail-meta-grid div {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    padding: 16px;
    backdrop-filter: blur(10px);
}

.detail-meta-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.detail-meta-grid strong {
    display: block;
    margin-top: 6px;
    font-size: 17px;
}

.player-section {
    padding-top: 66px;
}

.player-section h2 {
    margin-bottom: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #05010a;
    box-shadow: 0 24px 70px rgba(46, 16, 101, 0.3);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #05010a;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.18), rgba(46, 16, 101, 0.68));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-symbol {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    color: var(--purple-700);
    background: #fff;
    font-size: 31px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    pointer-events: none;
}

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

.detail-content article,
.detail-content aside {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    box-shadow: 0 16px 40px rgba(126, 34, 206, 0.08);
}

.detail-content p {
    color: var(--muted);
    line-height: 2;
    font-size: 17px;
}

.detail-content h2 + p {
    margin-top: 14px;
}

.detail-content h2:not(:first-child) {
    margin-top: 30px;
}

.detail-content aside {
    align-self: start;
    display: grid;
    gap: 12px;
}

.detail-content aside a {
    border-radius: 16px;
    color: var(--purple-700);
    background: #faf5ff;
    padding: 12px 14px;
    font-weight: 800;
}

.site-footer {
    margin-top: 82px;
    color: #fff;
    background: linear-gradient(180deg, var(--purple-900), var(--purple-950));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.footer-grid ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1060px) {
    .top-search {
        display: none;
    }

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

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

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

    .hero-poster,
    .detail-poster {
        max-width: 360px;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .header-inner {
        min-height: 62px;
    }

    .hero,
    .hero-content,
    .detail-hero {
        min-height: auto;
    }

    .hero-content,
    .detail-hero-inner {
        padding: 52px 0 94px;
    }

    .hero-poster {
        display: none;
    }

    .hero h1,
    .detail-copy h1,
    .page-hero h1,
    .category-hero-content h1,
    .ranking-hero-content h1 {
        font-size: 38px;
    }

    .page-hero {
        padding: 38px 24px;
        border-radius: 24px;
    }

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

    .category-grid,
    .detail-meta-grid,
    .filter-toolbar,
    .category-overview-card ul {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 44px 70px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-thumb img {
        width: 70px;
        height: 92px;
    }

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

    .footer-grid {
        gap: 24px;
    }
}

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

    .logo {
        font-size: 18px;
    }

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

    .mobile-category-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions,
    .search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .search-form button,
    .primary-btn,
    .ghost-btn {
        width: 100%;
    }
}
