/* ==============================
   RESET & BASE
   ============================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Layout */
  --page-bg: #020617;
  --surface-soft: #f8fafc;
  --surface-elevated: #ffffff;

  /* Borders & shadows */
  --border-subtle: #e5e7eb;
  --border-strong: #cbd5e1;
  --shell-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 12px 26px rgba(15, 23, 42, 0.06);

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-strong: #020617;

  /* Accent */
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.06);
  --accent-soft-strong: rgba(37, 99, 235, 0.13);

  /* Radii */
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Typography & motion */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  --transition-fast: 140ms ease-out;
  --transition-med: 200ms ease-out;

  --container-max: 1160px;

  /* Spacing */
  --space-xs: 0.4rem;
  --space-sm: 0.7rem;
  --space-md: 0.95rem;
  --space-lg: 1.25rem;
  --space-xl: 1.6rem;
  --space-2xl: 2.2rem;
  --space-3xl: 3.2rem;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background: #0f1528;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: var(--space-sm) var(--space-md);
  background: #111827;
  color: #f9fafb;
  border-radius: var(--radius-pill);
  z-index: 50;
}

.skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
}

/* ==============================
   HEADER
   ============================== */

.top-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.92)
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.85);
}

.nav-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 30% 0%, #38bdf8, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #e5f3ff;
  box-shadow: 0 10px 24px rgba(8, 47, 73, 0.8);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
}

.brand-tagline {
  font-size: 0.68rem;
  color: #9ca3af;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-item {
  font-size: 0.78rem;
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.nav-item:hover {
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  transform: translateY(-0.5px);
}

.nav-item-active {
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.75);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* ==============================
   MAIN LAYOUT
   ============================== */

.page-main {
  min-height: calc(100vh - 56px);
  padding: 2.1rem 0 var(--space-3xl);
  display: flex;
  justify-content: center;
}

.app-shell {
  width: 100%;
  max-width: calc(var(--container-max) + 3rem);
  padding: 0 var(--space-lg);
}

/* Main container with split layout inside */
.split-layout {
  background: var(--surface-soft);
  border-radius: 20px;
  box-shadow: var(--shell-shadow);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
}

/* LEFT PANE */

.left-pane {
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl);
  border-right: 1px solid var(--border-subtle);
  background: radial-gradient(
      circle at 0% 0%,
      rgba(37, 99, 235, 0.06),
      transparent 55%
    ),
    #f8fafc;
}

.left-inner {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.left-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.hero-subtitle {
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* SEARCH */

.search-shell {
  background: var(--surface-elevated);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.35rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.search-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: 0.9rem;
}

.search-label {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-strong);
}

.search-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.search-primary-row-full {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.search-input-full {
  flex: 1 1 auto;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  padding: 0.68rem 1rem;
  font-size: 0.96rem;
  background: #f9fafb;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
  min-height: 46px;
}

.search-input-full::placeholder {
  color: #94a3b8;
  font-size: 0.9rem;
}

.search-input-full:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
}

.search-btn-full {
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  border: none;
  padding: 0.7rem 1.45rem;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.3);
  transition: all var(--transition-fast);
  min-height: 46px;
  min-width: 120px;
}

.search-btn-full:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(37, 99, 235, 0.38);
}

.search-btn-full:active {
  transform: translateY(-1px);
  box-shadow: 0 9px 24px rgba(37, 99, 235, 0.32);
}

.search-secondary-row-full {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.geo-block-full {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #eef2ff;
}

.geo-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.geo-select-full {
  min-width: 180px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  background: #f9fafb;
  color: var(--text-primary);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.geo-select-full:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

.search-examples-full {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-examples-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: 0.15rem;
}

.suggested-pill-full {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  padding: 0.33rem 0.8rem;
  font-size: 0.8rem;
  background: #f1f5f9;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.suggested-pill-full:hover {
  border-color: rgba(37, 99, 235, 0.55);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.search-meta-full {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
}

/* INLINE ASSISTANT */

.assistant-inline {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px dashed rgba(148, 163, 184, 0.5);
}

.assistant-inline-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.assistant-inline-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.assistant-inline-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-strong);
}

.assistant-inline-text {
  font-size: 0.76rem;
  color: var(--text-secondary);
}

/* HERO META */

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: 0.5rem;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: #e5edff;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ==============================
   RIGHT PANE
   ============================== */

.right-pane {
  background: #f1f5f9;
  padding: var(--space-2xl) var(--space-xl);
}

.right-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.results-header {
  margin-bottom: 1.4rem;
}

.results-eyebrow {
  color: #94a3b8;
}

.results-title {
  font-size: 1.6rem;
  margin: 0.1rem 0;
  color: var(--text-strong);
}

.results-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 28rem;
}

/* Loading */
.loading {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
  padding: 0.55rem;
  text-align: center;
}

/* Results grid */
.results {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: flex-start;
}

/* Empty state */
.results-empty {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-subtle);
  padding: 1.4rem;
  background: var(--surface-elevated);
  text-align: left;
}

.results-empty-title {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-strong);
  margin-bottom: 0.2rem;
}

.results-empty-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==============================
   STORE CARDS
   ============================== */

.shop-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 9px 24px rgba(15, 23, 42, 0.06);
  transition: transform 150ms ease-out, box-shadow 150ms ease-out,
    border-color 150ms ease-out, background-color 150ms ease-out;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.shop-card:hover {
  transform: translateY(-2px);
  border-color: #d1d5db;
  box-shadow: 0 15px 36px rgba(15, 23, 42, 0.09);
}

.shop-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Logo container */
.shop-logo-large,
.logo-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.logo-image-large {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.shop-main {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
}

.shop-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: #020617;
  line-height: 1.25;
}

.shop-category-badge {
  display: none;
}

.shop-description {
  font-size: 0.83rem;
  line-height: 1.45;
  color: #4b5563;
  margin-top: 0.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-notes {
  font-size: 0.83rem;
  color: #111827;
  line-height: 1.4;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  align-self: flex-start;
  margin-top: 0.05rem;
}

.shop-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.shop-link {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms ease-out, border-color 140ms ease-out,
    transform 140ms ease-out, box-shadow 140ms ease-out;
  position: relative;
  overflow: hidden;
}

.shop-link::before {
  content: "";
  display: none;
}

.shop-link:hover {
  background: #e5efff;
  border-color: #c7d2fe;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}

.shop-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.16);
}

.shop-footer {
  margin-top: 0.55rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: flex-start;
}

.shop-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.shop-domain {
  font-size: 0.76rem;
  color: #6b7280;
  font-family: inherit;
}

.shop-country-badge {
  font-size: 0.7rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #9ca3af;
}

.shop-affiliate-label {
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
  background: transparent;
  color: #9ca3af;
}

/* ==============================
   INFO SECTIONS
   ============================== */

.container {
  /* re-use container style only for bottom sections */
  max-width: var(--container-max);
  margin: 0 auto;
  margin-top: var(--space-2xl);
}

.info-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
  background: transparent;
}

.info-header {
  max-width: 620px;
  margin-bottom: 1.7rem;
}

.info-header h3 {
  font-size: 1.4rem;
  margin: 0.15rem 0 0.4rem;
  color: #f9fafb;
}

.info-header p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.55;
}

/* bottom sections live on dark bg */
.page-main .info-section {
  color: #f9fafb;
}

.page-main .info-section:first-of-type {
  margin-top: var(--space-3xl);
}

/* How strip */
.how-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.how-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.5);
  transition: all var(--transition-fast);
}

.how-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.8);
}

.how-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.16rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.how-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: #e5e7eb;
}

.how-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.how-hint {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.45;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.5);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.8);
}

.faq-item h4 {
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
  color: #e5e7eb;
}

.faq-item p {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.55;
}

/* ==============================
   AFFILIATE BAR
   ============================== */

.affiliate-bar {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.affiliate-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
  flex-shrink: 0;
}

.affiliate-bar p {
  font-size: 0.82rem;
  color: #e5e7eb;
  line-height: 1.55;
  margin: 0;
}

/* ==============================
   FOOTER
   ============================== */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.7);
  background: #020617;
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.78rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.78rem;
  color: #9ca3af;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.85);
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1000px) {
  .split-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .left-pane {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .right-pane {
    padding-top: var(--space-xl);
  }

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

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

  .nav-toggle-btn {
    display: inline-flex;
  }

  .nav-toggle:checked ~ .nav-links {
    position: absolute;
    top: 50px;
    right: var(--space-lg);
    padding: 0.4rem 0.5rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: flex;
    gap: var(--space-xs);
  }

  .page-main {
    padding: 1.7rem 0 var(--space-2xl);
  }

  .app-shell {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 720px) {
  .left-pane,
  .right-pane {
    padding: var(--space-xl) var(--space-lg);
  }

  .search-shell {
    padding: 1rem;
  }

  .search-primary-row-full {
    flex-direction: column;
  }

  .search-btn-full {
    width: 100%;
    min-width: auto;
  }

  .search-secondary-row-full {
    flex-direction: column;
    align-items: stretch;
  }

  .geo-block-full {
    width: 100%;
    justify-content: space-between;
  }

  .geo-select-full {
    width: auto;
    flex: 1;
  }

  .search-examples-full {
    justify-content: flex-start;
    text-align: left;
  }

  .how-strip,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.05rem;
    --space-xl: 1.4rem;
    --space-2xl: 2rem;
  }

  .page-main {
    padding: 1.3rem 0 var(--space-xl);
  }

  .app-shell {
    padding: 0 0.7rem;
  }

  .left-pane,
  .right-pane {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .search-shell {
    padding: 0.9rem;
  }

  .search-input-full {
    font-size: 0.94rem;
    min-height: 44px;
  }

  .search-btn-full {
    font-size: 0.94rem;
    min-height: 44px;
  }

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

  .suggested-pill-full {
    text-align: center;
    width: 100%;
  }

  .results-title {
    font-size: 1.45rem;
  }
}
