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

:root {
  /* RAL 9003 Signal white */
  --ral-9003: #f4f3ee;
  --ral-9003-deep: #e8e7e2;
  --bg: var(--ral-9003);
  --surface: #ffffff;
  --surface-2: #faf9f6;
  --border: rgba(0, 0, 0, 0.08);
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --gray-brand: #8a8a8a;
  --accent: #ff9900;
  --accent-hover: #e88a00;
  --accent-soft: rgba(255, 153, 0, 0.14);
  --accent-glow: rgba(255, 153, 0, 0.28);
  --radius: 16px;
  --radius-sm: 10px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
}

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

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

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, 100% - 32px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: rgba(244, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

body {
  padding-top: calc(var(--header-h) + var(--safe-top));
}

/* Fixed .site-header is out of flow; wrapper must not add a second gap */
#site-header {
  height: 0;
  min-height: 0;
  overflow: visible;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img,
.site-logo-img {
  height: 34px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.site-logo-img-footer {
  height: 28px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-bar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-bar-nav .header-bar-link {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.header-bar-nav .header-bar-link:hover,
.header-bar-nav .header-bar-link.active {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--muted);
}

.mobile-nav a:hover {
  background: var(--surface);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 6px 20px var(--accent-glow);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 153, 0, 0.4);
  color: var(--accent);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 40px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
  .hero {
    padding: 64px 0 80px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 153, 0, 0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-trust strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
}

.phone-mock {
  background: var(--surface);
  border-radius: 28px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.qr-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
}

.qr-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.qr-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.menu-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-preview .menu-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.menu-preview .menu-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(0, 0, 0, 0.04));
  flex-shrink: 0;
}

.menu-preview .menu-item-info h3 {
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.menu-preview .menu-item-info p {
  font-size: 0.78rem;
  color: var(--muted);
}

.menu-preview .menu-item-price {
  margin-left: auto;
  font-weight: 800;
  color: var(--accent);
  align-self: center;
  white-space: nowrap;
  font-size: 0.95rem;
}

/* Stats */
.stats-bar {
  padding: 32px 0;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 800;
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 153, 0, 0.3);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.section-alt .step-card {
  background: var(--surface-2);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px var(--accent-glow);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-card .amount span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card .desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.price-features li {
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.price-features li i {
  color: var(--accent);
  margin-top: 3px;
}

.price-card .btn {
  width: 100%;
}

/* Free + social showcase */
.social-showcase {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .social-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.social-profile-mock {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.social-cover {
  height: 100px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #e8e7e2 100%);
}

.social-profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  margin-top: -28px;
}

.social-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.social-profile-head strong {
  display: block;
  font-size: 1rem;
}

.social-profile-head span {
  font-size: 0.8rem;
  color: var(--muted);
}

.social-reels {
  display: flex;
  gap: 10px;
  padding: 16px 20px 0;
}

.social-reel {
  flex: 1;
  aspect-ratio: 9 / 16;
  max-height: 88px;
  border-radius: 12px;
  background: linear-gradient(160deg, #2a2a2a, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.social-bio {
  padding: 12px 20px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.free-features-list .free-tagline {
  margin: 20px 0 24px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-features-list .free-tagline i {
  color: var(--accent);
}

.free-hero-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 16px 48px var(--accent-glow);
}

.free-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Home feed */
.hidden {
  display: none !important;
}

#feed,
.feed-block {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.home-feed-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

.home-feed-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feed-block-list .feed-card:nth-child(1) { animation-delay: 0.02s; }
.feed-block-list .feed-card:nth-child(2) { animation-delay: 0.06s; }
.feed-block-list .feed-card:nth-child(3) { animation-delay: 0.1s; }
.feed-block-list .feed-card:nth-child(n+4) { animation-delay: 0.14s; }

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

.feed-section-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.feed-section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
}

.feed-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #16a34a;
}

.feed-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: feed-pulse 2s ease infinite;
}

@keyframes feed-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.feed-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feed-jump-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.feed-jump-nav a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.feed-block {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feed-block-reels {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

.feed-block-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feed-block-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feed-block-title > i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feed-block-title h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.feed-block-title p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 480px;
}

.feed-block-updates {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.feed-reels-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.feed-reel-tile {
  flex: 0 0 140px;
  scroll-snap-align: start;
}

.feed-reel-thumb {
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  background: linear-gradient(160deg, #2a2a2a, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feed-reel-tile-body strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.feed-reel-tile-body span:not(.feed-legend-tag) {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.feed-reel-tile-body time {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
}

.feed-reel-tag {
  margin-top: 6px;
}

.feed-block-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-updates-badge {
  margin: 8px 0 0;
}

.feed-legend-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
}

.tag-reel {
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
}

.tag-venue {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.tag-menu {
  background: var(--accent-soft);
  color: var(--accent);
}

.tag-price {
  background: rgba(236, 72, 153, 0.12);
  color: #db2777;
}

.feed-legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feed-legend-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.feed-legend-list li:last-child {
  border-bottom: none;
}

.feed-section-reels .feed-action-icon {
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
}

.feed-section-venue .feed-action-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.feed-section-menu .feed-action-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.feed-section-price .feed-action-icon {
  background: rgba(236, 72, 153, 0.12);
  color: #db2777;
}

.feed-section-offer .feed-action-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.home-feed-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 960px) {
  .home-feed-layout {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
}

.home-feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-card {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: feed-card-in 0.4s ease backwards;
}

.feed-card-new {
  border-color: rgba(255, 153, 0, 0.45);
  box-shadow: 0 4px 20px var(--accent-glow);
}

@keyframes feed-card-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feed-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--ral-9003-deep, #e8e7e2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  text-decoration: none;
}

.feed-card-body {
  flex: 1;
  min-width: 0;
}

.feed-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.feed-venue {
  display: block;
  font-size: 0.95rem;
}

.feed-handle {
  font-size: 0.78rem;
  color: var(--muted);
}

.feed-time {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.feed-action {
  font-size: 0.9rem;
  margin: 0 0 4px;
  color: var(--text);
  line-height: 1.45;
}

.feed-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  vertical-align: middle;
}

.feed-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.feed-sidebar-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.feed-sidebar-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 14px;
}

.feed-stats-list,
.feed-trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feed-stats-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.feed-stats-list li:last-child {
  border-bottom: none;
}

.feed-stats-list strong {
  color: var(--accent);
  font-size: 1rem;
}

.feed-trending-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.feed-trending-list li:last-child {
  border-bottom: none;
}

.feed-trending-list strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.feed-trending-list span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.testimonial .stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.testimonial blockquote {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}

.testimonial cite span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.25s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA */
.cta-section {
  padding: 64px 0 calc(64px + var(--safe-bottom));
}

.cta-box {
  text-align: center;
  padding: 48px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--accent-soft) 0%, transparent 50%), var(--surface);
  border: 1px solid rgba(255, 153, 0, 0.25);
}

.cta-box h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 48px 0 calc(24px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.footer-brand img {
  height: 32px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: rgba(255, 153, 0, 0.4);
}

.text-accent {
  color: var(--accent);
}

@media (max-width: 899px) {
  .hide-mobile {
    display: none;
  }
}

/* —— Social feed page —— */
.social-page {
  background: var(--bg);
}

.social-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}

.social-header-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header-social {
  background: rgba(244, 243, 238, 0.95);
  border-bottom: 1px solid var(--border);
}

.site-header-social .nav-desktop {
  display: flex;
  gap: 4px;
}

.site-header-social .nav-desktop a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.site-header-social .nav-desktop a.active,
.site-header-social .nav-desktop a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.header-search-wrap {
  position: relative;
}

.header-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.header-search-btn:hover,
.header-search-btn[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

body.site-search-open {
  overflow: hidden;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  display: flex;
  justify-content: center;
}

.site-search-overlay.hidden {
  display: none;
}

.site-search-page {
  width: 100%;
  max-width: 560px;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.site-search-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: calc(10px + var(--safe-top)) 16px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 2;
}

.site-search-back {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.site-search-back:hover {
  background: rgba(0, 0, 0, 0.05);
}

.site-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.site-search-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.site-search-input-wrap > i {
  color: var(--muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.site-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
}

.site-search-input::placeholder {
  color: var(--muted);
}

.site-search-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px calc(24px + var(--safe-bottom));
}

.site-search-results {
  min-height: 120px;
}

.site-search-section-label {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.site-search-section-label:not(:first-child) {
  margin-top: 14px;
}

.site-search-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-search-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.site-search-item:hover {
  background: var(--surface-2);
  border-color: var(--border);
}

.site-search-item-logo {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-2);
}

.site-search-item-logo-fb {
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
}

.site-search-city-icon {
  color: var(--accent);
  font-size: 0.85rem;
}

.site-search-item-dish .site-search-post-thumb {
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.site-search-post-thumb {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-2);
}

.site-search-item-body {
  min-width: 0;
  flex: 1;
}

.site-search-item-body strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.site-search-item-body span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search-item-post .site-search-item-body span {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.site-search-empty,
.site-search-loading {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 4px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-lang-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.header-lang-btn {
  border: none;
  background: transparent;
  border-radius: 999px;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.header-lang-btn:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.header-lang-btn.active {
  background: var(--accent);
  color: #000;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.header-lang-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.header-menu-wrap {
  position: relative;
}

.header-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.header-menu-btn:hover,
.header-menu-btn[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.header-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 240;
  width: min(240px, calc(100vw - 24px));
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-menu-panel.hidden {
  display: none;
}

.header-menu-link {
  border: none;
  background: none;
  text-align: left;
  text-decoration: none;
  color: var(--text);
  padding: 9px 10px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.header-menu-link:hover {
  background: var(--surface-2);
}

.header-menu-link-install {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
}

.header-menu-link-install::before {
  content: "\f019";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.82rem;
}

.header-menu-link-install.hidden {
  display: none;
}

.header-menu-link-push {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.header-menu-link-push::before {
  content: "\f0f3";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.82rem;
}

.header-menu-link-push.is-on {
  color: var(--accent);
}

.header-menu-link-push.is-on::before {
  content: "\f0f3";
  font-weight: 900;
}

.header-menu-link-push.hidden {
  display: none;
}

.pwa-ios-sheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.pwa-ios-sheet.hidden {
  display: none;
}

.pwa-ios-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pwa-ios-sheet-card {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  border-radius: 16px;
  background: var(--surface);
  padding: 20px 18px 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.pwa-ios-sheet-card h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.pwa-ios-steps {
  margin: 0 0 16px;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pwa-ios-steps li {
  margin-bottom: 8px;
}

.pwa-ios-steps i {
  margin-right: 6px;
  color: var(--accent);
}

body.pwa-sheet-open {
  overflow: hidden;
}

.header-menu-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.header-menu-profile-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.header-menu-profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-menu-profile-text {
  min-width: 0;
}

.header-menu-profile-text strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.2;
}

.header-menu-profile-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.25;
}

.header-menu-nav,
.header-menu-pwa-block,
.header-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

.header-menu-pwa-block:has(.header-menu-link-install.hidden):has(.header-menu-link-push.hidden) {
  display: none;
}

.header-menu-nav-link.is-active {
  color: var(--accent);
  font-weight: 700;
  background: var(--accent-soft);
}

.header-menu-section {
  border-top: 1px solid var(--border);
  margin: 3px 0 0;
  padding: 8px 0;
}

.header-menu-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0 10px 6px;
}

.header-menu-section .header-lang-tabs {
  margin: 0 10px;
  width: fit-content;
}

.post-lang-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.post-lang-btn {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 5px 11px;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.post-lang-btn:hover {
  border-color: rgba(255, 153, 0, 0.35);
  color: var(--text);
}

.post-lang-btn.filled:not(.active) {
  border-color: var(--accent, #c45c26);
  color: var(--text);
}

.post-lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.post-lang-hint {
  margin: 0 0 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.home-hero {
  margin: 0 0 8px;
  padding-top: 4px;
}

.home-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 8px 16px 10px;
}

.home-hero-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  min-width: 0;
  flex: 1 1 auto;
}

.home-hero-hint {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .home-hero-head {
    gap: 8px;
    align-items: flex-start;
  }

  .home-hero-head h2 {
    font-size: 0.92rem;
  }

  .home-hero-hint {
    font-size: 0.68rem;
    flex-shrink: 0;
    padding-top: 2px;
  }
}

.home-hero-track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 16px;
  padding: 0 0 8px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}

.home-hero-track::-webkit-scrollbar {
  display: none;
}

.home-hero-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.home-hero-track.is-dragging .home-hero-card {
  pointer-events: none;
}

.home-hero-track-empty {
  display: none;
}

.home-hero-grid {
  --hero-card-w: calc((100vw - 52px) / 3);
  display: grid;
  grid-auto-flow: column;
  /* ~3 cards visible in the horizontal strip */
  grid-auto-columns: var(--hero-card-w);
  gap: 10px;
  width: max-content;
  padding: 0 16px;
  min-height: calc(var(--hero-card-w) * (10 / 16) + 52px);
}

.home-hero-skeleton {
  min-height: calc(var(--hero-card-w) * (10 / 16) + 48px);
  border-radius: 14px;
  background: var(--surface-2);
  animation: menusm-skeleton-pulse 1.4s ease-in-out infinite;
}

.home-hero-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
}

.home-hero-banner {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: linear-gradient(145deg, #3a3a3a, #6a6a6a) center / cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.home-hero-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent);
  pointer-events: none;
  z-index: 0;
}

.home-hero-banner-empty::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
}

.home-hero-banner-empty {
  background: linear-gradient(145deg, var(--accent-soft), var(--surface-2));
}

.home-hero-banner .home-hero-logo-wrap {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
}

.home-hero-card-foot {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  margin-top: 6px;
  padding: 0 4px 4px;
}

.home-hero-logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--surface);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-hero-logo-fb {
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
}

.home-hero-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.home-hero-logo-wrap-verified .home-hero-logo,
.home-hero-logo-wrap-verified .home-hero-logo-fb {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-hero-verified-badge {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 0 1px var(--surface)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  line-height: 1;
  z-index: 1;
}

.home-hero-card-premium .home-hero-banner {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 6px 18px rgba(0, 0, 0, 0.08);
}

.home-hero-name {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-hero-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero-rating {
  font-size: 0.66rem;
  color: var(--muted);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .home-hero-track {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .home-hero-track::-webkit-scrollbar {
    display: block;
    height: 6px;
  }

  .home-hero-track::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
  }

  .home-hero-track::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px;
  }

  .home-hero-track::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
  }

  .home-hero-grid {
    --hero-card-w: calc((min(100vw, 720px) - 56px) / 3);
    gap: 12px;
    padding: 0;
  }

  .home-hero-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .home-hero-card-foot {
    margin-top: 8px;
  }

  .home-hero-name {
    font-size: 0.84rem;
  }

  .home-hero-banner .home-hero-logo-wrap {
    left: 10px;
    bottom: 10px;
  }
}

.social-main {
  padding-top: 0;
  padding-bottom: 48px;
  min-height: calc(100vh - var(--header-h) - 80px);
}

.social-page .site-header-social .nav-desktop {
  display: flex;
}

@media (max-width: 560px) {
  .social-header-inner {
    padding: 0 10px;
    gap: 8px;
  }

  .logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .site-logo-img {
    height: 30px;
    max-width: 132px;
  }

  .social-page .site-header-social .nav-desktop {
    gap: 2px;
    min-width: 0;
    flex-shrink: 1;
  }

  .social-page .site-header-social .nav-desktop a {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 6px;
  }

  .header-bar-nav .header-bar-link {
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}

.social-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 10px;
}

.social-topbar h1 {
  font-size: 1.5rem;
  margin: 0;
  flex: 1;
}

.social-topbar .feed-live-badge {
  margin-left: auto;
}

.feed-scope-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
}

.feed-scope-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.feed-scope-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.feed-scope-tabs[aria-busy="true"] .feed-scope-btn {
  pointer-events: none;
  opacity: 0.72;
}

.feed-scope-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--accent);
  font-size: 0.85rem;
}

.feed-scope-spinner:not(.hidden) {
  display: inline-flex;
}

.feed-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16a34a;
}

.feed-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: feed-pulse 2s ease infinite;
}

.feed-create-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feed-create-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feed-create-input {
  flex: 1;
  text-align: left;
  border: none;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
}

.feed-create-input:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.feed-stories {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 16px;
  margin-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.feed-stories-list {
  display: flex;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.feed-stories.hidden {
  display: none;
}

.feed-story,
.feed-story-link,
.feed-story-more {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  text-decoration: none;
}

.feed-story-ring-add,
.feed-story-ring-more {
  background: var(--border);
}

.feed-story-thumb-add,
.feed-story-thumb-more {
  background: var(--surface);
  color: var(--accent);
}

.feed-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feed-story-more .feed-story-thumb-more {
  color: var(--muted);
  font-size: 1rem;
}

.feed-story-ring {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff6b00);
}

.feed-story-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, #333, #555);
  border: 3px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.feed-story-name {
  font-size: 0.72rem;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
}

.feed-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.feed-composer {
  margin: 4px 0 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.feed-composer-head h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.feed-composer-head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.feed-composer-auth {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.feed-composer-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-composer-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.feed-composer-form input,
.feed-composer-form select {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.feed-composer-grid {
  display: grid;
  gap: 10px;
}

@media (min-width: 600px) {
  .feed-composer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feed-composer-status {
  margin: 0;
  font-size: 0.78rem;
}

.feed-tab {
  flex-shrink: 0;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.feed-tab.active {
  background: var(--text);
  color: var(--bg);
}

.social-shell-feed {
  max-width: 720px;
}

.feed-stream {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Two side-by-side columns — balance via JS (feedColumnWeight in home-feed.js) */
.feed-stream .feed-stream-cols {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.feed-stream-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feed-stream-col > .feed-post,
.feed-stream-col > .feed-card {
  width: 100%;
  min-width: 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

.feed-stream-loading {
  min-height: 0;
}

.feed-skeleton-card {
  border-radius: var(--radius);
  background: var(--surface-2);
  animation: menusm-skeleton-pulse 1.4s ease-in-out infinite;
  min-height: 220px;
}

.feed-skeleton-card-short {
  min-height: 160px;
}

.feed-skeleton-card-tall {
  min-height: 280px;
}

@keyframes menusm-skeleton-pulse {
  0% {
    opacity: 0.82;
  }
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-skeleton,
  .feed-skeleton-card {
    animation: none;
  }
}

.feed-post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feed-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.feed-post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feed-post-avatar-img {
  padding: 0;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.feed-post-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-avatar-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.feed-post-avatar-verified {
  box-shadow: 0 0 0 2px var(--accent);
}

.feed-verified-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 0 1px var(--surface)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  line-height: 1;
  z-index: 1;
}

.feed-post-premium {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow);
}

.feed-post-video {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: min(100vw, 420px);
  overflow: hidden;
  background: #111;
  line-height: 0;
}

.feed-post-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.feed-post-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #111;
  cursor: pointer;
}

.feed-video-btn {
  position: absolute;
  z-index: 2;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.15s, transform 0.15s;
}

.feed-video-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.feed-video-play {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.15rem;
  transform: translate(-50%, -50%);
  padding-left: 3px;
}

.feed-video-play.hidden,
.feed-video-pause.hidden {
  display: none;
}

.feed-video-mute {
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.85rem;
}

.feed-post-has-video .feed-post-subtitle {
  padding: 10px 14px 0;
  margin: 0;
}

.feed-post-has-video .feed-post-body {
  padding-top: 8px;
}

.feed-post-video + .feed-post-subtitle,
.feed-post-photo + .feed-post-subtitle {
  padding-top: 10px;
}

.feed-post-who {
  flex: 1;
  min-width: 0;
}

.feed-post-who strong {
  display: block;
  font-size: 0.9rem;
}

.feed-post-who span {
  font-size: 0.75rem;
  color: var(--muted);
}

.feed-post-platform {
  background: linear-gradient(165deg, var(--accent-soft) 0%, var(--surface) 58%);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.1), var(--shadow);
}

.feed-post-platform .feed-post-head {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.1), transparent);
}

.feed-post-platform .feed-post-avatar {
  box-shadow: 0 0 0 2px var(--accent);
}

.feed-post-who-platform {
  min-width: 0;
}

.feed-platform-name-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.25;
}

.feed-platform-name-line strong {
  display: inline;
  font-size: 0.9rem;
  color: var(--text);
}

.feed-platform-publishes {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.feed-post-platform .feed-verified-badge {
  color: var(--accent);
}

.feed-post-platform .feed-post-foot,
.feed-post-foot-platform {
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.06), rgba(255, 153, 0, 0.14));
  border-top-color: rgba(255, 153, 0, 0.22);
}

.feed-post-platform .feed-post-like {
  color: var(--accent);
  font-weight: 700;
}

.feed-post-platform .feed-post-like:not(.active) .fa-regular.fa-heart {
  color: var(--accent);
  opacity: 0.85;
}

.feed-post-platform .feed-post-like:hover,
.feed-post-platform .feed-post-like.active {
  color: #e11d48;
}

.feed-post-platform .feed-post-like.active .fa-heart {
  color: #e11d48;
}

.feed-post-ad {
  background: var(--surface);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.12), var(--shadow);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feed-post-ad .feed-ad-media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.feed-post-ad .feed-ad-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.feed-post-ad .feed-ad-media-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.feed-post-ad .feed-ad-media-video .feed-post-video {
  width: 100%;
  aspect-ratio: 1;
  max-height: none;
  margin: 0;
  border-radius: 0;
}

.feed-post-ad .feed-ad-media-video .feed-post-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feed-post-ad .feed-post-video .feed-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.feed-post-ad .feed-post-video.is-playing .feed-video-poster {
  opacity: 0;
  visibility: hidden;
}

.feed-post-ad .feed-post-video .feed-video-play,
.feed-post-ad .feed-post-video .feed-video-pause,
.feed-post-ad .feed-post-video .feed-video-mute {
  z-index: 3;
}

.feed-video-pause {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1rem;
  transform: translate(-50%, -50%);
}

.feed-post-ad .feed-video-pause {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1rem;
  transform: translate(-50%, -50%);
}

.feed-ad-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: var(--accent-soft);
  border-top: 1px solid rgba(255, 153, 0, 0.28);
}

.feed-ad-label {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}

.feed-ad-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

.feed-ad-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.feed-ad-cta i {
  font-size: 0.7rem;
}

.feed-post-head time {
  font-size: 0.75rem;
  color: var(--muted);
}

.feed-post-body {
  padding: 0 14px 12px;
}

.feed-post-subtitle {
  display: block;
  margin: 0;
  padding: 8px 14px 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
  color: var(--text);
}

.feed-post-text-plain {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.feed-stream-cols .feed-post-head {
  padding: 8px 8px 6px;
  gap: 6px;
  align-items: flex-start;
}

.feed-stream-cols .feed-post-avatar {
  width: 34px;
  height: 34px;
  font-size: 0.65rem;
}

.feed-stream-cols .feed-post-who strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.feed-stream-cols .feed-post-who span {
  font-size: 0.68rem;
}

.feed-stream-cols .feed-platform-name-line strong {
  font-size: 0.82rem;
}

.feed-stream-cols .feed-platform-publishes {
  font-size: 0.68rem;
}

.feed-stream-cols .feed-post-platform .feed-post-head {
  align-items: center;
}

.feed-stream-cols .feed-post-head time {
  font-size: 0.68rem;
  margin-left: auto;
  flex-shrink: 0;
}

.feed-stream-cols .feed-post-body {
  padding: 6px 8px 8px;
}

.feed-stream-cols .feed-post-subtitle {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  padding: 6px 8px 2px;
  color: var(--text);
}

.feed-stream-cols .feed-post-text-plain {
  font-size: 0.84rem;
  line-height: 1.4;
}

.feed-stream-cols .feed-post-photo {
  margin: 0;
  width: 100%;
  max-height: min(48vh, 320px);
}

.feed-stream-cols .feed-post-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-stream-cols .feed-post-video {
  max-height: min(48vh, 320px);
  aspect-ratio: 1;
}

.feed-stream-cols .feed-post-video video {
  max-height: none;
}

.feed-stream-cols .feed-post-has-video .feed-video-play {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.feed-stream-cols .feed-post-has-video .feed-post-subtitle {
  padding: 8px 8px 0;
  font-size: 0.82rem;
}

.feed-stream-cols .feed-post-has-video .feed-post-body {
  padding: 6px 8px 8px;
}

.feed-stream-cols .feed-post-foot {
  padding: 6px 8px;
}

.feed-stream-cols .feed-post-link {
  font-size: 0.75rem;
  gap: 4px;
}

.feed-stream-cols .feed-card-activity {
  padding: 0;
}

.feed-stream-cols .feed-card-activity .feed-post-head {
  padding: 5px 7px 4px;
}

.feed-stream-cols .feed-card-activity .feed-post-avatar {
  width: 24px;
  height: 24px;
  font-size: 0.52rem;
}

.feed-stream-cols .feed-card-activity .feed-post-who strong {
  font-size: 0.72rem;
}

.feed-stream-cols .feed-card-activity .feed-post-who span,
.feed-stream-cols .feed-card-activity .feed-post-head time {
  font-size: 0.6rem;
}

.feed-stream-cols .feed-card-activity .feed-post-photo img {
  aspect-ratio: 1;
  max-height: 180px;
  object-fit: contain;
  background: var(--surface-2);
}

.feed-stream-cols .feed-card-activity .feed-post-body {
  padding: 4px 7px 4px;
}

.feed-stream-cols .feed-card-activity .feed-activity-text {
  font-size: 0.72rem;
  margin-bottom: 4px;
  min-width: 0;
}

.feed-stream-cols .feed-card-activity .feed-activity-message {
  gap: 1px;
}

.feed-stream-cols .feed-card-activity .feed-action-icon {
  width: 16px;
  height: 16px;
  font-size: 0.52rem;
}

.feed-stream-cols .feed-card-activity .feed-post-foot {
  padding: 4px 7px;
}

.feed-stream-cols .feed-card-activity .feed-post-link {
  font-size: 0.68rem;
}

.feed-stream-cols .feed-card-activity .feed-activity-banner {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 4px 7px 4px;
}

.feed-stream-cols .feed-card-activity .feed-activity-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: grid;
  place-items: center;
}

.feed-stream-cols .feed-card-activity .feed-activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feed-stream-cols .feed-card-activity .feed-activity-thumb-empty {
  color: var(--muted);
  font-size: 1rem;
}

.feed-stream-cols .feed-card-activity .feed-activity-copy {
  min-width: 0;
}

.feed-post-photo {
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface-2);
  line-height: 0;
  aspect-ratio: 1 / 1;
  max-height: min(100vw, 420px);
}

.feed-post-body:empty {
  display: none;
}

.feed-post-foot {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.feed-post-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.feed-post-link {
  border: none;
  background: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feed-post-like {
  color: var(--muted);
}

.feed-post-like .fa-heart {
  font-size: 1.05em;
  line-height: 1;
}

.feed-post-like:not(.active) .fa-regular.fa-heart {
  color: var(--muted);
}

.feed-post-like:hover {
  color: #e11d48;
}

.feed-post-like:hover:not(.active) .fa-regular.fa-heart {
  color: #e11d48;
}

.feed-post-like.active {
  color: #e11d48;
}

.feed-post-like.active .fa-solid.fa-heart {
  color: #e11d48;
}

.feed-post-like:disabled {
  opacity: 0.65;
  cursor: wait;
}

.feed-like-count {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 0.75em;
}

.feed-post-avatar {
  text-decoration: none;
  color: inherit;
}

.feed-post-who a {
  color: inherit;
  text-decoration: none;
}

.feed-legend-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
}

.tag-reel { background: rgba(99, 102, 241, 0.12); color: #6366f1; }
.tag-venue { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.tag-menu { background: var(--accent-soft); color: var(--accent); }
.tag-offer { background: rgba(245, 158, 11, 0.14); color: #d97706; }
.tag-price { background: rgba(236, 72, 153, 0.12); color: #db2777; }
.tag-discount { background: rgba(220, 38, 38, 0.12); color: #dc2626; }

.feed-card-activity .feed-post-body {
  padding: 8px 10px 4px;
}

.feed-card-activity .feed-post-head {
  padding: 6px 8px 4px;
  gap: 6px;
}

.feed-card-activity .feed-post-avatar {
  width: 28px;
  height: 28px;
  font-size: 0.58rem;
}

.feed-card-activity .feed-post-who strong {
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-card-activity .feed-post-who span,
.feed-card-activity .feed-post-head time {
  font-size: 0.64rem;
}

.feed-card-activity .feed-post-photo img {
  aspect-ratio: 1.15;
}

.feed-card-activity .feed-activity-banner {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 6px 8px 5px;
}

.feed-card-activity .feed-activity-thumb {
  width: 74px;
  height: 74px;
  border-radius: 9px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: grid;
  place-items: center;
}

.feed-card-activity .feed-activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feed-card-activity .feed-activity-thumb-empty {
  color: var(--muted);
  font-size: 1.1rem;
}

.feed-card-activity .feed-activity-copy {
  min-width: 0;
}

.feed-card-activity .feed-activity-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 0.84rem;
  line-height: 1.35;
  min-width: 0;
}

.feed-card-activity .feed-activity-text .feed-action-icon {
  flex-shrink: 0;
  margin-right: 0;
}

.feed-activity-message {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-activity-line-muted {
  font-size: 0.85em;
  color: var(--muted);
  font-weight: 600;
}

.feed-activity-dish {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}

.feed-activity-detail,
.feed-activity-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em 0.35em;
  font-size: 0.92em;
}

.feed-activity-prices .feed-price-arrow {
  color: var(--muted);
  font-size: 0.85em;
}

.feed-new-price-inline {
  font-weight: 700;
}

.feed-old-price-inline {
  color: var(--muted);
  text-decoration: line-through;
}

.feed-card-avatar-img {
  padding: 0;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-decoration: none;
}

.feed-card-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-card-activity .feed-action-icon {
  width: 20px;
  height: 20px;
  font-size: 0.62rem;
}

.feed-card-activity .feed-post-foot {
  padding: 6px 8px;
}

.feed-card-activity .feed-post-link {
  font-size: 0.74rem;
}

.feed-section-discount .feed-action-icon {
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}

.feed-discount-price {
  color: #dc2626;
  font-weight: 700;
}

.feed-old-price {
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 640px) {
  .feed-stream.feed-stream-cols,
  .feed-stream-cols {
    flex-direction: row;
    gap: 4px;
  }

  .feed-stream-col {
    gap: 4px;
  }

  .feed-stream-cols .feed-post-photo {
    max-height: min(46vw, 220px);
  }

  .feed-stream-cols .feed-post-photo img {
    height: 100%;
    object-fit: cover;
  }

  .feed-stream-cols .feed-post-video {
    max-height: min(46vw, 220px);
    aspect-ratio: 1;
  }

  .feed-post-openable {
    cursor: pointer;
  }

  .feed-post-openable .feed-post-body {
    display: none;
  }

  .feed-post-openable .feed-post-subtitle {
    margin: 0;
    padding: 4px 8px 0;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .feed-post-openable .feed-post-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    padding: 4px 6px 6px;
  }

  .feed-post-openable .feed-post-link {
    font-size: 0.68rem;
    gap: 3px;
    padding: 2px 0;
  }

  .feed-post-openable .feed-post-like .feed-like-count {
    font-size: 0.68rem;
  }

  .feed-post-openable .feed-post-video .feed-video-mute {
    display: none;
  }

  .feed-post-openable .feed-post-video .feed-video-play {
    display: grid;
    pointer-events: none;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.52);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }

  .feed-post-openable .feed-post-video .feed-video-play.hidden {
    display: grid;
  }

  .feed-post-openable .feed-post-video video {
    pointer-events: none;
  }

  .feed-post-openable.feed-post-text:not(:has(.feed-post-photo, .feed-post-video)) .feed-post-body {
    display: block;
    padding: 4px 8px 6px;
  }

  .feed-post-openable.feed-post-text:not(:has(.feed-post-photo, .feed-post-video)) .feed-post-text-plain {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .feed-post-openable.feed-card-activity .feed-post-foot {
    display: flex;
    padding: 4px 6px 6px;
  }

  .feed-post-openable.feed-card-activity .feed-activity-copy .feed-activity-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .feed-card-activity .feed-activity-banner,
  .feed-stream-cols .feed-card-activity .feed-activity-banner {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 6px;
    align-items: start;
  }

  .feed-card-activity .feed-activity-thumb,
  .feed-stream-cols .feed-card-activity .feed-activity-thumb {
    width: 52px;
    height: 52px;
  }

  .feed-card-activity .feed-activity-text,
  .feed-stream-cols .feed-card-activity .feed-activity-text {
    font-size: 0.72rem;
  }
}

/* Feed / venue post detail popup (index + venue) */
.venue-post-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.venue-post-modal.hidden {
  display: none;
}

.venue-post-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.venue-post-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.venue-post-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.venue-post-modal-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.venue-post-modal-post-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.venue-post-modal-post-title.hidden {
  display: none;
}

.venue-post-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.venue-post-modal-media-wrap {
  margin: 0 0 10px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}

.venue-post-modal-media-wrap.hidden,
.venue-post-modal-video-wrap.hidden {
  display: none;
}

.venue-post-modal-media-wrap img,
.venue-post-modal-video-wrap.feed-post-video {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  max-height: min(92vw, 420px);
  object-fit: cover;
  min-height: 160px;
}

.venue-post-modal-media-wrap img {
  object-fit: cover;
  background: var(--surface-2);
}

.venue-post-modal-video-wrap.feed-post-video {
  margin: 0;
  overflow: hidden;
}

.venue-post-modal-time {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.venue-post-modal-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.venue-post-modal-actions {
  margin-top: 14px;
}

.venue-post-modal-actions.hidden {
  display: none;
}

@media (max-width: 640px) {
  .venue-post-modal {
    padding: 0;
    align-items: flex-end;
  }

  .venue-post-modal-card {
    width: 100%;
    max-height: min(92vh, 720px);
    border-radius: var(--radius) var(--radius) 0 0;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .venue-post-modal-media-wrap img,
  .venue-post-modal-video-wrap.feed-post-video {
    max-height: min(68vh, 480px);
    min-height: 200px;
  }
}

.feed-empty {
  text-align: center;
  padding: 40px 16px;
  color: var(--muted);
}

.feed-empty.hidden {
  display: none;
}

.site-footer-minimal {
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-minimal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-minimal-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-end;
}

.footer-minimal-inner a {
  color: var(--muted);
}

.footer-minimal-inner a:hover {
  color: var(--text);
}

/* Story modal + stories page */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.story-modal.hidden {
  display: none;
}

.site-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 560;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.site-dialog-layer.hidden {
  display: none;
}

.site-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.site-dialog-card {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 24px));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.site-dialog-title {
  margin: 0 0 6px;
  font-size: 1rem;
}

.site-dialog-message {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.site-dialog-input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 0 12px;
  margin-bottom: 12px;
  font: inherit;
}

.site-dialog-input.hidden {
  display: none;
}

.site-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.btn-danger-soft {
  border-color: rgba(185, 28, 28, 0.35) !important;
  background: rgba(185, 28, 28, 0.1) !important;
  color: #b91c1c !important;
}

body.modal-open {
  overflow: hidden;
}

.story-modal-card {
  width: min(420px, 100%);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.story-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.story-modal-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.story-modal-close {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
}

.story-modal-note {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.story-modal-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.story-modal-card input,
.story-modal-card select,
.story-modal-card textarea {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.story-modal-card textarea {
  resize: vertical;
  min-height: 96px;
}

.story-modal-status {
  margin: 10px 0 0;
  font-size: 0.78rem;
}

/* Post upload modal */
.post-modal-card .story-modal-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-modal-card {
  max-height: min(90dvh, 640px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 auto;
}

.post-modal-card .story-modal-head,
.post-modal-card > .story-modal-note {
  flex-shrink: 0;
}

.post-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.post-modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.post-modal-field label,
.post-modal-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.post-modal-field select,
.post-modal-field textarea,
.post-modal-field input[type="text"] {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.post-modal-field textarea {
  resize: vertical;
  min-height: 88px;
  max-height: 160px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.post-modal-card .post-upload-zone {
  min-height: 80px;
  padding: 12px;
}

.post-modal-field input[type="text"] {
  font-size: 1rem;
  font-weight: 600;
}

.post-field-hint {
  margin: 0 0 6px;
  font-size: 0.8rem;
  color: var(--muted, #6b7280);
  line-height: 1.35;
}

.post-char-counter {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
  text-align: right;
}

.post-char-counter.limit {
  color: #b45309;
  font-weight: 600;
}

.post-upload-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  padding: 16px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}

.post-upload-zone:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.post-upload-zone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.post-upload-zone i {
  font-size: 1.5rem;
  color: var(--muted);
}

.post-upload-zone span {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-modal-submit {
  width: 100%;
  margin-top: 4px;
}

.post-modal-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.crop-modal-layer {
  z-index: 450;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
  padding-top: max(16px, env(safe-area-inset-top, 0px));
  padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
}

.crop-modal-card {
  width: min(560px, 100%);
}

.crop-modal-layout {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 184px);
  gap: 12px;
  align-items: start;
}

.crop-modal-body {
  max-height: min(52vh, 360px);
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

.crop-modal-body img {
  max-width: 100%;
  display: block;
}

.crop-modal-preview-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.crop-modal-preview-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.crop-modal-note {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.crop-modal-preview-box {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.crop-modal-preview-box.crop-preview-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--bg);
}

.crop-modal-preview-box.crop-preview-cover {
  width: 168px;
  height: 56px;
  border-radius: 10px;
}

.crop-modal-preview-box.crop-preview-square {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-sm);
}

.crop-modal-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crop-modal-preview-size {
  font-size: 0.68rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .crop-modal-layout {
    grid-template-columns: 1fr;
  }

  .crop-modal-preview-wrap {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.post-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.post-upload-placeholder.hidden {
  display: none;
}

.post-upload-preview {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}

.post-upload-preview.hidden {
  display: none;
}

.post-upload-clear {
  margin-top: 8px;
}

.post-upload-zone:has(.post-upload-preview:not(.hidden)) {
  border-style: solid;
  min-height: auto;
  padding: 12px;
}

.post-video-frame-preview {
  max-width: 100%;
  width: auto;
  max-height: 200px;
  height: auto;
  object-fit: contain;
}

.post-upload-zone-video:has(.post-video-prep:not(.hidden)) {
  pointer-events: none;
}

.post-video-prep {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 55%, transparent);
  border-radius: inherit;
}

.post-video-prep.hidden {
  display: none;
}

.post-video-prep-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.post-video-prep-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.2s ease;
}

.post-video-prep-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.owner-post-video-preview {
  margin-top: 10px;
  max-width: 220px;
}

.owner-post-video-preview.hidden {
  display: none;
}

.stories-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.story-feed-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.story-feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-feed-head strong {
  display: block;
  font-size: 0.9rem;
}

.story-feed-head span {
  font-size: 0.75rem;
  color: var(--muted);
}

.story-feed-head time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
}

.story-feed-video {
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
  display: block;
}

.story-feed-placeholder {
  aspect-ratio: 1 / 1;
  max-height: 420px;
  background: linear-gradient(160deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
}

.story-feed-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.82rem;
}

.story-feed-foot a {
  color: var(--accent);
  font-weight: 700;
}

.story-back-link {
  color: var(--text);
  font-size: 1rem;
  margin-right: 8px;
}

html.site-owner-pending [data-site-owner-line] {
  visibility: hidden;
  min-height: 1.25em;
}

html.site-owner-pending [data-site-contact-email] {
  visibility: hidden;
}

html.site-owner-pending .contact-social-block {
  visibility: hidden;
}

/* Public site — discourage saving images/videos via drag or context menu */
img,
video,
.feed-post-video video,
.venue-cover,
.home-hero-banner {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

html.site-owner-ready [data-site-owner-line].hidden {
  display: none;
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  color: var(--text);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.1);
}

.cookie-consent-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.cookie-consent-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.cookie-consent-body {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.cookie-consent-link {
  flex: 1 1 100%;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-link:hover {
  color: var(--accent);
}

.cookie-consent .btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.14);
}

.cookie-consent .btn-ghost:hover {
  background: var(--ral-9003);
  border-color: rgba(255, 153, 0, 0.45);
  color: var(--accent);
}

.cookie-consent .btn-primary {
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .cookie-consent-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 24px;
  }

  .cookie-consent-title,
  .cookie-consent-body {
    grid-column: 1;
  }

  .cookie-consent-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .cookie-consent-link {
    flex: 0 1 auto;
    margin-right: auto;
  }
}
