:root {
  --pink: #ec4899;
  --rose: #ef4444;
  --orange: #f97316;
  --yellow: #f59e0b;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #10b981;
  --purple: #8b5cf6;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #fdf2f8;
  --line: #f3f4f6;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 44%, #eff6ff 100%);
  min-height: 100vh;
}

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

img {
  display: block;
  max-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;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(243, 244, 246, 0.9);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
  animation: heartbeat 1.5s ease-in-out infinite;
}

.logo-text {
  font-size: 26px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
  transform: translateY(-1px);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}

.header-search input,
.mobile-search input,
.filter-search input,
.search-box input {
  border: 0;
  outline: 0;
  min-width: 210px;
  padding: 10px 12px;
  color: #111827;
  background: transparent;
}

.header-search button,
.mobile-search button,
.search-box button,
.primary-button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-box button:hover,
.primary-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 38px rgba(236, 72, 153, 0.36);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff1f2;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--rose);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
}

.mobile-panel.open {
  display: block;
  animation: slide-down 0.25s ease both;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 14px 0;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #ec4899 0%, #ef4444 46%, #f59e0b 100%);
  background-size: 220% 220%;
  animation: gradient 5s ease infinite;
  z-index: -3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.24), transparent 24%), rgba(0, 0, 0, 0.2);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(to top, #fdf2f8, transparent);
  z-index: -1;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 48px;
  padding: 56px 0 86px;
}

.hero-copy {
  animation: fade-in 0.5s ease both;
}

.hero-kicker,
.section-kicker,
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 780px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  animation: bounce-slow 2.4s ease-in-out infinite;
}

.hero p {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  animation: slide-up 0.5s ease both;
}

.hero-actions,
.quick-links,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--rose);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.22);
  transition: transform 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.06);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-feature-card {
  position: relative;
  width: min(420px, 100%);
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(17, 24, 39, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.hero-feature-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-feature-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 96px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.hero-feature-info h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.18;
}

.hero-feature-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.active {
  width: 28px;
  background: #ffffff;
}

.main-section {
  padding: 58px 0;
}

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

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

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

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

.movie-card,
.wide-card,
.category-card,
.info-panel,
.detail-panel,
.rank-item,
.search-result {
  background: var(--card);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

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

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

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fce7f3, #fee2e2);
}

.poster-wrap img,
.wide-cover img,
.rank-item img,
.detail-cover img,
.category-card img,
.search-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-wrap img,
.wide-card:hover .wide-cover img,
.category-card:hover img,
.search-result:hover img {
  transform: scale(1.08);
}

.poster-wrap::after,
.wide-cover::after,
.detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 54%);
}

.badge,
.duration,
.play-mark,
.rank-number,
.hero-rank {
  position: absolute;
  z-index: 2;
}

.badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.duration {
  right: 12px;
  bottom: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.72);
}

.play-mark {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
  padding: 16px;
}

.movie-card-body h2,
.wide-body h2,
.search-result h2 {
  margin: 0 0 8px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body p,
.wide-body p,
.search-result p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.tag-row,
.detail-meta,
.meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span,
.tag-row span,
.detail-meta span,
.meta-line span,
.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f9fafb;
}

.wide-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wide-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #eff6ff, #fdf2f8);
}

.wide-body {
  padding: 18px;
}

.gradient-band {
  padding: 68px 0;
  background: linear-gradient(90deg, #f3e8ff 0%, #fce7f3 50%, #dbeafe 100%);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 28px;
  color: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.82), rgba(239, 68, 68, 0.7), rgba(17, 24, 39, 0.5));
}

.category-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 230px;
  padding: 24px;
}

.category-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.category-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

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

.rank-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 14px 18px;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.rank-number {
  position: static;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.rank-item img {
  width: 108px;
  height: 66px;
  border-radius: 14px;
}

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

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.rank-info em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-heat {
  color: var(--rose);
  font-weight: 900;
}

.page-hero {
  padding: 76px 0 42px;
}

.page-hero h1,
.detail-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.page-hero p,
.detail-hero p {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.filter-search,
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 8px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.07);
}

.filter-search input,
.search-box input {
  flex: 1;
  min-width: 0;
  font-size: 16px;
}

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

.detail-panel {
  overflow: hidden;
  border-radius: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #000000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
}

.player-start.is-hidden {
  display: none;
}

.player-start span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 20px 46px rgba(236, 72, 153, 0.42);
  transition: transform 0.2s ease;
}

.player-start:hover span {
  transform: scale(1.06);
}

.detail-copy {
  padding: 26px;
}

.detail-copy h2 {
  margin: 28px 0 12px;
  font-size: 26px;
}

.detail-copy p {
  margin: 0;
  color: #374151;
  line-height: 1.85;
}

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

.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #fce7f3, #fee2e2);
}

.detail-cover img {
  aspect-ratio: 3 / 4;
}

.info-panel {
  padding: 22px;
  border-radius: 24px;
}

.info-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.info-list {
  display: grid;
  gap: 10px;
  color: #4b5563;
  line-height: 1.65;
}

.info-list strong {
  color: var(--ink);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.breadcrumbs {
  color: var(--muted);
  margin: 22px 0 0;
}

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

.search-results {
  display: grid;
  gap: 18px;
  margin-bottom: 70px;
}

.search-result {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-result:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.search-result img {
  width: 130px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(90deg, #111827, #1f2937);
}

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

.footer-logo {
  margin-bottom: 14px;
  font-size: 22px;
}

.site-footer p,
.site-footer a {
  color: #d1d5db;
  line-height: 1.75;
}

.site-footer a:hover {
  color: #ffffff;
}

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

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

.footer-bottom {
  padding: 18px 16px 28px;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-state {
  padding: 38px;
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--pink), var(--rose));
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .detail-sidebar {
    position: static;
    grid-template-columns: 240px 1fr;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 66px;
  }

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

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 56px 0 82px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .section-head {
    display: block;
  }

  .card-grid,
  .card-grid.compact,
  .card-grid.wide,
  .category-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-item {
    grid-template-columns: 42px 88px minmax(0, 1fr);
  }

  .rank-heat {
    display: none;
  }

  .rank-item img {
    width: 88px;
    height: 58px;
  }
}

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

  .hero-actions,
  .quick-links,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button,
  .ghost-button,
  .primary-button {
    width: 100%;
  }

  .card-grid,
  .card-grid.compact,
  .card-grid.wide,
  .category-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .search-result img {
    width: 92px;
  }

  .filter-search,
  .search-box {
    flex-direction: column;
    align-items: stretch;
  }

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