:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #111827;
  --panel-2: #1e293b;
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --red: #ef4444;
  --green: #10b981;
  --purple: #a855f7;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.52);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 32rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 36rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
}

body.is-locked {
  overflow: hidden;
}

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

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

img.is-missing {
  opacity: 0;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.32);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111f;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
}

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

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

.nav-link,
.nav-button {
  color: #cbd5e1;
  border: 0;
  background: transparent;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 180px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: all 0.2s ease;
}

.dropdown-panel a {
  padding: 9px 11px;
  border-radius: 10px;
  color: #cbd5e1;
}

.dropdown-panel a:hover {
  background: rgba(148, 163, 184, 0.12);
  color: #ffffff;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.header-search input,
.mobile-search input,
.filter-toolbar input,
.filter-toolbar select {
  color: #ffffff;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.26);
  outline: none;
}

.header-search input {
  width: 190px;
  height: 42px;
  padding: 0 46px 0 18px;
  border-radius: 999px;
  transition: width 0.25s ease, border-color 0.25s ease;
}

.header-search input:focus {
  width: 260px;
  border-color: rgba(34, 211, 238, 0.7);
}

.header-search button {
  position: absolute;
  right: 6px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111f;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.9);
  color: #ffffff;
  cursor: pointer;
}

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

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.mobile-link,
.mobile-categories a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.78);
  color: #cbd5e1;
}

.mobile-link.is-active,
.mobile-link:hover,
.mobile-categories a:hover {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.16);
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mobile-search input,
.mobile-search button {
  min-height: 44px;
  border-radius: 12px;
  padding: 0 14px;
}

.mobile-search button {
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111f;
  font-weight: 800;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.76) 44%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
  padding-top: 42px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fde68a;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 16px 0 18px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.8;
}

.hero-meta,
.detail-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span,
.detail-metas span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.24);
  backdrop-filter: blur(12px);
}

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111f;
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.24);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.46);
  border: 1px solid rgba(148, 163, 184, 0.32);
}

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

.hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.34);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--cyan);
}

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

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

.section-head h2,
.page-hero h1,
.category-hero h1,
.detail-card h1 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-link {
  color: var(--cyan);
  font-weight: 800;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 52px rgba(2, 6, 23, 0.3);
}

.category-card::before,
.category-overview-card::before,
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 48%);
  pointer-events: none;
}

.category-card span,
.category-topline span,
.category-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 22px;
}

.category-card h2,
.category-overview-card strong {
  position: relative;
  display: block;
  margin: 18px 0 10px;
  font-size: 22px;
}

.category-card p,
.category-overview-card p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.from-cyan {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.from-blue {
  background: linear-gradient(135deg, #2563eb, #0891b2);
}

.from-purple {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.from-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.from-orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.from-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.from-indigo {
  background: linear-gradient(135deg, #4f46e5, #0891b2);
}

.from-amber {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

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

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

.movie-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.42);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(59, 130, 246, 0.12)),
    #111827;
}

.poster-img,
.simple-poster,
.rank-poster,
.side-poster,
.category-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-img {
  transition: transform 0.45s ease, opacity 0.25s ease;
}

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

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.92);
  color: #00111f;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: all 0.25s ease;
}

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

.movie-info {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-info strong {
  font-size: 17px;
  line-height: 1.35;
}

.movie-line {
  min-height: 42px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
}

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

.movie-meta em,
.movie-tags {
  font-style: normal;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.related-panel,
.side-poster-card,
.detail-card {
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.24);
}

.ranking-panel {
  position: sticky;
  top: 98px;
  padding: 20px;
}

.ranking-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 900;
}

.ranking-title a {
  color: var(--cyan);
  font-size: 14px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.7);
}

.rank-no,
.rank-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #00111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.rank-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.page-hero,
.category-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 20px;
}

.page-hero p,
.category-hero p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.category-hero {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 54px;
  margin-top: 34px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.category-hero > div {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-toolbar input,
.filter-toolbar select {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 15px;
}

.empty-state {
  display: none;
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid var(--line);
}

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

.category-overview-card {
  min-height: 260px;
}

.category-topline {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-thumbs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.category-thumb {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.24);
}

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

.rank-lead {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  position: relative;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.rank-medal {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
}

.rank-poster {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: #111827;
}

.rank-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.rank-copy strong {
  font-size: 20px;
}

.rank-copy em,
.rank-copy span {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.5;
}

.detail-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin: 0 0 22px;
}

.breadcrumbs a {
  color: #cbd5e1;
}

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

.player-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  background: #000000;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
}

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

.overlay-play {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #00111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 28px;
  box-shadow: 0 20px 44px rgba(34, 211, 238, 0.3);
}

.play-overlay strong {
  font-size: clamp(22px, 4vw, 36px);
}

.play-overlay em {
  color: #cbd5e1;
  font-style: normal;
}

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

.detail-card p {
  color: #cbd5e1;
  line-height: 1.9;
}

.detail-card h2,
.related-panel h2,
.footer-links h2 {
  margin: 28px 0 12px;
  font-size: 22px;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.24);
}

.detail-side {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 98px;
}

.side-poster-card {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.side-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #111827;
}

.related-panel {
  padding: 18px;
}

.related-panel h2 {
  margin-top: 0;
}

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

.simple-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.7);
}

.simple-poster {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background: #111827;
}

.simple-card span {
  display: grid;
  gap: 6px;
}

.simple-card strong {
  line-height: 1.35;
}

.simple-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.site-footer {
  margin-top: 84px;
  background: rgba(15, 23, 42, 0.92);
  border-top: 1px solid var(--line);
}

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

.footer-brand p,
.footer-links a {
  color: var(--muted);
  line-height: 1.8;
}

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

.footer-links h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .rank-leads {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 66px;
  }

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

  .hero-slider {
    min-height: 590px;
  }

  .hero-copy {
    padding-top: 20px;
  }

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

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

  .content-section {
    padding-top: 46px;
  }

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

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

  .category-hero {
    padding: 34px 22px;
  }

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

  .detail-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .movie-card {
    grid-template-columns: 118px 1fr;
    grid-template-rows: auto;
  }

  .poster-wrap {
    height: 100%;
  }

  .movie-line {
    min-height: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mobile-categories {
    grid-template-columns: 1fr;
  }
}
