:root {
  --site-red: #ef4444;
  --site-pink: #ec4899;
  --site-rose: #fff1f2;
  --site-ink: #111827;
  --site-muted: #6b7280;
  --site-line: #e5e7eb;
  --site-card: #ffffff;
  --site-bg: #f8fafc;
  --site-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --site-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--site-ink);
  background: var(--site-bg);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

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

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

.brand-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.28);
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(135deg, #dc2626, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--site-red);
}

.nav-search,
.mobile-search,
.large-search,
.inline-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-search input,
.mobile-search input,
.large-search input,
.inline-search input {
  border: 1px solid #d1d5db;
  outline: none;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 220px;
  padding: 10px 16px;
}

.nav-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.inline-search input:focus {
  border-color: var(--site-red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.nav-search button,
.mobile-search button,
.large-search button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.2);
}

.nav-search button,
.mobile-search button {
  padding: 10px 16px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #f3f4f6;
  cursor: pointer;
}

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

.mobile-panel {
  padding: 0 20px 20px;
  border-top: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-search {
  padding: 16px 0;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
}

.mobile-link {
  display: block;
  padding: 12px 0;
  font-weight: 700;
  color: #374151;
  border-top: 1px solid #f3f4f6;
}

.section-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  height: 650px;
  min-height: 560px;
  overflow: hidden;
  background: #111827;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  background-position: center;
  background-size: cover;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.hero-content {
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  align-items: center;
  gap: 64px;
  color: #ffffff;
}

.hero-copy {
  max-width: 760px;
  animation: fadeUp 0.7s ease both;
}

.hero-kicker,
.eyebrow {
  color: #f43f5e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-tags,
.tag-row,
.filter-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.3);
}

.primary-btn.light {
  color: var(--site-red);
  background: #ffffff;
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
  transform: perspective(900px) rotateY(-8deg);
}

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

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

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

.hero-dot,
.hero-arrow {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

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

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.quick-search-section,
.category-section,
.weekly-section {
  padding: 60px 0;
}

.quick-search-card,
.cta-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--site-radius);
  background: #ffffff;
  box-shadow: var(--site-shadow);
}

.quick-search-card h2,
.cta-card h2,
.section-title-row h2,
.list-toolbar h2 {
  margin: 6px 0 0;
  color: var(--site-ink);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.quick-search-card h2,
.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.large-search input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
}

.large-search button {
  min-height: 52px;
  padding: 0 24px;
}

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

.section-title-row,
.list-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-title-row.compact {
  align-items: center;
}

.section-title-row h2,
.list-toolbar h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.more-link {
  color: var(--site-red);
  font-weight: 900;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--site-card);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--site-red);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.28);
}

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

.meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 800;
}

.meta-row span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #c4c4c4;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.28;
}

.movie-card h3 a:hover {
  color: var(--site-red);
}

.movie-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: 14px;
}

.tag-row span {
  color: #be123c;
  background: #ffe4e6;
  border-color: rgba(244, 63, 94, 0.12);
}

.movie-card-large {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}

.movie-card-large .poster-link img {
  height: 100%;
  aspect-ratio: auto;
}

.category-section,
.weekly-section {
  background: linear-gradient(135deg, #fff1f2, #fff7ed 52%, #ffffff);
}

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

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-card-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.88));
}

.category-card-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #ffffff;
}

.category-card-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.category-card-copy small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding-top: 64px;
  padding-bottom: 64px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 46px 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.ranking-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
  font-weight: 900;
}

.ranking-item img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-copy {
  min-width: 0;
}

.ranking-copy strong,
.ranking-copy small,
.ranking-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-copy strong {
  color: var(--site-ink);
  font-size: 16px;
}

.ranking-copy small {
  color: var(--site-muted);
  font-size: 13px;
}

.ranking-copy em {
  color: #9ca3af;
  font-size: 12px;
  font-style: normal;
}

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

.cta-card {
  grid-template-columns: 1fr auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
}

.cta-card h2,
.cta-card p {
  color: #ffffff;
}

.cta-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 58px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fb7185;
  font-size: 17px;
}

.site-footer p,
.site-footer a {
  color: #d1d5db;
  font-size: 14px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

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

.page-hero,
.category-hero,
.detail-hero {
  padding: 82px 0;
  background-position: center;
  background-size: cover;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #be123c);
}

.soft-hero,
.search-hero,
.ranking-hero {
  color: var(--site-ink);
  background: linear-gradient(135deg, #fff1f2, #ffffff);
}

.page-hero h1,
.category-hero h1,
.detail-hero h1 {
  margin: 10px 0;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.page-hero p,
.category-hero p,
.detail-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.soft-hero p,
.search-hero p,
.ranking-hero p {
  color: var(--site-muted);
}

.category-hero {
  color: #ffffff;
}

.list-toolbar {
  align-items: center;
}

.inline-search span {
  color: var(--site-muted);
  font-weight: 800;
}

.inline-search input {
  width: min(310px, 56vw);
  padding: 12px 16px;
}

.filter-row {
  margin: -10px 0 28px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  color: #be123c;
  background: #ffe4e6;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-red), var(--site-pink));
}

.detail-hero {
  color: #ffffff;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-meta {
  margin-top: 18px;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  padding-top: 54px;
  padding-bottom: 24px;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.74));
  cursor: pointer;
  z-index: 4;
}

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

.play-circle {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--site-red);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.player-overlay strong {
  max-width: 80%;
  font-size: clamp(20px, 3vw, 34px);
  text-align: center;
}

.content-card,
.side-panel {
  margin-top: 24px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.content-card h2,
.side-panel h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.content-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.side-panel {
  position: sticky;
  top: 96px;
}

.side-panel dl {
  margin: 0;
}

.side-panel div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #f3f4f6;
}

.side-panel dt {
  color: #9ca3af;
  font-weight: 800;
}

.side-panel dd {
  margin: 0;
  color: var(--site-ink);
  font-weight: 700;
}

.side-panel a {
  color: var(--site-red);
}

.search-results-section {
  min-height: 420px;
}

.empty-results {
  grid-column: 1 / -1;
  padding: 64px 24px;
  border-radius: 24px;
  text-align: center;
  color: var(--site-muted);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

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

  .hero-content {
    grid-template-columns: 1fr 280px;
    gap: 34px;
  }

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

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

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

  .side-panel {
    position: static;
  }
}

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

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-shell {
    height: 66px;
  }

  .hero-carousel {
    height: auto;
    min-height: 760px;
  }

  .hero-slide {
    padding: 64px 0 96px;
  }

  .hero-content,
  .quick-search-card,
  .cta-card,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 280px;
    transform: none;
  }

  .movie-grid,
  .full-grid,
  .side-card-grid,
  .large-card-grid,
  .category-grid,
  .wide-ranking,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-title-row,
  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .brand-text {
    font-size: 18px;
  }

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

  .movie-grid,
  .full-grid,
  .side-card-grid,
  .large-card-grid,
  .category-grid,
  .wide-ranking,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item {
    grid-template-columns: 40px 76px minmax(0, 1fr);
  }

  .ranking-item img {
    width: 76px;
    height: 56px;
  }

  .large-search,
  .inline-search {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .inline-search input,
  .large-search input,
  .large-search button {
    width: 100%;
  }
}
