:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-900: #7c2d12;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 12px 32px rgba(120, 53, 15, 0.12);
  --shadow-strong: 0 24px 60px rgba(120, 53, 15, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 119, 6, 0.22);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(120, 53, 15, 0.08);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.22);
}

.logo-copy {
  display: grid;
  line-height: 1.15;
}

.logo-title {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, var(--amber-800), var(--orange-700));
  -webkit-background-clip: text;
  background-clip: text;
}

.logo-subtitle {
  margin-top: 4px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 650;
  color: var(--gray-700);
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--amber-600);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-box input {
  width: 240px;
  border: 1px solid var(--amber-200);
  outline: none;
  color: var(--gray-800);
  background: var(--amber-50);
  border-radius: 999px;
  padding: 11px 16px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-box input:focus {
  border-color: var(--amber-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-search button {
  border: none;
  color: var(--white);
  background: var(--amber-600);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover {
  background: var(--amber-700);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  color: var(--amber-800);
  background: var(--amber-50);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0 16px 16px;
  border-top: 1px solid var(--amber-100);
  background: rgba(255, 255, 255, 0.98);
}

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

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(110deg, var(--amber-900), var(--orange-900));
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 17, 2, 0.9), rgba(120, 53, 15, 0.75), rgba(194, 65, 12, 0.38));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% 34%;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4), rgba(245, 158, 11, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 64px;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: 80px 0 96px;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0 0 8px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 0 0 20px;
  color: var(--amber-100);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 251, 235, 0.9);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.65;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.hero-tags span,
.tag-list span,
.detail-labels span,
.detail-labels a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(253, 230, 138, 0.42);
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
}

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

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

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

.btn-primary {
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 18px 32px rgba(217, 119, 6, 0.28);
}

.btn-primary:hover {
  background: var(--amber-700);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-block {
  width: 100%;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.32);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

.hero-poster img {
  height: 430px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-200);
}

.hero-quick {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 32px;
  display: grid;
  width: 310px;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-quick-title {
  color: var(--amber-100);
  font-size: 13px;
  font-weight: 800;
}

.hero-quick a {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.hero-quick a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-quick img {
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

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

.hero-quick strong {
  font-size: 14px;
}

.hero-quick em {
  color: var(--amber-100);
  font-size: 12px;
  font-style: normal;
}

.section {
  padding: 72px 0;
}

.section-light {
  background: rgba(255, 255, 255, 0.56);
}

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

.section-head-inline {
  margin-bottom: 24px;
}

.section-head h2,
.rank-panel h2,
.filter-panel h2,
.side-box h2,
.detail-content h2,
.footer-grid h2 {
  margin: 0;
  color: var(--gray-900);
  line-height: 1.2;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.section-head p,
.filter-panel p,
.category-card p,
.footer-grid p,
.page-hero p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section .eyebrow,
.page-hero .eyebrow {
  color: var(--amber-600);
}

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

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

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

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

.movie-card {
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--gray-800);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  color: var(--white);
  background: rgba(120, 53, 15, 0.82);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  right: auto;
  left: 12px;
  background: var(--amber-600);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.card-meta,
.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-800);
  background: var(--amber-100);
  border-radius: 999px;
  padding: 4px 9px;
}

.card-title {
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: var(--amber-700);
}

.card-desc {
  display: -webkit-box;
  min-height: 3.2em;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-foot {
  color: var(--gray-500);
  font-weight: 700;
}

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

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

.movie-card.is-hidden {
  display: none;
}

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

.rank-panel,
.filter-panel,
.side-box,
.detail-content,
.player-card,
.category-card {
  border: 1px solid rgba(217, 119, 6, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.rank-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.rank-panel-head {
  margin-bottom: 4px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: var(--amber-50);
  transform: translateX(3px);
}

.rank-row span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--amber-600);
  border-radius: 12px;
  font-weight: 900;
}

.rank-row strong {
  overflow: hidden;
  color: var(--gray-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  overflow: hidden;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.category-tile {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--amber-900);
  box-shadow: var(--shadow-soft);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-tile:hover img {
  opacity: 0.78;
  transform: scale(1.05);
}

.category-tile span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.page-hero {
  padding: 88px 0;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.35), transparent 30%), linear-gradient(110deg, var(--amber-900), var(--orange-900));
}

.page-hero-compact {
  padding: 68px 0;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 251, 235, 0.9);
  font-size: 18px;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 22px;
}

.filter-box input {
  width: min(430px, 100%);
}

.category-overview {
  display: grid;
  gap: 24px;
}

.category-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  overflow: hidden;
  padding: 18px;
}

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

.category-card-images img {
  height: 106px;
  border-radius: 18px;
  object-fit: cover;
}

.category-card-body {
  align-self: center;
}

.category-card h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: 28px;
}

.detail-wrap {
  padding: 28px 0 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--amber-700);
  font-weight: 800;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  overflow: hidden;
}

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

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
}

.video-cover-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.video-cover-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding-left: 8px;
  border-radius: 999px;
  background: var(--amber-600);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  font-size: 42px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-cover-button:hover span {
  background: var(--amber-700);
  transform: scale(1.08);
}

.video-shell.is-ready .video-cover-button {
  display: none;
}

.player-message {
  position: absolute;
  left: 20px;
  bottom: 18px;
  margin: 0;
  color: var(--amber-100);
  font-size: 14px;
  font-weight: 700;
}

.detail-content {
  padding: 30px;
}

.detail-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-labels span,
.detail-labels a {
  color: var(--amber-800);
  background: var(--amber-100);
}

.detail-content h1 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 20px;
  color: var(--gray-700);
  font-size: 19px;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
  color: var(--gray-600);
  font-weight: 750;
}

.tag-list {
  margin: 20px 0 30px;
}

.tag-list span {
  color: var(--gray-700);
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.detail-content h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 24px;
}

.detail-content p {
  color: var(--gray-700);
  font-size: 16px;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.detail-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.detail-poster img {
  min-height: 430px;
  object-fit: cover;
}

.detail-poster span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: block;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  border-radius: 18px;
  padding: 14px;
  text-align: center;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.side-box {
  padding: 22px;
}

.side-box dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px 16px;
  margin: 18px 0 0;
}

.side-box dt {
  color: var(--gray-500);
}

.side-box dd {
  margin: 0;
  color: var(--gray-800);
  font-weight: 750;
}

.site-footer {
  color: var(--amber-50);
  background: linear-gradient(135deg, var(--amber-900), var(--orange-900));
}

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

.footer-logo {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 251, 235, 0.78);
}

.footer-grid h2 {
  color: var(--white);
  font-size: 18px;
}

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

.footer-grid a:hover {
  color: var(--white);
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-search input {
    width: 190px;
  }

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

  .hero-quick {
    display: none;
  }
}

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 56px;
  }

  .hero-poster {
    width: min(330px, 86vw);
    transform: none;
  }

  .hero-poster img {
    height: 300px;
  }

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

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

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

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

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 28px;
  }

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

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

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

  .detail-content {
    padding: 22px;
  }

  .video-cover-button span {
    width: 76px;
    height: 76px;
    font-size: 32px;
  }

  .mobile-search {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-search input,
  .mobile-search button,
  .filter-box,
  .filter-box input {
    width: 100%;
  }
}
