:root {
  color-scheme: light;
  --cyan: #0891b2;
  --cyan-dark: #0e7490;
  --blue: #2563eb;
  --teal: #0d9488;
  --slate: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 30px rgba(8, 145, 178, 0.15);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #ecfeff 0%, #eff6ff 38%, #f8fafc 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.98), rgba(37, 99, 235, 0.98), rgba(13, 148, 136, 0.98));
  box-shadow: 0 10px 26px rgba(8, 47, 73, 0.2);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0891b2;
  background: #fff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.28);
}

.brand-text {
  font-size: 22px;
}

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

.nav-link {
  position: relative;
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.top-search {
  display: flex;
  width: 310px;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.top-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 10px 14px;
  background: transparent;
}

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

.top-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  color: var(--cyan-dark);
  background: #fff;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  font-weight: 800;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-panel.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #082f49;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: saturate(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(34, 211, 238, 0.38), transparent 34%),
    linear-gradient(90deg, rgba(8, 47, 73, 0.96) 0%, rgba(15, 23, 42, 0.84) 48%, rgba(15, 23, 42, 0.32) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 56px;
  margin: 0 auto;
  color: #fff;
  padding: 68px 0;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
}

.section-kicker.light,
.inner-hero .section-kicker {
  color: #cffafe;
}

.hero h1 {
  margin: 16px 0 8px;
  font-size: clamp(36px, 5.8vw, 70px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: #a5f3fc;
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.85;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-btn,
.ghost-btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #0e7490;
  background: #fff;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.18);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.text-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.primary-btn:hover,
.ghost-btn:hover,
.text-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.hero-poster {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-dot {
  width: 28px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  width: 52px;
  background: #fff;
}

.section {
  padding: 58px 0;
}

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

.section-head h2,
.inner-hero h1,
.detail-card h1 {
  margin: 6px 0 0;
  color: #0f172a;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-more {
  color: var(--cyan-dark);
  font-weight: 900;
}

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

.category-chip,
.category-tile,
.movie-card,
.rank-panel,
.detail-card,
.side-card,
.ranking-card,
.filter-bar {
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.category-chip {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-chip strong {
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.category-chip span {
  color: var(--muted);
  line-height: 1.7;
}

.category-chip:hover,
.movie-card:hover,
.category-tile:hover,
.ranking-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 145, 178, 0.36);
  box-shadow: var(--shadow);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.poster-link {
  position: relative;
  display: block;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  overflow: hidden;
}

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

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.card-body {
  padding: 16px;
}

.movie-card.compact .card-body {
  padding: 13px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 8px 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

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

.movie-card p {
  min-height: 70px;
  margin: 0 0 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.movie-card.compact p {
  min-height: 58px;
  font-size: 13px;
}

.tag-row span {
  color: #0e7490;
  background: #ecfeff;
}

.rank-panel {
  position: sticky;
  top: 92px;
  border-radius: var(--radius);
  padding: 22px;
}

.compact-head h2 {
  font-size: 28px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 34px 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: #f0fdfa;
  transform: translateX(2px);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.rank-row img {
  width: 56px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
  background: #dbeafe;
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  color: #0f172a;
  font-weight: 950;
}

.rank-info em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  margin-top: 4px;
}

.inner-hero {
  color: #fff;
  padding: 72px 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 211, 238, 0.42), transparent 30%),
    linear-gradient(90deg, #0891b2, #2563eb, #0d9488);
}

.inner-hero h1 {
  color: #fff;
}

.inner-hero p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #e0f2fe;
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
}

.detail-breadcrumb {
  color: #64748b;
  margin: 28px 0 18px;
}

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

.category-tile {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-tile img {
  width: 112px;
  height: 150px;
  border-radius: 18px;
  object-fit: cover;
  background: #dbeafe;
}

.category-tile strong {
  display: block;
  color: #0f172a;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 8px;
}

.category-tile p {
  margin: 0 0 12px;
  color: #64748b;
  line-height: 1.7;
}

.mini-title-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-title-list span {
  max-width: 100%;
  color: #0e7490;
  background: #ecfeff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border-radius: 22px;
  padding: 14px;
  margin-bottom: 24px;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 0 16px;
  color: #0f172a;
  background: #fff;
  outline: none;
}

.filter-bar input {
  flex: 1 1 280px;
}

.filter-bar select {
  flex: 0 1 180px;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.empty-state {
  display: none;
  padding: 34px;
  text-align: center;
  color: #64748b;
  font-weight: 900;
  border: 1px dashed #bfdbfe;
  border-radius: 22px;
  background: #fff;
}

.empty-state.is-visible {
  display: block;
}

.detail-shell {
  padding-bottom: 10px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.watch-column {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.58));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: #fff;
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.play-overlay strong {
  font-size: 18px;
}

.player-shell.is-playing .play-overlay,
.play-overlay[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-card {
  margin-top: 22px;
  border-radius: 28px;
  padding: 28px;
}

.detail-card h1 {
  font-size: clamp(28px, 4vw, 48px);
}

.detail-card h2,
.side-card h2 {
  margin: 28px 0 12px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 950;
}

.detail-card p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.95;
}

.lead-text {
  color: #0f172a !important;
  font-size: 19px !important;
  font-weight: 700;
}

.detail-meta,
.compact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0;
}

.detail-meta span {
  color: #075985;
  background: #e0f2fe;
}

.large-tags {
  margin: 22px 0 2px;
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.detail-poster {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #dbeafe;
  box-shadow: var(--shadow);
}

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

.side-card {
  border-radius: 24px;
  padding: 22px;
}

.side-card h2 {
  margin-top: 0;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: #64748b;
  font-weight: 900;
}

.side-card dd {
  margin: -8px 0 0;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.6;
}

.ranking-shell {
  max-width: 980px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  padding: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ranking-cover {
  position: relative;
  display: block;
}

.ranking-cover img {
  width: 104px;
  height: 138px;
  border-radius: 18px;
  object-fit: cover;
  background: #dbeafe;
}

.ranking-cover span {
  position: absolute;
  left: -8px;
  top: -8px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.ranking-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #0f172a;
}

.ranking-body p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.site-footer {
  margin-top: 34px;
  color: #dbeafe;
  background: linear-gradient(180deg, #1e293b, #0f172a);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  margin: 0 auto;
  padding: 46px 0;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 12px;
}

.footer-inner p {
  margin: 0;
  line-height: 1.8;
  color: #cbd5e1;
}

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

.footer-links a {
  color: #e0f2fe;
  font-weight: 800;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  text-align: center;
}

@media (max-width: 1100px) {
  .top-search {
    width: 240px;
  }

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

  .split-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .detail-side {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .main-nav,
  .top-search {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 88px;
  }

  .hero-poster {
    width: min(260px, 72vw);
    transform: rotate(0deg);
  }

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

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

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

  .ranking-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .ranking-card .text-btn {
    grid-column: 1 / -1;
  }

  .ranking-cover img {
    width: 86px;
    height: 116px;
  }
}

@media (max-width: 560px) {
  .shell,
  .nav-wrap,
  .mobile-panel,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

  .section {
    padding: 38px 0;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .category-tile {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .category-tile img {
    width: 92px;
    height: 124px;
  }

  .detail-side {
    grid-template-columns: 1fr;
  }

  .filter-bar select {
    flex: 1 1 100%;
  }

  .detail-card,
  .side-card {
    padding: 20px;
  }
}
