:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #667085;
  --line: #d8dee8;
  --soft: #050505;
  --paper: #ffffff;
  --accent: #6b4bff;
  --accent-strong: #5838e8;
  --obiop-orange: #6b4bff;
  --obiop-orange-soft: #b7a6ff;
  --platform-topbar: #000000;
  --platform-action: #6b4bff;
  --warn: #b42318;
  --category-band: #a1704eb8;
  --menu-accent: #a1704e;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 126px;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.text-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 32px;
  background: var(--platform-topbar);
  color: #f8fafc;
  box-shadow: 0 12px 34px rgba(31, 41, 51, 0.12);
}

.detail-mode .hero-slider,
.detail-mode .story-rail,
.detail-mode .ad-banner,
.detail-mode .category-action-row {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-logo-image {
  display: block;
  width: clamp(178px, 35vw, 292px);
  max-height: 64px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f4b942;
  background-position: center;
  background-size: cover;
  color: #1f2933;
  font-weight: 900;
}

.brand-mark.has-logo {
  background-color: #ffffff;
  color: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: #b7c0cc;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-profile-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.profile-notification-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.profile-notification-badge.hidden {
  display: none;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.icon-button:hover,
.icon-button.active {
  background: rgba(255, 255, 255, 0.16);
}

.search-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(45deg);
}

.lock-icon {
  position: relative;
  display: block;
  width: 19px;
  height: 15px;
  border-radius: 4px;
  background: #ffffff;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -10px;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.lock-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: #1f2933;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 23px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.theme-toggle-button {
  color: inherit;
}

.theme-icon {
  display: none;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.theme-toggle-button[data-theme-mode="dark"] .theme-icon-moon,
.theme-toggle-button[data-theme-mode="light"] .theme-icon-sun {
  display: block;
}

.main {
  padding: 32px;
}

html.public-mobile-shell-preload body,
body.public-mobile-shell {
  background: #000000;
}

html.public-mobile-shell-preload .app-shell,
body.public-mobile-shell .app-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--soft);
  box-shadow:
    0 0 0 1px rgba(31, 41, 51, 0.08),
    0 28px 80px rgba(31, 41, 51, 0.16);
}

html.public-mobile-shell-preload .topbar,
body.public-mobile-shell .topbar {
  justify-content: flex-start;
  gap: 10px;
  min-height: 76px;
  padding: 12px 14px;
}

body.public-venue-shell .topbar {
  position: static;
  min-height: 62px;
  padding: 8px 14px;
  background: #ffffff;
  color: #121111;
  box-shadow: none;
}

body.public-venue-shell .brand {
  flex: 1 1 auto;
}

body.public-venue-shell .top-actions {
  gap: 2px;
  margin-left: 4px;
}

body.public-venue-shell .brand-mark.has-logo {
  width: min(54vw, 220px);
  height: 44px;
  border-radius: 0;
  background-color: transparent;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}

body.public-venue-shell .brand-mark:not(.has-logo) {
  background: var(--obiop-orange);
  color: #ffffff;
}

body.public-venue-shell .icon-button {
  width: 36px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #121111;
}

body.public-venue-shell .search-icon {
  border-color: currentColor;
}

body.public-venue-shell .search-icon::after,
body.public-venue-shell .hamburger-icon,
body.public-venue-shell .hamburger-icon::before,
body.public-venue-shell .hamburger-icon::after {
  background: currentColor;
}

body.public-venue-shell .main {
  padding: 0 18px 118px;
}

html.public-mobile-shell-preload .main,
body.public-mobile-shell .main {
  padding: 14px 18px 118px;
}

body.public-venue-shell .main {
  padding-top: 0;
}

html.public-mobile-shell-preload .view,
body.public-mobile-shell .view {
  max-width: 100%;
}

html.public-mobile-shell-preload .bottom-nav,
html.public-mobile-shell-preload .platform-bottom-nav,
body.public-mobile-shell .bottom-nav,
body.public-mobile-shell .platform-bottom-nav {
  width: min(100%, 430px);
}

html.public-mobile-shell-preload .platform-logo-image,
body.public-mobile-shell .platform-logo-image {
  width: 164px;
  max-height: 42px;
}

html.public-mobile-shell-preload .brand,
body.public-mobile-shell .brand {
  margin-right: auto;
  min-width: 0;
}

html.public-mobile-shell-preload #headerMenuToggle,
body.public-mobile-shell #headerMenuToggle {
  color: #111827;
}

html.public-mobile-shell-preload #headerMenuToggle .hamburger-icon,
html.public-mobile-shell-preload #headerMenuToggle .hamburger-icon::before,
html.public-mobile-shell-preload #headerMenuToggle .hamburger-icon::after,
body.public-mobile-shell #headerMenuToggle .hamburger-icon,
body.public-mobile-shell #headerMenuToggle .hamburger-icon::before,
body.public-mobile-shell #headerMenuToggle .hamburger-icon::after {
  background: #111827 !important;
}

html.public-mobile-shell-preload .brand strong,
html.public-mobile-shell-preload .brand small,
body.public-mobile-shell .brand strong,
body.public-mobile-shell .brand small {
  max-width: 188px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.public-mobile-shell-preload .brand-mark,
html.public-mobile-shell-preload .icon-button,
body.public-mobile-shell .brand-mark,
body.public-mobile-shell .icon-button {
  width: 42px;
  height: 42px;
}

html.public-mobile-shell-preload .platform-hero,
body.public-mobile-shell .platform-hero {
  min-height: 172px;
  padding: 22px;
}

html.public-mobile-shell-preload .platform-hero h1,
body.public-mobile-shell .platform-hero h1 {
  font-size: 36px;
}

html.public-mobile-shell-preload .platform-hero p:last-child,
body.public-mobile-shell .platform-hero p:last-child {
  font-size: 15px;
}

html.public-mobile-shell-preload .platform-section-title h2,
body.public-mobile-shell .platform-section-title h2 {
  font-size: 24px;
}

html.public-mobile-shell-preload .venue-rail,
body.public-mobile-shell .venue-rail {
  grid-auto-columns: 156px;
  gap: 12px;
}

html.public-mobile-shell-preload .venue-card-caption,
body.public-mobile-shell .venue-card-caption {
  padding: 14px 12px 12px;
}

html.public-mobile-shell-preload .venue-card-caption strong,
body.public-mobile-shell .venue-card-caption strong {
  font-size: 17px;
}

html.public-mobile-shell-preload .venue-card-meta,
body.public-mobile-shell .venue-card-meta {
  padding: 10px 2px 0;
}

html.public-mobile-shell-preload .venue-card-meta strong,
body.public-mobile-shell .venue-card-meta strong {
  font-size: 17px;
}

html.public-mobile-shell-preload .platform-shortcuts,
html.public-mobile-shell-preload .category-grid,
html.public-mobile-shell-preload .menu-grid,
html.public-mobile-shell-preload .menu-grid.shop-list,
html.public-mobile-shell-preload .category-featured-grid,
body.public-mobile-shell .platform-shortcuts,
body.public-mobile-shell .category-grid,
body.public-mobile-shell .menu-grid,
body.public-mobile-shell .menu-grid.shop-list,
body.public-mobile-shell .category-featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html.public-mobile-shell-preload .platform-shortcut,
body.public-mobile-shell .platform-shortcut {
  min-height: 92px;
}

html.public-mobile-shell-preload .category-grid,
html.public-mobile-shell-preload .menu-grid,
body.public-mobile-shell .category-grid,
body.public-mobile-shell .menu-grid {
  gap: 10px;
}

html.public-mobile-shell-preload .campaign-countdown,
body.public-mobile-shell .campaign-countdown {
  grid-template-columns: auto minmax(0, 1fr);
}

html.public-mobile-shell-preload .campaign-countdown strong,
body.public-mobile-shell .campaign-countdown strong {
  grid-column: 1 / -1;
  width: fit-content;
}

html.public-mobile-shell-preload .menu-item-body,
body.public-mobile-shell .menu-item-body {
  padding: 10px;
}

html.public-mobile-shell-preload .menu-item-title,
body.public-mobile-shell .menu-item-title {
  display: grid;
  gap: 4px;
}

html.public-mobile-shell-preload .menu-item h3,
body.public-mobile-shell .menu-item h3 {
  font-size: 15px;
  line-height: 1.18;
}

html.public-mobile-shell-preload .price,
body.public-mobile-shell .price {
  font-size: 13px;
}

html.public-mobile-shell-preload .menu-item p,
body.public-mobile-shell .menu-item p {
  display: none;
}

html.public-mobile-shell-preload .category-card-title,
body.public-mobile-shell .category-card-title {
  padding: 12px 8px;
  font-size: 15px;
}

html.public-mobile-shell-preload .hero-slider,
body.public-mobile-shell .hero-slider {
  margin-bottom: 18px;
}

html.public-mobile-shell-preload .hero-slides,
body.public-mobile-shell .hero-slides {
  aspect-ratio: 16 / 9;
}

html.public-mobile-shell-preload .story-list,
body.public-mobile-shell .story-list {
  gap: 9px;
}

html.public-mobile-shell-preload .story-chip,
body.public-mobile-shell .story-chip {
  width: 80px;
}

html.public-mobile-shell-preload .story-ring,
body.public-mobile-shell .story-ring {
  width: 68px;
  height: 68px;
}

html.public-mobile-shell-preload .story-ring img,
body.public-mobile-shell .story-ring img {
  width: 56px;
  height: 56px;
}

html.public-mobile-shell-preload .story-rail,
body.public-mobile-shell .story-rail {
  margin-bottom: 14px;
  padding-bottom: 6px;
}

html.public-mobile-shell-preload .ad-banner,
body.public-mobile-shell .ad-banner {
  margin-bottom: 14px;
}

html.public-mobile-shell-preload .top-products,
body.public-mobile-shell .top-products {
  margin-top: 14px;
}

html.public-mobile-shell-preload .ad-slides,
body.public-mobile-shell .ad-slides {
  height: auto;
  aspect-ratio: 16 / 7;
}

html.public-mobile-shell-preload .hero-caption,
body.public-mobile-shell .hero-caption {
  padding: 12px 14px;
}

@media (min-width: 760px) {
  html.public-mobile-shell-preload body,
  body.public-mobile-shell {
    background: #000000;
  }

  html.public-mobile-shell-preload .app-shell,
  body.public-mobile-shell .app-shell {
    width: 430px;
    min-height: 100vh;
    margin: 0 auto;
    background: var(--soft);
    box-shadow:
      0 0 0 1px rgba(31, 41, 51, 0.08),
      0 28px 80px rgba(31, 41, 51, 0.16);
  }

  html.public-mobile-shell-preload .topbar,
  body.public-mobile-shell .topbar {
    min-height: 76px;
    padding: 12px 14px;
  }

  html.public-mobile-shell-preload .platform-logo-image,
  body.public-mobile-shell .platform-logo-image {
    width: 164px;
    max-height: 42px;
  }

  html.public-mobile-shell-preload .brand,
  body.public-mobile-shell .brand {
    min-width: 0;
  }

  html.public-mobile-shell-preload:not(.public-venue-shell) .brand,
  body.public-mobile-shell:not(.public-venue-shell) .brand {
    margin-left: -10px;
  }

  html.public-mobile-shell-preload .brand strong,
  html.public-mobile-shell-preload .brand small,
  body.public-mobile-shell .brand strong,
  body.public-mobile-shell .brand small {
    max-width: 188px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html.public-mobile-shell-preload .main,
  body.public-mobile-shell .main {
    padding: 14px 18px 118px;
  }

  html.public-mobile-shell-preload .view,
  body.public-mobile-shell .view {
    max-width: 100%;
  }

  html.public-mobile-shell-preload .bottom-nav,
  html.public-mobile-shell-preload .platform-bottom-nav,
  body.public-mobile-shell .bottom-nav,
  body.public-mobile-shell .platform-bottom-nav {
    width: 430px;
  }

  html.public-mobile-shell-preload .brand-mark,
  html.public-mobile-shell-preload .icon-button,
  body.public-mobile-shell .brand-mark,
  body.public-mobile-shell .icon-button {
    width: 42px;
    height: 42px;
  }

  body.public-mobile-shell .platform-hero {
    min-height: 172px;
    padding: 22px;
  }

  body.public-mobile-shell .platform-hero h1 {
    font-size: 36px;
  }

  body.public-mobile-shell .platform-hero p:last-child {
    font-size: 15px;
  }

  body.public-mobile-shell .platform-section-title h2 {
    font-size: 24px;
  }

  body.public-mobile-shell .venue-rail {
    grid-auto-columns: 156px;
    gap: 12px;
  }

  body.public-mobile-shell .venue-card-caption {
    padding: 14px 12px 12px;
  }

  body.public-mobile-shell .venue-card-caption strong {
    font-size: 17px;
  }

  body.public-mobile-shell .platform-shortcuts,
  body.public-mobile-shell .category-grid,
  body.public-mobile-shell .menu-grid,
  body.public-mobile-shell .menu-grid.shop-list,
  body.public-mobile-shell .category-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.public-mobile-shell .platform-shortcut {
    min-height: 92px;
  }

  body.public-mobile-shell .category-grid,
  body.public-mobile-shell .menu-grid {
    gap: 10px;
  }

  body.public-mobile-shell .campaign-countdown {
    grid-template-columns: auto minmax(0, 1fr);
  }

  body.public-mobile-shell .campaign-countdown strong {
    grid-column: 1 / -1;
    width: fit-content;
  }

  body.public-mobile-shell .menu-item-body {
    padding: 10px;
  }

  body.public-mobile-shell .menu-item-title {
    display: grid;
    gap: 4px;
  }

  body.public-mobile-shell .menu-item h3 {
    font-size: 15px;
    line-height: 1.18;
  }

  body.public-mobile-shell .price {
    font-size: 13px;
  }

  body.public-mobile-shell .menu-item p {
    display: none;
  }

  body.public-mobile-shell .category-card-title {
    padding: 12px 8px;
    font-size: 15px;
  }

  body.public-mobile-shell .hero-slider {
    margin-bottom: 18px;
  }

  body.public-mobile-shell .hero-slides {
    aspect-ratio: 16 / 7;
  }

  body.public-mobile-shell .story-list {
    gap: 9px;
  }

  body.public-mobile-shell .story-chip {
    width: 80px;
  }

  body.public-mobile-shell .story-ring {
    width: 68px;
    height: 68px;
  }

  body.public-mobile-shell .story-rail {
    margin-bottom: 14px;
    padding-bottom: 6px;
  }

  body.public-mobile-shell .ad-banner {
    margin-bottom: 14px;
  }

  body.public-mobile-shell .top-products {
    margin-top: 14px;
  }

  body.public-mobile-shell .ad-slides {
    height: auto;
    aspect-ratio: 16 / 7;
  }

  body.public-mobile-shell .hero-caption {
    padding: 12px 14px;
  }
}

.platform-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 8px;
  color: #fff;
  min-height: 190px;
  padding: 28px;
  display: grid;
  align-items: end;
  box-shadow: 0 20px 44px rgba(31, 41, 55, 0.16);
}

.platform-hero h1 {
  margin: 4px 0 8px;
  max-width: 620px;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1;
}

.platform-hero p:last-child {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

body.platform-campaign-only #homeView > .platform-hero,
body.platform-campaign-only #homeView > .platform-home-intro,
body.platform-campaign-only #homeView > .platform-home-search,
body.platform-campaign-only #platformLocationCard,
body.platform-campaign-only #homeView > .platform-section {
  display: none;
}

body.platform-flow-only #homeView > .platform-home-intro,
body.platform-flow-only #homeView > .platform-home-search,
body.platform-flow-only #platformLocationCard {
  display: none;
}

body.platform-home-route #searchToggle {
  display: none;
}

.platform-home-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: clamp(150px, 34vw, 190px);
  overflow: hidden;
  padding: 18px 0 0;
}

.platform-location-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.platform-home-intro h1 {
  margin: 0;
  max-width: 245px;
  color: var(--ink);
  font-size: 25px;
  line-height: 0.98;
  letter-spacing: 0;
}

.platform-home-copy {
  position: relative;
  z-index: 2;
  max-width: 58%;
}

.platform-home-copy p {
  margin: 12px 0 0;
  max-width: 270px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.34;
  font-weight: 400;
}

.platform-home-mascot {
  position: absolute;
  right: -18px;
  top: 0;
  z-index: 1;
  width: min(43vw, 226px);
  max-height: 185px;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
  user-select: none;
}

.platform-home-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.platform-home-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.08);
}

.platform-home-search-box .search-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-color: #8a94a6;
}

.platform-home-search-box .search-icon::after {
  background: #8a94a6;
}

.platform-home-search-box em {
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-home-filter-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 222, 232, 0.8);
  border-radius: 50%;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.08);
}

.platform-home-filter-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.platform-home-category-strip {
  margin-top: 18px;
  overflow: hidden;
}

.platform-home-category-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.platform-home-category-rail::-webkit-scrollbar {
  display: none;
}

.platform-home-category-item {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 64px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

body.theme-dark .platform-home-category-item {
  color: #ffffff;
}

.platform-home-category-item img {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.12);
}

.platform-promotion-section {
  margin-top: 24px;
}

.platform-promotion-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 44%);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.platform-promotion-rail::-webkit-scrollbar {
  display: none;
}

.platform-promo-card {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 1.45 / 1;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  padding: 0;
  background: #ffffff;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.12);
}

.platform-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.platform-promo-card span {
  display: none;
}

.platform-promo-card strong {
  font-size: 18px;
  line-height: 1.13;
}

.platform-promo-card em {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--obiop-orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.platform-promotion-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 10px;
}

.platform-promotion-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(107, 75, 255, 0.28);
}

.platform-promotion-dots span.active {
  width: 18px;
  background: var(--platform-action, #6b4bff);
}

.platform-promotion-section .platform-section-title {
  align-items: start;
}

.platform-promotion-section .platform-section-title h2 {
  font-size: 19px;
  line-height: 1.08;
}

.platform-promotion-section .platform-section-title p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.platform-qr-venue-rail,
.platform-popular-menu-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.platform-qr-venue-rail::-webkit-scrollbar,
.platform-popular-menu-rail::-webkit-scrollbar {
  display: none;
}

.platform-qr-venue-rail {
  grid-auto-columns: 270px;
}

.platform-qr-venue-card,
.platform-popular-menu-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.1);
}

.platform-qr-venue-media {
  position: relative;
  display: block;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  background: #eef2f7;
  cursor: pointer;
}

.platform-qr-venue-media img,
.platform-popular-menu-media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.platform-qr-venue-media img {
  height: 100%;
}

.platform-qr-menu-badge,
.platform-venue-status-badge,
.platform-qr-venue-facts span,
.platform-qr-venue-obip strong {
  border-radius: 999px;
}

.platform-qr-menu-badge,
.platform-venue-status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.platform-qr-menu-badge {
  background: var(--platform-action, #6b4bff);
}

.platform-venue-status-badge.is-open {
  background: #dcfce7;
  color: #16a34a;
}

.platform-venue-status-badge.is-closed {
  background: #fee2e2;
  color: #ef4444;
}

.platform-qr-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #17202c;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.16);
}

.platform-qr-favorite.active {
  color: var(--platform-action, #6b4bff);
}

.platform-qr-favorite svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

.platform-qr-favorite.active svg {
  fill: currentColor;
}

.platform-qr-venue-body {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.platform-qr-venue-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.platform-qr-venue-title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.platform-qr-venue-body p,
.platform-qr-venue-facts,
.platform-qr-venue-obip {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.platform-qr-venue-body p,
.platform-qr-venue-facts,
.platform-qr-venue-obip,
.platform-qr-venue-obip strong {
  font-weight: 400;
}

.platform-qr-venue-actions a {
  font-weight: 700;
}

.platform-qr-venue-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.platform-qr-venue-facts span {
  padding: 4px 7px;
}

.platform-qr-venue-facts .is-open {
  background: #dcfce7;
  color: #16a34a;
}

.platform-qr-venue-facts .is-closed {
  background: #fee2e2;
  color: #ef4444;
}

.platform-qr-venue-facts em {
  font-style: normal;
}

.platform-qr-venue-obip {
  display: flex;
  align-items: center;
  gap: 6px;
}

.platform-qr-venue-obip strong {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-size: 10px;
}

.platform-qr-venue-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.platform-qr-venue-actions a,
.platform-popular-menu-card > a:not(.platform-popular-menu-media),
.platform-home-loyalty-summary a {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.platform-qr-venue-actions a {
  min-height: 38px;
  border: 1px solid var(--platform-action, #6b4bff);
  border-radius: 8px;
  color: var(--platform-action, #6b4bff);
  font-size: 13px;
}

.platform-qr-venue-actions a:last-child {
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
}

.platform-popular-menu-rail {
  grid-auto-columns: minmax(158px, 45.6%);
}

.platform-popular-menu-card {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.platform-popular-menu-media {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #eef2f7;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.platform-popular-menu-media img {
  aspect-ratio: 1;
  border-radius: inherit;
}

.platform-popular-menu-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}

.platform-popular-menu-title-link {
  display: inline;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.platform-popular-menu-title-link:hover,
.platform-popular-menu-title-link:focus,
.platform-popular-menu-title-link:active {
  background: transparent;
  color: inherit;
  outline: 0;
}

.platform-popular-menu-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.platform-popular-menu-card em {
  color: #15937f;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.platform-popular-menu-card > a:not(.platform-popular-menu-media) {
  min-height: 34px;
  border-radius: 8px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.platform-home-loyalty-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(107, 75, 255, 0.18);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(107, 75, 255, 0.16), rgba(255, 255, 255, 0.92));
}

.platform-home-loyalty-ring {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.12);
}

.platform-home-loyalty-ring span {
  font-size: 24px;
}

.platform-home-loyalty-ring em {
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.platform-home-loyalty-summary strong,
.platform-home-loyalty-summary b,
.platform-home-loyalty-summary small {
  display: block;
}

.platform-home-loyalty-summary strong {
  color: var(--ink);
  font-size: 14px;
}

.platform-home-loyalty-summary b {
  color: var(--platform-action, #6b4bff);
  font-size: 24px;
  line-height: 1.1;
}

.platform-home-loyalty-summary small {
  color: var(--muted);
  font-size: 12px;
}

.platform-home-loyalty-progress {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.platform-home-loyalty-progress i {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(107, 75, 255, 0.18);
}

.platform-home-loyalty-progress mark {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--platform-action, #6b4bff);
}

.platform-home-loyalty-summary a,
.platform-home-loyalty-summary button {
  grid-column: 1 / -1;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.platform-business-join-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-radius: 16px;
  padding: 14px;
  background:
    radial-gradient(circle at 82% 12%, rgba(107, 75, 255, 0.13) 0 38px, transparent 39px),
    radial-gradient(circle at 60% 100%, rgba(255, 255, 255, 0.88) 0 34px, transparent 35px),
    linear-gradient(100deg, #f0e9ff 0%, #efe8ff 52%, #e7ddff 100%);
  box-shadow: 0 14px 32px rgba(107, 75, 255, 0.12);
}

.platform-business-join-strip::after {
  content: "+  +  +";
  position: absolute;
  right: 84px;
  bottom: 6px;
  color: rgba(107, 75, 255, 0.18);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 10px;
  pointer-events: none;
}

.platform-business-join-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--platform-action, #6b4bff);
}

.platform-business-join-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.platform-business-join-strip div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.platform-business-join-strip strong,
.platform-business-join-strip p {
  margin: 0;
}

.platform-business-join-strip strong {
  display: block;
  color: #1f2937;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.platform-business-join-strip p {
  margin-top: 4px;
  color: #4b5563;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
}

.platform-business-join-strip a {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 10px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(107, 75, 255, 0.22);
}

.platform-business-join-strip a span {
  font-size: 18px;
  line-height: 1;
}

@media (min-width: 420px) {
  .platform-business-join-strip {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .platform-business-join-strip a {
    grid-column: auto;
    min-width: 132px;
    padding: 0 16px;
  }
}

.platform-flow-page {
  display: grid;
  gap: 18px;
  margin-top: 6px;
  padding-bottom: 20px;
}

.flow-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.flow-page-head h2,
.flow-page-head p {
  margin: 0;
}

.flow-page-head h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.flow-page-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.flow-page-head button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(107, 75, 255, 0.2);
}

.flow-page-head button span {
  font-size: 22px;
  line-height: 1;
}

.flow-banner-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 86%);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.flow-banner-slider::-webkit-scrollbar {
  display: none;
}

.flow-banner-slider article {
  position: relative;
  display: grid;
  align-content: end;
  gap: 7px;
  min-height: 126px;
  overflow: hidden;
  border-radius: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.34) 0 34px, transparent 35px),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.2) 0 52px, transparent 53px),
    linear-gradient(135deg, var(--banner-from), var(--banner-to));
  color: #ffffff;
  scroll-snap-align: start;
  box-shadow: 0 18px 34px rgba(31, 41, 55, 0.12);
}

.flow-banner-slider span {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.flow-banner-slider strong,
.flow-banner-slider p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.flow-banner-slider strong {
  max-width: 220px;
  font-size: 20px;
  line-height: 1.05;
}

.flow-banner-slider p {
  max-width: 240px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.flow-checkin-pill {
  border: 1px solid rgba(107, 75, 255, 0.16);
  border-radius: 999px;
  padding: 10px 13px;
  background: #f2edff;
  color: var(--platform-action, #6b4bff);
  font-size: 12px;
  font-weight: 700;
}

.flow-story-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}

.flow-story-rail::-webkit-scrollbar {
  display: none;
}

.flow-story-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  flex: 0 0 64px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.flow-story-item span {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(var(--platform-action, #6b4bff), #d9c8ff, var(--platform-action, #6b4bff));
}

.flow-story-item img {
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.flow-story-item i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-style: normal;
  font-size: 18px;
}

.flow-story-item strong {
  max-width: 70px;
  overflow: hidden;
  color: #1f2937;
  font-size: 12px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-feed-list {
  display: grid;
  gap: 18px;
}

.flow-empty-state {
  border: 1px dashed #d7e0ed;
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.flow-post-card {
  display: grid;
  gap: 14px;
  overflow: visible;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.12);
}

.flow-post-card header {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.flow-post-card header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.flow-post-card header strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.flow-post-card header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.flow-post-venue-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.flow-post-card header p span,
.flow-post-card header p b {
  color: var(--platform-action, #6b4bff);
}

.flow-post-card header button {
  border: 0;
  background: transparent;
  color: #667085;
  font-size: 25px;
  line-height: 1;
}

.flow-post-menu {
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 6;
  display: grid;
  gap: 2px;
  min-width: 156px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  padding: 5px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.flow-post-card header .flow-post-menu button {
  border: 0;
  border-radius: 10px;
  padding: 9px 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-align: left;
}

.flow-post-card header .flow-post-menu button:last-child {
  color: #ef4444;
}

.flow-post-card header .flow-post-menu button:disabled {
  color: var(--muted);
  opacity: 0.7;
}

.flow-post-text {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.35;
}

.flow-post-edit-form {
  display: grid;
  gap: 10px;
  border: 1px solid #e4ebf5;
  border-radius: 14px;
  padding: 12px;
  background: #f8fafc;
}

.flow-post-edit-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.flow-post-edit-form textarea,
.flow-post-edit-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.flow-post-edit-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.flow-post-edit-selected span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 6px 8px;
  background: #f1ebff;
  color: var(--platform-action, #6b4bff);
  font-size: 12px;
  font-weight: 800;
}

.flow-post-edit-selected button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.flow-post-edit-products {
  display: grid;
  gap: 6px;
}

.flow-post-edit-products button {
  display: grid;
  gap: 2px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  padding: 9px 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.flow-post-edit-products button.selected {
  border-color: var(--platform-action, #6b4bff);
  background: #f4f0ff;
}

.flow-post-edit-products small,
.flow-post-edit-products p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.flow-post-edit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.flow-post-edit-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #eef2f7;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.flow-post-edit-actions button[type="submit"] {
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
}

.flow-post-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-inline: -14px;
}

.flow-post-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.flow-post-image em {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(17, 24, 39, 0.64);
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.flow-venue-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.flow-venue-card img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.flow-venue-card strong,
.flow-venue-card p {
  margin: 0;
}

.flow-venue-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.flow-venue-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.flow-venue-card a {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(107, 75, 255, 0.34);
  border-radius: 12px;
  color: var(--platform-action, #6b4bff);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.flow-reward-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-radius: 12px;
  padding: 11px;
  background: #f1ebff;
  color: #4b5563;
  font-size: 13px;
}

.flow-reward-row b,
.flow-reward-row span:last-child {
  color: var(--platform-action, #6b4bff);
}

.flow-post-card footer {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flow-post-card footer button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  white-space: nowrap;
}

.flow-post-card footer button:first-child {
  color: #ff5a5f;
  font-weight: 700;
}

.flow-comment-icon,
.flow-comment-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.flow-comment-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.flow-post-card footer button:nth-child(3) {
  color: var(--platform-action, #6b4bff);
}

.flow-comments {
  display: grid;
  gap: 10px;
  border-top: 1px solid #edf2f7;
  padding-top: 10px;
}

.flow-comments article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  position: relative;
}

.flow-comments article img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.flow-comment-bubble {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: start;
  min-width: 0;
}

.flow-comment-body {
  min-width: 0;
}

.flow-comments article p,
.flow-comments small {
  margin: 0;
}

.flow-comments article p {
  border-radius: 14px;
  padding: 8px 10px;
  background: #f3f4f6;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.flow-comments article strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.flow-comments small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.flow-comment-menu {
  position: relative;
}

.flow-comment-menu > button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.flow-comment-menu > button:active {
  background: #edf2f7;
}

.flow-comment-menu-popover {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 5;
  display: grid;
  min-width: 150px;
  padding: 6px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.flow-comment-menu-popover button {
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.flow-comment-menu-popover button:last-child {
  color: #ef4444;
}

.flow-comment-edit-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 6px;
}

.flow-comment-edit-form input {
  min-width: 0;
  border: 1px solid #dce4ef;
  border-radius: 999px;
  padding: 8px 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.flow-comment-edit-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.flow-comment-edit-form button[type="button"] {
  background: #eef2f7;
  color: var(--muted);
}

.flow-comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.flow-comment-form input {
  min-width: 0;
  border: 1px solid #dce4ef;
  border-radius: 999px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.flow-comment-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.flow-composer-card {
  display: grid;
  gap: 14px;
}

.flow-composer-head h2,
.flow-composer-head p {
  margin: 0;
}

.flow-composer-head h2 {
  font-size: 22px;
}

.flow-composer-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.flow-photo-upload {
  display: grid;
  gap: 8px;
  cursor: pointer;
}

.flow-photo-upload > span {
  color: var(--muted);
  font-weight: 800;
}

.flow-photo-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.flow-photo-upload strong {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border: 1px dashed #b9c6d8;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  color: var(--ink);
}

.flow-photo-upload i {
  display: grid;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.flow-photo-upload b,
.flow-photo-upload small {
  display: block;
  min-width: 0;
}

.flow-photo-upload b {
  grid-column: 2;
  align-self: end;
  font-size: 15px;
}

.flow-photo-upload small {
  grid-column: 2;
  align-self: start;
  margin-top: -8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.flow-photo-upload:focus-within strong {
  border-color: var(--platform-action, #6b4bff);
  box-shadow: 0 0 0 3px rgba(107, 75, 255, 0.14);
}

.flow-composer-card textarea {
  resize: vertical;
}

.flow-product-picker {
  display: grid;
  gap: 10px;
}

.flow-product-picker h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.flow-product-picker input {
  width: 100%;
}

.flow-selected-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.flow-selected-products em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.flow-selected-products span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 6px 8px;
  background: #f1ebff;
  color: var(--platform-action, #6b4bff);
  font-size: 12px;
  font-weight: 700;
}

.flow-selected-products button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.flow-product-picker-list {
  display: grid;
  max-height: 210px;
  overflow-y: auto;
  gap: 8px;
  padding-right: 2px;
}

.flow-product-picker-list > button {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  background: #ffffff;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.flow-product-picker-list > button.selected {
  border-color: var(--platform-action, #6b4bff);
  background: #f4f0ff;
}

.flow-product-picker-list img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.flow-product-picker-list strong,
.flow-product-picker-list small {
  display: block;
}

.flow-product-picker-list small {
  margin-top: 3px;
  color: var(--muted);
}

.flow-product-picker-list i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1ebff;
  color: var(--platform-action, #6b4bff);
  font-style: normal;
  font-weight: 800;
}

.flow-ordered-products {
  display: grid;
  gap: 8px;
  border-radius: 12px;
  padding: 11px;
  background: #f1ebff;
  color: var(--platform-action, #6b4bff);
  font-size: 13px;
}

.flow-ordered-products strong {
  color: var(--ink);
}

.flow-ordered-products div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.flow-ordered-products button {
  border-radius: 999px;
  border: 0;
  padding: 6px 8px;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.platform-section {
  margin-top: 28px;
}

#homeView {
  --platform-home-gap: 24px;
}

#homeView > .platform-home-search,
#homeView > .platform-home-category-strip,
#homeView > .platform-promotion-section,
#homeView #platformCategorySections > .platform-section {
  margin-top: var(--platform-home-gap);
}

#homeView > .platform-home-intro + .platform-home-search {
  margin-top: 8px;
}

.platform-sort-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 22px -10px 14px;
  padding: 4px 10px 10px;
  scrollbar-width: none;
}

.platform-sort-row::-webkit-scrollbar {
  display: none;
}

.platform-sort-row button {
  flex: 0 0 auto;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid #e2d9f3;
  background: #f4f1f8;
  color: #6b6476;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  padding: 0 18px;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.06);
}

.platform-sort-row button.active {
  background: var(--platform-action, #6b4bff);
  border-color: var(--platform-action, #6b4bff);
  color: #fff;
}

.platform-sort-row .platform-filter-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #4c405f;
}

.platform-sort-row .platform-filter-open svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.platform-category-browser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.platform-categories-only .platform-home-intro,
body.platform-categories-only .platform-home-search,
body.platform-category-detail .platform-home-intro,
body.platform-category-detail .platform-home-search,
body.platform-flow-only .platform-home-intro,
body.platform-flow-only .platform-home-search,
body:has(.platform-category-results) .platform-home-intro,
body:has(.platform-category-results) .platform-home-search {
  display: none;
}

#homeView.platform-category-detail-view > .platform-home-intro,
#homeView.platform-category-detail-view > .platform-home-search,
#homeView:has(.platform-category-results) > .platform-home-intro,
#homeView:has(.platform-category-results) > .platform-home-search {
  display: none !important;
}

body.platform-categories-only .platform-category-browser {
  margin-top: 4px;
  padding-top: 0;
}

body.platform-categories-only .platform-category-browser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.platform-category-browser-grid button {
  min-height: 130px;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px 12px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.06);
}

body.platform-categories-only .platform-category-browser-grid button {
  min-height: 112px;
  padding: 12px 6px;
  gap: 8px;
}

.platform-category-browser-image {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  object-fit: cover;
  background: #eef2f7;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.1);
}

body.platform-categories-only .platform-category-browser-image {
  width: 58px;
  height: 58px;
}

.platform-category-browser-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--platform-action, #6b4bff) 12%, #ffffff);
  color: var(--platform-action, #6b4bff);
  font-size: 24px;
}

.platform-category-browser-grid strong {
  font-size: 17px;
  line-height: 1.15;
  text-align: center;
}

body.platform-categories-only .platform-category-browser-grid strong {
  font-size: 14px;
}

.platform-category-results {
  margin-top: -14px;
  padding-bottom: 20px;
}

.platform-category-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  margin: 0 -18px 16px;
  min-height: 126px;
  padding: 22px 26px;
  background:
    radial-gradient(circle at 10% 24%, rgba(255, 255, 255, 0.16) 0 36px, transparent 37px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12) 0 24px, transparent 25px),
    linear-gradient(135deg, #4b2a78 0%, #7b3fe6 100%);
  color: #ffffff;
}

.platform-category-head::after {
  content: "🍴  ☕  🐟  🍔  🍰  🥤";
  position: absolute;
  inset: 12px 18px auto auto;
  width: 260px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 25px;
  line-height: 2.2;
  letter-spacing: 18px;
  transform: rotate(-8deg);
  pointer-events: none;
}

.platform-category-head button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
}

.platform-category-head svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.platform-category-head div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.platform-category-head h2,
.platform-category-head p {
  margin: 0;
}

.platform-category-head h2 {
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.platform-category-head p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.platform-campaign-page {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
}

.platform-campaign-head {
  margin: -2px -2px 2px;
  padding: 22px 20px 18px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(135deg, #ff5a00, #ff7a1a);
  color: #ffffff;
}

.platform-campaign-head p,
.platform-campaign-head h2,
.platform-campaign-head span {
  margin: 0;
}

.platform-campaign-head p {
  font-size: 15px;
  font-weight: 800;
  opacity: 0.92;
}

.platform-campaign-head h2 {
  margin-top: 8px;
  font-size: clamp(30px, 7.4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.platform-campaign-head span {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.platform-campaign-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #e1e5ec;
  border-radius: 999px;
  padding: 5px;
  background: #f5f6f9;
}

.platform-campaign-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #667085;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.platform-campaign-tabs button.active {
  background: #4b3b40;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.12);
}

.platform-campaign-tabs button:disabled {
  cursor: default;
}

.platform-campaign-mode-row,
.platform-campaign-chip-row {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 7px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.platform-campaign-mode-row.is-dragging,
.platform-campaign-chip-row.is-dragging {
  cursor: grabbing;
}

.platform-campaign-mode-row::-webkit-scrollbar,
.platform-campaign-chip-row::-webkit-scrollbar {
  display: none;
}

.platform-campaign-mode-row button,
.platform-campaign-chip-row button {
  flex: 0 0 auto;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #ffffff;
  color: #6b7280;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 19px;
  cursor: pointer;
}

.platform-campaign-mode-row button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  padding-inline: 0;
  padding-bottom: 10px;
}

.platform-campaign-mode-row button + button {
  margin-left: 20px;
}

.platform-campaign-mode-row button.active {
  color: var(--ink);
  box-shadow: inset 0 -4px 0 #ff5a00;
}

.platform-campaign-chip-row button.active {
  border-color: #ff5a00;
  background: #ff5a00;
  color: #ffffff;
}

.platform-campaign-list {
  display: grid;
  gap: 16px;
}

.platform-campaign-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid #cfd5df;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.12);
  cursor: pointer;
}

.platform-campaign-card > img {
  width: 100%;
  aspect-ratio: 16 / 6.3;
  object-fit: cover;
  background: #f1f5f9;
}

.platform-campaign-info {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px 14px 16px;
  overflow: hidden;
}

.platform-campaign-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #e11d48;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(31, 41, 55, 0.14);
}

.platform-campaign-title-row {
  display: block;
  max-width: calc(100% - 38px);
}

.platform-campaign-info h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #151133;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.platform-campaign-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.platform-campaign-place,
.platform-campaign-kind,
.platform-campaign-copy {
  margin: 0;
}

.platform-campaign-place {
  overflow: hidden;
  color: #374151;
  font-size: 13px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-campaign-kind {
  overflow: hidden;
  color: #8a8f98;
  font-size: 12px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-campaign-copy {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #111827;
  font-size: 12px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.platform-campaign-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px 7px;
  margin-top: auto;
  overflow: hidden;
  color: #ff5a00;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}

.campaign-meta-icon,
.campaign-meta-clock {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff5a00;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.campaign-meta-clock {
  background: transparent;
  color: #ff2d3d;
  font-size: 15px;
}

.platform-campaign-info footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: #98a2b3;
  font-size: 14px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-campaign-info footer time {
  color: #98a2b3;
  font-weight: 500;
}

.platform-campaign-info footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--platform-action, #6b4bff);
  font-weight: 400;
}

.platform-campaign-info footer i {
  font-style: normal;
  font-size: 26px;
  line-height: 1;
}

.platform-campaign-info footer em {
  flex: 0 0 auto;
  color: #111827;
  font-style: normal;
  font-weight: 500;
}

.campaign-terms-card {
  position: relative;
  align-self: flex-end;
  width: min(100%, 430px);
  max-height: 78vh;
  overflow: auto;
  border-radius: 28px 28px 0 0;
  padding: 30px 24px 24px;
}

.campaign-terms-handle {
  display: block;
  width: 64px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #e5e7eb;
}

.campaign-terms-card h2 {
  margin: 0 0 22px;
  color: #050505;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
}

.campaign-terms-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 17px;
  color: #20242c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.campaign-terms-join {
  width: 100%;
  margin-top: 26px;
  justify-content: center;
  border-radius: 16px;
  background: #ff5a00;
  font-size: 16px;
}

.platform-back-button {
  margin-bottom: 14px;
}

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

.platform-category-venue-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.platform-category-venue-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e5e7eb;
  box-shadow: 0 18px 34px rgba(31, 41, 55, 0.12);
}

.platform-category-venue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.platform-category-venue-body {
  display: grid;
  gap: 8px;
  padding: 0 2px;
}

.platform-category-venue-body b {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
}

.platform-category-venue-body em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.platform-category-venue-body svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--platform-action, #6b4bff);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.platform-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.platform-section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.platform-qr-venue-section .platform-section-title h2,
.platform-popular-menu-section .platform-section-title h2 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
}

.platform-section-title button {
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
}

.platform-section-title span {
  color: var(--muted);
  font-weight: 800;
}

.venue-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, 214px);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x proximity;
}

.venue-card {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  scroll-snap-align: start;
  text-decoration: none;
  box-shadow: none;
}

.venue-card.compact {
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 8px;
}

.venue-card-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e5e7eb;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.12);
}

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

.venue-card-caption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 4px;
  padding: 16px 14px 14px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.8));
}

.venue-card-caption strong {
  font-size: 20px;
  line-height: 1.08;
}

.venue-card-caption em {
  width: max-content;
  border-radius: 999px;
  background: var(--platform-action, #6b4bff);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  padding: 4px 10px;
}

.venue-card-meta {
  display: grid;
  gap: 6px;
  padding: 0 2px;
}

.venue-card-meta strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.08;
}

.venue-card-meta em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
}

.venue-card-meta svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--obiop-orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.venue-new {
  position: absolute;
  left: -38px;
  top: 14px;
  z-index: 1;
  width: 132px;
  transform: rotate(-42deg);
  background: #facc15;
  color: #111827;
  text-align: center;
  font-size: 14px;
  font-weight: 1000;
  padding: 5px 0;
}

.venue-card.compact .venue-new {
  left: -18px;
  top: 16px;
  width: 104px;
  font-size: 12px;
  padding: 4px 0;
}

.venue-intro {
  display: grid;
  gap: 24px;
  position: relative;
  padding: 8px 0 24px;
}

.venue-intro > * {
  margin-top: 0;
  margin-bottom: 0;
}

.venue-intro-back {
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
}

.venue-intro-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #e5e7eb;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.12);
}

.venue-intro-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.venue-detail-gallery {
  display: grid;
  gap: 10px;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.venue-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #e5e7eb;
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.14);
}

.venue-gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.venue-gallery-count,
.venue-detail-gallery .venue-open-pill {
  position: absolute;
  z-index: 2;
}

.venue-detail-gallery .venue-open-pill {
  left: 18px;
  bottom: 16px;
}

.venue-gallery-count {
  right: 18px;
  bottom: 16px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(17, 24, 39, 0.62);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.venue-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 2px 4px;
  background: transparent;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.venue-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.venue-gallery-thumbs button {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
}

.venue-gallery-thumbs button.active {
  border-color: var(--accent);
}

.venue-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-intro-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.venue-intro-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.venue-intro-dots button.active {
  width: 20px;
  background: #ffffff;
}

.venue-intro-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.venue-profile-summary {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  padding: 2px 0 0;
}

.venue-profile-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--platform-action, #6b4bff);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.venue-profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-intro-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.05;
}

.venue-intro-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.venue-region-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.venue-region-line svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--platform-action, #6b4bff);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.venue-open-pill {
  border-radius: 999px;
  padding: 7px 11px;
  background: #22c55e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.venue-open-pill.is-closed {
  background: #ef4444;
}

.venue-menu-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #6b4bff, #3f28b9);
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.18);
}

.venue-menu-cta strong {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.venue-menu-cta i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-style: normal;
  font-size: 20px;
}

.venue-countdown {
  margin: 0;
}

.venue-intro .campaign-countdown.venue-countdown {
  margin: 0;
}

.venue-intro-ad {
  width: 100%;
  margin: 0;
}

.venue-intro-ad .ad-slides {
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.venue-campaign-banner {
  display: none;
  align-content: end;
  gap: 8px;
  padding: 18px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.venue-campaign-banner.active {
  display: grid;
}

.venue-campaign-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.58));
}

.venue-campaign-banner span,
.venue-campaign-banner strong,
.venue-campaign-banner em {
  position: relative;
  z-index: 1;
}

.venue-campaign-banner span {
  justify-self: start;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--platform-action, #6b4bff);
  font-size: 11px;
  font-weight: 800;
}

.venue-campaign-banner strong {
  max-width: 72%;
  font-size: 24px;
  line-height: 1;
  white-space: pre-line;
}

.venue-campaign-banner em {
  max-width: 76%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

html.public-mobile-shell-preload .venue-intro-ad .ad-slides,
body.public-mobile-shell .venue-intro-ad .ad-slides {
  height: auto;
  aspect-ratio: 16 / 9;
}

.venue-intro-ad .hero-dots {
  margin-top: 10px;
}

.venue-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.venue-chip-grid button,
.venue-map-card {
  border: 1px solid #eadfd8;
  border-radius: 14px;
  background: #fffdfa;
}

.venue-info-section {
  display: grid;
  gap: 9px;
}

.venue-info-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.venue-chip-grid button {
  min-height: 54px;
  padding: 10px 12px;
  color: #4b2f28;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.venue-hours-card {
  display: grid;
  gap: 10px;
  border: 1px solid #eadfd8;
  border-radius: 16px;
  background: #fffdfa;
  padding: 14px;
  color: var(--ink);
}

.venue-hours-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.venue-hours-list {
  display: grid;
  gap: 7px;
}

.venue-hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.venue-hours-list span {
  color: var(--muted);
  font-size: 11.5px;
}

.venue-hours-list strong {
  color: #6b4bff;
  font-size: 12px;
  font-weight: 600;
}

.venue-map-section {
  display: grid;
  gap: 10px;
}

.venue-map-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.venue-map-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  padding: 0;
  background:
    linear-gradient(105deg, transparent 0 45%, rgba(255, 255, 255, 0.15) 45% 49%, transparent 49%),
    linear-gradient(25deg, transparent 0 58%, rgba(255, 255, 255, 0.12) 58% 62%, transparent 62%),
    #314256;
  border-radius: 18px;
  color: #ffffff;
}

.venue-map-roads {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, 0.14) 29px 31px),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(255, 255, 255, 0.12) 37px 39px);
  transform: rotate(-8deg) scale(1.18);
}

.venue-map-pin {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #6b4bff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.22);
}

.venue-map-info {
  position: absolute;
  left: 14px;
  right: 82px;
  bottom: 14px;
  display: grid;
  gap: 4px;
}

.venue-map-card strong {
  color: #ffffff;
  font-size: 17px;
}

.venue-map-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.venue-map-go {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  font-size: 20px;
}

.venue-route-button {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 18px;
  background: #6b4bff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.venue-social-fab {
  position: fixed;
  right: max(22px, calc((100vw - 430px) / 2 + 18px));
  bottom: 92px;
  z-index: 32;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.venue-social-actions {
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.venue-social-fab.open .venue-social-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.venue-social-actions a,
.venue-social-toggle {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.28);
  cursor: pointer;
}

.venue-social-actions a:nth-child(1) { background: #111827; }
.venue-social-actions a:nth-child(2) { background: #e1306c; }
.venue-social-actions a:nth-child(3) { background: #6b4bff; }

.venue-social-actions a.disabled {
  opacity: 0.48;
  pointer-events: none;
}

.venue-social-actions svg,
.venue-social-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.platform-shortcut {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 108px;
  padding: 14px 10px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
  cursor: pointer;
}

.platform-shortcut span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #eef2ff;
  color: var(--platform-action, #6b4bff);
  font-size: 27px;
  font-weight: 900;
}

.platform-shortcut strong {
  font-size: 16px;
  line-height: 1.1;
}

.platform-categories {
  margin-top: 8px;
}

.platform-location-card {
  width: 100%;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  text-align: left;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
  cursor: pointer;
}

.platform-location-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff7ed;
  color: #f97316;
  font-size: 26px;
  font-weight: 900;
}

.platform-location-card strong,
.platform-location-card small {
  display: block;
}

.platform-location-card small {
  color: var(--muted);
  font-weight: 700;
}

.platform-location-card.active {
  border-color: #86efac;
  background: #f0fdf4;
}

.venue-choice-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.venue-choice {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.venue-choice:has(input:checked) {
  border-color: var(--platform-action, #6b4bff);
  background: rgba(107, 75, 255, 0.08);
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
}

.venue-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.venue-choice-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 12px;
  background: #eef2f7;
}

.venue-choice-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-choice-body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.venue-choice-body strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.venue-choice-body small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.venue-choice-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  font-size: 14px;
  font-weight: 900;
}

.venue-choice:has(input:checked) .venue-choice-check {
  border-color: var(--platform-action, #6b4bff);
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
}

.field-title {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.platform-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 40;
  width: min(100%, 760px);
  min-height: 108px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 10px 8px 9px;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -18px 42px rgba(31, 41, 51, 0.14);
  backdrop-filter: blur(16px);
}

.platform-bottom-nav button {
  position: relative;
  border: 0;
  background: transparent;
  color: #7a8492;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  padding: 0 4px;
  cursor: pointer;
  text-align: center;
}

.platform-bottom-nav .bottom-icon {
  color: #7a8492;
}

.platform-bottom-nav .bottom-icon svg {
  width: 32px;
  height: 32px;
}

.platform-flow-glyph svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.platform-bottom-nav strong {
  font-size: 12px;
  line-height: 1.05;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-bottom-nav [data-platform-nav="flow"] {
  color: var(--platform-action, #6b4bff);
}

.platform-bottom-nav [data-platform-nav="flow"] strong,
.bottom-nav-main > span:last-child {
  color: var(--platform-action, #6b4bff);
  font-weight: 700;
}

.platform-bottom-nav [data-platform-nav="flow"] .bottom-icon,
.bottom-nav-main .bottom-flow-mark {
  color: var(--platform-action, #6b4bff);
  filter: drop-shadow(0 8px 14px rgba(107, 75, 255, 0.22));
}

.platform-nav-main {
  margin-top: 0;
  color: #7a8492 !important;
  transform: translateY(-18px);
}

.platform-nav-main::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #f5f7fb;
  z-index: -1;
}

.platform-nav-main .discover-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #7a8492;
  box-shadow: 0 16px 32px rgba(31, 41, 55, 0.16), 0 0 0 4px #ffffff;
  overflow: visible;
}

.platform-nav-main .discover-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-nav-main strong {
  margin-top: 6px;
  color: #7a8492;
  line-height: 1;
}

.platform-brand-note {
  grid-column: 1 / -1;
  display: flex;
  align-self: end;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% - 28px);
  margin: 4px auto 0;
  border-top: 1px solid rgba(31, 41, 51, 0.12);
  padding: 6px 2px 0;
  color: #8792a3;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.platform-discover-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: stretch center;
  background: rgba(15, 23, 42, 0.52);
}

.platform-discover-sheet {
  width: min(100%, 520px);
  height: 100dvh;
  max-height: none;
  margin: 0 auto;
  overflow: auto;
  border-radius: 0;
  background: #f7f5fb;
  box-shadow: 0 0 70px rgba(15, 23, 42, 0.28);
  overscroll-behavior: contain;
}

.platform-discover-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: max(14px, env(safe-area-inset-top)) 18px 14px;
  border-bottom: 1px solid #e6def4;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.platform-discover-head h2 {
  flex: 1;
  margin: 0;
  color: #19172b;
  font-size: 18px;
  font-weight: 820;
  line-height: 1.08;
}

.platform-discover-head button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f1eef7;
  color: #19172b;
  font-size: 24px;
  cursor: pointer;
}

.platform-discover-spark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--platform-action, #6b4bff) 12%, #ffffff);
  color: var(--platform-action, #6b4bff);
  font-size: 18px;
  font-weight: 1000;
}

.platform-discover-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 18px;
  background: #ffffff;
}

.platform-discover-steps::before {
  display: none;
}

.platform-discover-steps button {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 10px;
  background: #f1eef6;
  color: #716b80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.06);
  overflow: visible;
}

.platform-discover-steps button::before {
  display: none;
}

.platform-discover-steps button::after {
  content: "";
  position: absolute;
  left: calc(100% + 1px);
  top: 50%;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: #e9e1f4;
  transform: translateY(-50%);
  z-index: 0;
}

.platform-discover-steps button:last-child::after {
  display: none;
}

.platform-discover-steps button > * {
  position: relative;
  z-index: 1;
}

.platform-discover-steps button.active {
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--platform-action, #6b4bff) 24%, transparent);
}

.platform-discover-steps em {
  font-style: normal;
  font-size: 18px;
}

.platform-discover-steps button.locked {
  opacity: 0.55;
  cursor: not-allowed;
}

.platform-discover-body {
  min-height: calc(100dvh - 156px);
  padding: 22px 20px max(32px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.75), transparent 22%),
    #f7f5fb;
}

.platform-discover-body h3 {
  margin: 0;
  color: #19172b;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 800;
}

.platform-discover-body p {
  margin: 6px 0 20px;
  color: #7a7488;
  font-size: 15px;
  font-weight: 500;
}

.discover-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.discover-pill-grid button {
  border: 2px solid #e3d9f1;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 15px;
  background: #ffffff;
  color: #19172b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.05);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.discover-pill-grid button:hover,
.discover-pill-grid button:focus-visible {
  border-color: var(--platform-action, #6b4bff);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(31, 41, 55, 0.1);
}

.discover-pill-grid span {
  margin-right: 6px;
  color: var(--platform-action, #6b4bff);
  font-size: 15px;
}

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

.discover-category-grid button {
  min-height: 124px;
  border: 2px solid #e3d9f1;
  border-radius: 22px;
  background: #ffffff;
  color: #19172b;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 10px 14px;
  text-align: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.discover-category-grid button:hover,
.discover-category-grid button:focus-visible {
  border-color: var(--platform-action, #6b4bff);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 41, 55, 0.12);
}

.discover-category-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--platform-action, #6b4bff) 12%, #ffffff);
  color: var(--platform-action, #6b4bff);
  font-size: 22px;
}

.discover-sort-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 2px -20px 18px;
  padding: 0 20px 6px;
}

.discover-sort-row.hidden {
  display: none;
}

.discover-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.discover-result-head h3 {
  margin-top: 0;
}

.discover-result-head p {
  margin-bottom: 0;
}

.discover-filter-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e3d9f1;
  border-radius: 12px;
  background: #ffffff;
  color: #716b80;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.06);
}

.discover-filter-toggle.active {
  border-color: var(--platform-action, #6b4bff);
  color: var(--platform-action, #6b4bff);
  background: color-mix(in srgb, var(--platform-action, #6b4bff) 9%, #ffffff);
}

.discover-filter-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.discover-sort-row button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #eeeaf3;
  color: #716b80;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}

.discover-sort-row button.active {
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
}

.discover-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.discover-result-card {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid #e1d8ef;
  border-radius: 20px;
  padding: 0 0 12px;
  background: #ffffff;
  color: #19172b;
  box-shadow: 0 18px 34px rgba(31, 41, 55, 0.12);
  text-decoration: none;
}

.discover-result-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}

.discover-result-card > span {
  display: grid;
  gap: 6px;
  padding: 0 14px;
  color: var(--ink);
}

.discover-result-card strong,
.discover-result-card em {
  display: block;
}

.discover-result-card strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 850;
}

.discover-result-card em {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.discover-result-card em svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--platform-action, #6b4bff);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.platform-search-modal {
  position: fixed;
  inset: 0;
  z-index: 74;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(12, 18, 24, 0.5);
}

.platform-search-sheet {
  position: relative;
  width: min(100%, 430px);
  max-width: 100%;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(20, 132, 120, 0.08), transparent 24%),
    #f7f8fb;
  box-shadow: 0 28px 90px rgba(12, 18, 24, 0.28);
}

.platform-search-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: max(18px, env(safe-area-inset-top)) 20px 14px;
  border-bottom: 1px solid rgba(216, 222, 232, 0.72);
}

.platform-search-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 1000;
}

.platform-search-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.platform-search-filter-button,
.platform-search-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef3f5;
  color: var(--ink);
  cursor: pointer;
}

.platform-search-filter-button {
  border: 1px solid rgba(216, 222, 232, 0.8);
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  box-shadow: 0 14px 28px rgba(31, 41, 51, 0.08);
}

.platform-search-close {
  font-size: 30px;
}

.platform-search-filter-button.active {
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
}

.platform-search-filter-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
}

.platform-search-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin: 14px 20px 0;
  border: 1px solid #dce4ef;
  border-radius: 18px;
  padding: 0 16px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.08);
}

.platform-search-box .search-icon {
  width: 19px;
  height: 19px;
  border-color: #9aa4b2;
}

.platform-search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
}

.platform-search-box input::placeholder {
  color: #a0a8b6;
}

.platform-search-body {
  height: calc(100% - 138px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 22px 20px max(110px, env(safe-area-inset-bottom));
}

.platform-search-empty {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 420px;
  text-align: center;
}

.platform-search-empty.has-filters {
  align-content: start;
  min-height: 0;
}

.platform-search-empty > span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--platform-action, #6b4bff) 9%, #ffffff);
  color: var(--platform-action, #6b4bff);
  font-size: 42px;
}

.platform-search-empty h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.platform-search-empty p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.platform-search-category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.platform-search-category-chips button {
  min-height: 38px;
  border: 1px solid #dce4ef;
  border-radius: 999px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.08);
  cursor: pointer;
}

.platform-search-category-chips span {
  margin-right: 5px;
  color: var(--platform-action, #6b4bff);
}

.platform-search-inline-filters {
  width: 100%;
  margin-top: 26px;
  text-align: left;
}

.platform-search-inline-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.platform-search-inline-filter-head strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 1000;
}

.platform-search-inline-filter-head button {
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
}

.platform-search-inline-filters .platform-filter-content {
  min-height: 0;
  overflow: visible;
  padding: 0 0 8px;
}

.platform-search-inline-filters .platform-filter-chips {
  flex-wrap: wrap;
  overflow: visible;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.platform-search-inline-filters .platform-filter-chips button {
  flex: 0 1 auto;
  min-width: 0;
}

.platform-search-results-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.platform-search-results-head strong {
  color: var(--ink);
}

.platform-search-results {
  display: grid;
  gap: 12px;
}

.platform-search-result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  padding: 10px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.07);
}

.platform-search-result img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.platform-search-result strong,
.platform-search-result em {
  display: block;
}

.platform-search-result strong {
  font-size: 17px;
  line-height: 1.15;
}

.platform-search-result em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  font-weight: 750;
}

.platform-search-filters {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.platform-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 24, 0.42);
}

.platform-filter-sheet {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  max-height: 86%;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #f7f8fb;
  box-shadow: 0 -22px 70px rgba(12, 18, 24, 0.22);
}

.platform-filter-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px 20px;
  border-bottom: 1px solid #dce4ef;
}

.platform-filter-head strong {
  color: var(--ink);
  text-align: center;
  font-size: 19px;
  font-weight: 1000;
}

.platform-filter-head button {
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  font: inherit;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
}

.platform-filter-head button:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #edf2f7;
  color: var(--ink);
  font-size: 28px;
}

.platform-filter-content {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 20px min(20px, 5vw) 110px;
}

.platform-filter-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.platform-filter-chips {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  margin: 0 calc(min(20px, 5vw) * -1) 24px;
  padding: 0 min(20px, 5vw) 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.platform-filter-chips::-webkit-scrollbar {
  display: none;
}

.platform-filter-chips button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  max-width: min(220px, 72vw);
  min-height: 44px;
  border: 1px solid #dce4ef;
  border-radius: 999px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.platform-filter-chips button span {
  color: inherit;
  line-height: 1;
}

.platform-filter-chips button.active {
  border-color: var(--platform-action, #6b4bff);
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
}

.platform-feature-filter-chips {
  flex-wrap: wrap;
  overflow: visible;
  row-gap: 12px;
}

.platform-feature-filter-chips button {
  max-width: 100%;
}

.platform-filter-submit {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--platform-action, #6b4bff), var(--accent-strong));
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.28);
}

.platform-filter-submit .search-icon {
  border-color: currentColor;
}

@media (max-width: 430px) {
  .platform-discover-head {
    min-height: 68px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .platform-discover-head h2 {
    font-size: 17px;
  }

  .platform-discover-head button,
  .platform-discover-spark {
    width: 34px;
    height: 34px;
  }

  .platform-discover-steps {
    gap: 8px;
    padding: 14px 16px;
  }

  .platform-discover-steps button {
    min-height: 46px;
    font-size: 13px;
    padding: 0 9px;
  }

  .platform-discover-body {
    padding: 20px 18px max(28px, env(safe-area-inset-bottom));
  }

  .platform-discover-body h3 {
    font-size: 20px;
  }

  .discover-category-grid {
    gap: 10px;
  }

  .discover-category-grid button {
    min-height: 116px;
    border-radius: 18px;
    font-size: 14px;
  }
}

.discover-empty {
  min-height: 340px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  color: #8b86a0;
}

.discover-empty span {
  font-size: 72px;
  line-height: 1;
}

.discover-empty button {
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.view {
  max-width: 1180px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.search-panel {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.06);
}

.eyebrow {
  margin: 0 0 10px;
  color: #6b4bff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.section-header p {
  max-width: 650px;
  color: #dfe7ef;
  font-size: 18px;
  line-height: 1.55;
}

.section-header,
.products-panel,
.qr-layout {
  margin-top: 24px;
}

.hero-slider {
  display: block;
  width: min(100%, 840px);
  margin: 0 auto 24px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.hero-slider.is-swiping {
  cursor: grabbing;
}

.hero-slides {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 8px;
  background: #d8dee8;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-caption {
  width: 100%;
  padding: 14px 18px;
  background: rgba(161, 112, 78, 0.72);
  color: #ffffff;
}

.hero-caption h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.1;
}

.story-rail {
  width: min(100%, 900px);
  margin: 0 auto 12px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: thin;
}

.story-list {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.story-chip {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 98px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 400;
}

.story-ring {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 50%;
  padding: 6px;
  background: #5f6672;
  box-shadow:
    inset 0 0 0 4px #121820,
    0 0 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.story-ring img {
  display: block;
  width: 72px;
  height: 72px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  background: #111820;
}

.story-chip > span:last-child {
  max-width: 118px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  display: -webkit-box;
  min-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hero-dots button {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #b9b9b9;
  cursor: pointer;
}

.hero-dots button.active {
  background: #c89f7a;
}

.ad-banner {
  width: min(100%, 760px);
  margin: 0 auto 12px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.ad-banner.is-swiping {
  cursor: grabbing;
}

.ad-slides {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 8px;
  background: #d8dee8;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.ad-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.ad-slide.active {
  opacity: 1;
}

.category-action-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.search-box,
label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghost-button,
.primary-button,
.danger-button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.menu-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.menu-language-switcher button {
  min-width: 44px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.menu-language-switcher button.active {
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
}

.menu-language-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 24px 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(107, 75, 255, 0.2), transparent 220px),
    rgba(12, 18, 24, 0.52);
  backdrop-filter: blur(3px);
}

.menu-language-card {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100vw - 40px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(12, 18, 24, 0.24);
}

.menu-language-card button {
  min-width: 104px;
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  background: rgba(107, 75, 255, 0.1);
  color: #6b4bff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

.menu-language-card button.active {
  background: linear-gradient(135deg, #6b4bff, #7c3cff);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(107, 75, 255, 0.3);
}

.menu-grid.campaign-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.menu-grid.shop-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-grid.layout-list,
.menu-grid.layout-list .category-featured-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

html.public-mobile-shell-preload .menu-grid.layout-list,
html.public-mobile-shell-preload .menu-grid.layout-list .category-featured-grid,
body.public-mobile-shell .menu-grid.layout-list,
body.public-mobile-shell .menu-grid.layout-list .category-featured-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.menu-grid.layout-list .category-featured-section {
  margin-bottom: 4px;
}

.menu-grid.layout-list .menu-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 112px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.06);
}

.menu-grid.layout-list .food-art {
  height: 100%;
  min-height: 108px;
  aspect-ratio: auto;
}

.menu-grid.layout-list .menu-item-body {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 12px 48px 12px 14px;
}

.menu-grid.layout-list .menu-item-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
}

.menu-grid.layout-list .menu-item h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.menu-grid.layout-list .price {
  color: var(--accent);
  font-size: 17px;
  white-space: nowrap;
}

.menu-grid.layout-list .menu-item p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #8b95a5;
  font-size: 14px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.menu-grid.layout-list .favorite-button {
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-color: #e5e7eb;
  color: var(--ink);
  box-shadow: none;
}

.menu-grid.layout-list .favorite-button .heart-glyph,
.menu-grid.layout-list .favorite-button .heart-glyph svg {
  width: 21px;
  height: 21px;
}

.menu-grid.layout-list .business-favorite-star {
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  font-size: 16px;
}

.menu-grid.layout-list .featured-badge {
  display: none;
}

.campaign-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: -4px;
}

.campaign-list-header h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
}

.campaign-list-header span {
  color: var(--muted);
  font-weight: 800;
}

.campaign-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(31, 41, 51, 0.04),
    0 14px 32px rgba(31, 41, 51, 0.07);
}

.campaign-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.campaign-card-title {
  border-top: 1px solid #e5e7eb;
  padding: 22px 24px 24px;
  background: #ffffff;
}

.campaign-card-title h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.campaign-card-title p {
  margin: 8px 0 0;
  color: #667085;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 400;
  line-height: 1.5;
}

html.public-mobile-shell-preload .menu-grid.campaign-list,
body.public-mobile-shell .menu-grid.campaign-list,
.menu-grid.campaign-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: stretch;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

html.public-mobile-shell-preload .menu-grid.campaign-list > *,
body.public-mobile-shell .menu-grid.campaign-list > *,
.menu-grid.campaign-list > * {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

html.public-mobile-shell-preload .campaign-card,
body.public-mobile-shell .campaign-card {
  border-radius: 14px;
}

html.public-mobile-shell-preload .campaign-card img,
body.public-mobile-shell .campaign-card img {
  aspect-ratio: 16 / 7;
}

html.public-mobile-shell-preload .campaign-card-title,
body.public-mobile-shell .campaign-card-title {
  padding: 18px 18px 20px;
}

html.public-mobile-shell-preload .campaign-card-title h3,
body.public-mobile-shell .campaign-card-title h3 {
  font-size: 22px;
  line-height: 1.18;
}

html.public-mobile-shell-preload .campaign-card-title p,
body.public-mobile-shell .campaign-card-title p {
  display: block;
  font-size: 15px;
  line-height: 1.45;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.category-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #d8dee8;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.1);
}

.category-card.expanded {
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.18);
}

.category-card-image {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  background-position: center;
  background-size: cover;
  transition: transform 180ms ease;
}

.fallback-category-1 {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.25) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.22) 0 70px, transparent 71px),
    linear-gradient(135deg, #a43f2d, #e8a44b);
}

.fallback-category-2 {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.25) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.22) 0 70px, transparent 71px),
    linear-gradient(135deg, #1d4e89, #76c7c0);
}

.fallback-category-3 {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.25) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.22) 0 70px, transparent 71px),
    linear-gradient(135deg, #7f2148, #e8a1b6);
}

.fallback-category-4 {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.25) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.22) 0 70px, transparent 71px),
    linear-gradient(135deg, #1f7a4d, #b7d56b);
}

.category-card:hover .category-card-image {
  transform: scale(1.04);
}

.category-card-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 16px;
  background: var(--category-band);
  color: #ffffff;
  font-size: clamp(18px, 2.8vw, 25px);
  font-weight: 700;
  text-align: center;
}

.category-card-title b {
  font: inherit;
  min-width: 0;
}

.category-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
}

.category-toggle-icon::before {
  position: absolute;
  inset: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.category-card.expanded .category-toggle-icon::before {
  transform: translateY(2px) rotate(225deg);
}

.top-products {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.top-products-header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.top-products-header span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.top-products-header h2 {
  margin: 0;
  font-size: clamp(20px, 4vw, 28px);
}

.top-product-list {
  display: grid;
  grid-auto-columns: minmax(180px, 42%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.top-product-card {
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-radius: 8px;
  padding: 0;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.15);
}

.top-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-position: center;
  background-size: cover;
}

.top-product-info {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.top-product-info b {
  font-size: 15px;
  line-height: 1.16;
}

.top-product-info em {
  color: var(--accent-strong);
  font-style: normal;
  font-weight: 950;
}

.top-product-card > i {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(255, 107, 0, 0.32);
}

.loyalty-menu-card,
.loyalty-profile-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 12px;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(161, 112, 78, 0.18) 0 70px, transparent 72px),
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), #ffffff);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.08);
}

.loyalty-menu-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin: 18px 0 12px;
}

body.public-venue-shell .loyalty-menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: calc(100% + 36px);
  margin: 0 -18px 70px;
  padding: 18px 18px 34px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255, 255, 255, 0.14) 0 17%, transparent 18%),
    radial-gradient(ellipse at 84% 78%, rgba(255, 255, 255, 0.12) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--obiop-orange), var(--obiop-orange-soft));
  color: #ffffff;
  box-shadow: none;
}

body.public-venue-shell .loyalty-menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(18deg, transparent 0 36%, rgba(255, 255, 255, 0.1) 37% 49%, transparent 50%),
    radial-gradient(ellipse at 40% 115%, rgba(124, 45, 18, 0.14) 0 26%, transparent 27%);
}

body.public-venue-shell .loyalty-menu-card > div {
  position: relative;
  z-index: 1;
}

.loyalty-guest-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.loyalty-guest-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  border-radius: 12px;
  padding: 18px 8px 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  text-align: center;
}

.loyalty-guest-steps span {
  position: absolute;
  top: -8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--obiop-orange);
  font-size: 14px;
  font-weight: 800;
}

.loyalty-guest-steps strong {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.loyalty-guest-steps small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  line-height: 1.2;
}

body.public-venue-shell .loyalty-menu-card .eyebrow,
body.public-venue-shell .loyalty-menu-card h2,
body.public-venue-shell .loyalty-menu-card > div > p {
  display: none;
}

body.public-venue-shell .loyalty-action-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: calc(100% - 24px);
  margin: 12px auto -68px;
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(31, 41, 51, 0.13);
}

body.public-venue-shell .loyalty-action-panel.member-active {
  grid-template-columns: 1fr;
  width: min(260px, calc(100% - 72px));
}

body.public-venue-shell .loyalty-action-panel button {
  min-height: 46px;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

body.public-venue-shell .loyalty-action-panel .primary-button {
  background: var(--obiop-orange);
}

body.public-venue-shell .loyalty-action-panel .ghost-button {
  border-color: #141212;
  background: #141212;
  color: #ffffff;
}

.loyalty-reward-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

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

body.public-venue-shell .loyalty-reward-grid {
  gap: 0;
  margin-top: 0;
}

body.public-venue-shell .loyalty-reward-grid.single .loyalty-reward-item {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  max-width: 310px;
  margin: 0 auto;
  padding-inline: 0;
}

body.public-venue-shell .loyalty-reward-grid:not(.single) .loyalty-reward-item + .loyalty-reward-item {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.loyalty-reward-item {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

body.public-venue-shell .loyalty-reward-item {
  position: relative;
  z-index: 1;
  gap: 10px;
  padding: 0 10px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
}

body.public-venue-shell .loyalty-reward-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
}

body.public-venue-shell .loyalty-reward-grid.single .loyalty-reward-copy {
  justify-items: start;
  padding-top: 6px;
}

.loyalty-stamp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.loyalty-stamp-head h3,
.loyalty-stamp-head small,
.loyalty-stamp-head strong {
  color: inherit;
}

.loyalty-stamp-head h3 {
  display: block;
  margin: 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.15;
}

.loyalty-stamp-head small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.82;
}

.loyalty-stamp-head strong {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.loyalty-stamp-board {
  display: grid;
  grid-template-columns: repeat(var(--stamp-columns, 5), minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 4px 0 2px;
}

.loyalty-stamp-board span {
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
}

.loyalty-stamp-board em {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-style: normal;
  font-size: 30px;
  filter: saturate(0.84);
  opacity: 0.88;
}

.loyalty-stamp-board span.active em {
  background: rgba(255, 255, 255, 0.88);
  filter: saturate(1.04) drop-shadow(0 8px 10px rgba(76, 29, 0, 0.16));
  opacity: 1;
}

.loyalty-stamp-board i {
  position: absolute;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 3px solid #e11d48;
  border-radius: 999px;
  color: #e11d48;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-12deg);
  text-transform: lowercase;
  background: rgba(255, 255, 255, 0.12);
}

.loyalty-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 55%, transparent 57%),
    conic-gradient(var(--menu-accent) var(--loyalty-progress, 0deg), rgba(15, 118, 110, 0.16) 0);
}

body.public-venue-shell .loyalty-ring {
  width: 118px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 47%, transparent 48%);
}

.loyalty-ring-segments {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loyalty-ring-segments span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--segment-width, 20px);
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transform:
    translate(-50%, -50%)
    rotate(calc((360deg / var(--segment-count)) * var(--segment-index)))
    translateY(-52px);
  transform-origin: center;
}

.loyalty-ring-segments span.active {
  background: #6b4bff;
}

body.public-venue-shell .loyalty-ring strong {
  align-self: end;
  margin-bottom: 21px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

.loyalty-ring-icon {
  position: absolute;
  margin-top: -24px;
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 10px 18px rgba(124, 45, 18, 0.18));
}

.loyalty-ring strong,
.loyalty-reward-item b {
  color: var(--ink);
}

.loyalty-reward-item h3 {
  margin: 0;
  font-size: 16px;
}

body.public-venue-shell .loyalty-reward-item h3 {
  display: none;
}

.loyalty-reward-item p {
  margin: 0;
}

.loyalty-reward-item b span {
  color: #facc15;
}

body.public-venue-shell .loyalty-reward-item p,
body.public-venue-shell .loyalty-reward-item b {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

body.public-venue-shell .loyalty-reward-grid.single .loyalty-reward-item p {
  font-size: 17px;
}

body.public-venue-shell .loyalty-reward-item b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 400;
}

body.public-venue-shell .loyalty-reward-item b span {
  color: #ffe16b;
  font-size: 23px;
  line-height: 1;
}

.loyalty-menu-card h2,
.loyalty-profile-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.loyalty-menu-card p,
.loyalty-profile-card p,
.loyalty-profile-card small {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.loyalty-progress {
  overflow: hidden;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}

.loyalty-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--menu-accent));
}

.loyalty-profile-card img {
  width: 150px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  background: #ffffff;
}

.loyalty-venue-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.loyalty-venue-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: #ffffff;
}

.loyalty-venue-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.loyalty-venue-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.loyalty-venue-head .ghost-button {
  min-height: 36px;
  border-color: var(--platform-action, #6b4bff);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(107, 75, 255, 0.18);
}

.loyalty-collapsible {
  gap: 14px;
}

.loyalty-section-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.loyalty-section-toggle span {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.loyalty-section-toggle::before {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.loyalty-section-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.loyalty-section-body {
  display: grid;
  gap: 14px;
}

.loyalty-search-field {
  display: grid;
  gap: 8px;
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.loyalty-search-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.loyalty-code-panel {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 10px;
}

.loyalty-code-panel img {
  width: 190px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  background: #ffffff;
}

.loyalty-code-panel small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.stars-intro {
  display: grid;
  gap: 16px;
}

.stars-intro > h2,
.stars-intro > p,
.stars-start h3 {
  margin: 0;
  text-align: center;
}

.stars-intro > p {
  color: var(--muted);
  line-height: 1.45;
}

.stars-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stars-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  border-radius: 8px;
  padding: 18px 8px 12px;
  background: #f1efeb;
  text-align: center;
}

.stars-step-no {
  position: absolute;
  top: -10px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(31, 41, 51, 0.18);
  border-radius: 50%;
  background: var(--obiop-orange);
  color: #111827;
  font-size: 17px;
  font-weight: 500;
}

.stars-step-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #111827;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stars-steps h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.stars-steps p {
  margin: 0;
  color: #3f4652;
  font-size: 12px;
  line-height: 1.25;
}

.stars-start {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.stars-start h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.stars-start .button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stars-start .primary-button,
.stars-start .ghost-button {
  min-height: 44px;
  border-radius: 9px;
  font-weight: 400;
}

.loyalty-code {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  border-radius: 10px;
  padding: 8px 14px;
  background: var(--obiop-orange);
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.loyalty-mini-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent);
  font-weight: 950;
}

.obip-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.68) 0 18%, transparent 19%),
    linear-gradient(135deg, #6b4bff 0%, #f4b942 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.24);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.obip-icon.small {
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.obip-icon.inline {
  width: 24px;
  height: 24px;
  margin-right: 3px;
  font-size: 8px;
  vertical-align: middle;
}

.obip-icon.mini {
  width: 28px;
  height: 28px;
  font-size: 9px;
}

.obip-preview {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff7ed;
  color: #92400e;
  font-weight: 500;
}

.loyalty-analytics {
  display: grid;
  gap: 14px;
}

.admin-section-heading,
.loyalty-report-block {
  display: grid;
  gap: 10px;
}

.admin-section-heading h2,
.admin-section-heading p,
.loyalty-report-block h3 {
  margin: 0;
}

.admin-section-heading p {
  color: var(--muted);
}

[data-admin-section="loyalty"] {
  display: grid;
  gap: 22px;
}

[data-admin-section="loyalty"].hidden {
  display: none !important;
}

[data-admin-section="loyalty"] .admin-section-heading {
  margin-bottom: 0;
}

[data-admin-section="loyalty"] .cashier-panel {
  margin-top: 0;
}

[data-admin-section="loyalty"] .cashier-panel .form-grid {
  row-gap: 18px;
}

[data-admin-section="loyalty"] .cashier-panel .button-row {
  gap: 16px;
  margin-top: 8px;
}

[data-admin-section="loyalty"] .cashier-panel .button-row button {
  min-width: 220px;
}

.business-loyalty-cards-panel .section-title-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.business-loyalty-card-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.business-loyalty-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
}

.business-loyalty-card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #e7f5f2;
  font-size: 25px;
}

.business-loyalty-card h3,
.business-loyalty-card p {
  margin: 0;
}

.business-loyalty-card h3 {
  color: var(--ink);
  font-size: 20px;
}

.business-loyalty-card p,
.business-loyalty-card small {
  color: var(--muted);
}

.business-loyalty-card small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.business-loyalty-card-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.business-loyalty-card-actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .business-loyalty-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .business-loyalty-card-actions {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.admin-data-table th,
.admin-data-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: #667085;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}

.admin-data-table th {
  background: #f1efeb;
  color: var(--ink);
  font-weight: 600;
}

.admin-data-table tr:last-child td {
  border-bottom: 0;
}

.campaign-admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.campaign-admin-controls {
  display: grid;
  gap: 18px;
}

.campaign-create-panel,
.campaign-timer-panel,
.campaign-table-panel {
  max-width: none;
}

.campaign-create-panel,
.campaign-timer-panel {
  display: grid;
  gap: 18px;
}

.campaign-create-panel .form-grid,
.campaign-timer-panel .form-grid {
  gap: 18px;
}

.campaign-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 400;
}

.campaign-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #ffffff;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-weight: 400;
}

.campaign-chip.active,
.campaign-chip:hover {
  border-color: rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.08);
  color: #b23a0f;
}

.campaign-status,
.campaign-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 400;
}

.campaign-status.active {
  background: #6b4bff;
  color: #ffffff;
}

.campaign-pill {
  background: #e7f5f2;
  color: var(--accent-strong);
}

.campaign-pill.muted {
  background: #f1f5f9;
  color: #667085;
}

.campaign-data-table .admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

@media (max-width: 880px) {
  .campaign-admin-shell {
    grid-template-columns: 1fr;
  }

  .campaign-filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .campaign-chip {
    flex: 0 0 auto;
  }
}

.loyalty-analytics h3,
.loyalty-periods h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.loyalty-stat-grid,
.loyalty-period-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.loyalty-stat-card,
.loyalty-period-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #ffffff;
}

.loyalty-stat-card span,
.loyalty-period-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.loyalty-stat-card strong,
.loyalty-period-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.loyalty-stat-card small,
.loyalty-period-card small {
  color: var(--muted);
  font-size: 12px;
}

.loyalty-periods {
  display: grid;
  gap: 12px;
}

.loyalty-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 12px;
  padding: 14px;
  background: #b42318;
  color: #ffffff;
}

.loyalty-warning strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
}

.loyalty-venue-admin {
  gap: 14px;
}

.loyalty-venue-admin.paused {
  border-color: #f4b0aa;
  background: #fff7f6;
}

.loyalty-venue-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.status-ok,
.status-danger {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
}

.status-ok {
  background: #e7f5f2;
  color: var(--accent-strong);
}

.status-danger {
  background: #fff1f0;
  color: var(--warn);
}

.campaign-countdown {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  margin: 0 0 14px;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.22) 0 64px, transparent 65px),
    linear-gradient(135deg, #6b4bff, #7c2d12);
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 38px rgba(255, 107, 0, 0.24);
}

.countdown-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 23px;
}

.campaign-countdown small,
.campaign-countdown em {
  display: block;
}

.campaign-countdown small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-countdown b {
  display: block;
  font-size: clamp(18px, 4vw, 27px);
  line-height: 1.08;
}

.campaign-countdown em {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.campaign-countdown strong {
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(17, 24, 39, 0.22);
  font-size: clamp(20px, 5vw, 34px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.category-products-panel {
  grid-column: 1 / -1;
  min-width: 0;
  margin-bottom: 18px;
  scroll-margin-top: 120px;
  scroll-margin-bottom: 150px;
}

.category-product-rail {
  display: grid;
  grid-auto-columns: minmax(138px, 42%);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.category-mini-card,
.category-view-all-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

.category-mini-card {
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  padding: 0;
  cursor: pointer;
}

.category-mini-card.business-favorite-mini {
  border-color: rgba(255, 107, 0, 0.55);
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.14);
}

.category-mini-card > i {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.category-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.category-mini-card span {
  display: grid;
  gap: 5px;
  padding: 10px;
}

.category-mini-card strong {
  font-size: 14px;
  line-height: 1.18;
}

.category-mini-card em {
  color: var(--accent-strong);
  font-style: normal;
  font-weight: 900;
}

.category-mini-card > b {
  margin: 0 10px 10px;
  border-radius: 999px;
  padding: 6px 8px;
  background: #1f2933;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

.category-view-all-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 18px;
  cursor: pointer;
  background: #1f2933;
  color: #ffffff;
  text-align: center;
}

.menu-item,
.panel,
.products-panel,
.qr-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.06);
}

.menu-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.menu-item.business-favorite-item {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.16);
  animation: favoriteGlow 2.8s ease-in-out infinite;
}

.business-favorite-star {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(255, 107, 0, 0.32);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 107, 0, 0.1);
  color: #c2410c;
  font-size: 12px;
  font-weight: 900;
}

.category-featured-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.category-featured-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.category-featured-title span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6b4bff;
  color: #ffffff;
  font-size: 17px;
}

.category-featured-title h2 {
  margin: 0;
  font-size: clamp(20px, 4vw, 28px);
}

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

@keyframes favoriteGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.menu-item:focus {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 3px;
}

.food-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-size: cover;
}

.shop-item .food-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2933;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.16);
}

.auth-required-actions .primary-button,
.auth-required-actions .ghost-button {
  flex: 1 1 130px;
  justify-content: center;
}

.favorite-button.active {
  background: #fff1f4;
  color: #d92d20;
}

.detail-favorite {
  top: 28px;
  right: 28px;
}

.menu-item-body {
  padding: 18px;
}

.menu-item-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.menu-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.price {
  white-space: nowrap;
  color: var(--accent-strong);
  font-weight: 900;
}

.shop-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-top: 10px;
}

.shop-price .old-price {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
}

.shop-price .sale-price {
  color: var(--accent-strong);
  font-size: 19px;
  font-weight: 950;
}

.shop-gallery-count {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.12);
}

.shop-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border-radius: 999px;
  padding: 8px 12px;
  background: #6b4bff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(255, 107, 0, 0.28);
}

.shop-soldout-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border-radius: 999px;
  padding: 9px 14px;
  background: #1f2933;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(31, 41, 51, 0.28);
}

.shop-soldout-text {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: #1f2933;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
}

.shop-gallery-strip {
  position: absolute;
  right: 10px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 5px;
  max-width: calc(100% - 20px);
}

.shop-gallery-strip img,
.shop-gallery-more {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 7px;
}

.shop-gallery-strip img {
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.18);
}

.shop-gallery-more {
  display: grid;
  place-items: center;
  background: rgba(31, 41, 51, 0.86);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.18);
}

.shop-category-section {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.shop-category-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.menu-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.badge {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #edf2f7;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.product-detail {
  margin-top: 12px;
}

#backToProducts {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  margin: 0 0 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent-strong);
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
}

#backToCategories {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#backToCategories::before {
  content: "‹";
  font-size: 24px;
  line-height: 0;
}

#backToProducts::before {
  content: "‹";
  font-size: 20px;
  line-height: 0;
}

.product-detail-card {
  display: grid;
  gap: 18px;
}

.product-detail-hero {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.06);
}

.product-detail-slider {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.product-detail-slider.is-swiping {
  cursor: grabbing;
}

.product-detail-hero img,
.product-detail-hero video {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.detail-gallery-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font-size: 34px;
}

.detail-gallery-prev {
  left: 26px;
}

.detail-gallery-next {
  right: 26px;
}

.detail-gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.detail-gallery-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.detail-gallery-dots button.active {
  background: #ffffff;
}

.product-detail-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.product-detail-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-detail-title h2 {
  margin: 0;
  font-size: clamp(18px, 3.6vw, 24px);
  line-height: 1.12;
}

.product-detail-title strong {
  color: var(--accent-strong);
  font-size: clamp(18px, 3.4vw, 24px);
  line-height: 1.1;
}

.product-detail-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.pairing-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.pairing-section h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.pairing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.pairing-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.pairing-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.pairing-card span,
.pairing-card strong {
  font-weight: 900;
}

.pairing-card strong {
  color: var(--accent-strong);
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.product-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-chip-row span {
  border: 1px solid rgba(31, 41, 51, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-option-panel {
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
  background: #ffffff;
}

.option-group {
  display: grid;
  gap: 6px;
}

.option-group h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
}

.option-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-weight: 800;
}

.option-row input {
  width: 24px;
  height: 24px;
  accent-color: var(--menu-accent);
}

.option-row strong {
  white-space: nowrap;
  color: var(--accent-strong);
}

.option-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 14px 16px;
  background: #101820;
  color: #ffffff;
  font-weight: 900;
}

.option-total strong {
  font-size: 20px;
}

.empty-gallery {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.menu-layout-chooser {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.menu-layout-chooser h3,
.menu-layout-chooser p {
  margin: 0;
}

.menu-layout-chooser p {
  color: var(--muted);
  line-height: 1.45;
}

.menu-layout-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-layout-option {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.06);
}

.menu-layout-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.layout-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
}

.menu-layout-option input:checked + .layout-check {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.menu-layout-option input:checked + .layout-check::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.menu-layout-option input:checked ~ .layout-preview {
  border-color: var(--accent-strong);
}

.menu-layout-option strong {
  color: var(--ink);
  font-size: 16px;
}

.layout-preview {
  display: grid;
  gap: 8px;
  min-height: 92px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  padding: 10px;
  background: #f8fafc;
}

.layout-preview i,
.layout-preview b {
  display: block;
  border-radius: 999px;
}

.layout-preview i {
  background: linear-gradient(135deg, var(--accent-strong), var(--menu-accent));
}

.layout-preview b {
  background: #dce4ef;
}

.layout-preview-grid {
  grid-template-columns: repeat(2, 1fr);
}

.layout-preview-grid i {
  height: 38px;
}

.layout-preview-grid b {
  height: 8px;
}

.layout-preview-list {
  grid-template-columns: 42px 1fr auto;
  align-items: center;
}

.layout-preview-list i {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.layout-preview-list b {
  height: 9px;
}

.layout-preview-list b:nth-of-type(2n) {
  width: 42px;
  background: #21b8c7;
}

.gallery-admin-block,
.pairing-admin-block,
.product-options-admin {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.gallery-admin-block h3,
.gallery-admin-block p,
.pairing-admin-block h3,
.pairing-admin-block p,
.product-options-admin h3,
.product-options-admin p {
  margin: 0;
}

.pairing-admin-block input[type="search"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.pairing-admin-block input[type="search"]:focus {
  border-color: var(--accent-strong);
  outline: 3px solid rgba(20, 132, 120, 0.14);
}

.form-helper {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 15px;
}

.notification-delay-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 8px 0 16px;
}

.notification-delay-group > span {
  flex-basis: 100%;
  color: var(--muted);
  font-weight: 800;
}

.notification-delay-group label {
  display: inline-flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  width: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.notification-delay-group input {
  width: auto;
  margin: 0;
  accent-color: #6b4bff;
}

.gallery-admin-block p,
.pairing-admin-block p,
.product-options-admin p {
  color: var(--muted);
  line-height: 1.45;
}

.gallery-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.gallery-preview-item {
  position: relative;
  width: 92px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
}

.gallery-preview-item img,
.gallery-preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview-item button {
  position: absolute;
  right: 5px;
  bottom: 5px;
  border: 0;
  border-radius: 6px;
  padding: 5px 7px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--warn);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.admin-row-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.admin-row-main img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  background: #edf2f7;
}

.unavailable {
  opacity: 0.55;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.section-header h1 {
  margin-bottom: 8px;
  font-size: clamp(32px, 5vw, 54px);
}

.section-header p {
  color: var(--muted);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  margin-top: 18px;
}

.admin-content {
  min-width: 0;
}

.admin-menu-toggle {
  display: none;
}

.admin-tabs {
  position: sticky;
  top: 88px;
  z-index: 8;
  display: grid;
  gap: 10px;
  margin: 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.06);
}

.admin-publish-actions {
  position: sticky;
  top: 76px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 14px;
  padding: 10px 0;
  background: var(--soft);
}

@media (max-width: 880px) {
  .admin-publish-actions {
    top: 0;
  }

  .admin-menu-toggle {
    display: none;
  }

  .admin-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 12px;
  }

  .admin-tabs {
    position: static;
    display: flex;
    gap: 10px;
    margin: 0 0 14px;
    overflow-x: auto;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0 0 12px;
    background: var(--soft);
    box-shadow: none;
    scrollbar-width: thin;
  }

  .admin-tab {
    justify-content: center;
    width: auto;
    min-height: 42px;
    flex: 0 0 auto;
    border-color: var(--line);
    border-radius: 8px;
    padding: 10px 14px;
    background: #ffffff;
    color: var(--ink);
    white-space: nowrap;
  }

  .admin-section > .panel {
    max-width: 100%;
  }

  .loyalty-stat-grid,
  .loyalty-period-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.super-admin-banner {
  width: min(100%, 960px);
  margin: 0 auto 22px;
}

.admin-notification-center {
  width: min(100%, 960px);
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.admin-blog-center {
  width: min(100%, 960px);
  margin: 0 auto 18px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f2fbf9 100%);
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.admin-blog-center:not(.hidden) {
  animation: blogDropIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both, blogGlow 1600ms ease 260ms both;
}

.admin-notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-notification-header h2 {
  margin: 0;
  font-size: 22px;
}

.admin-blog-center .eyebrow {
  margin-bottom: 4px;
}

.admin-notification-header span {
  color: var(--muted);
  font-weight: 800;
}

.admin-blog-list {
  display: grid;
  gap: 12px;
}

.notification-permission {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 80;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 18px;
  width: min(calc(100% - 34px), 560px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 46px 34px 34px;
  background: #ffffff !important;
  background-image: none !important;
  color: var(--ink);
  font-weight: 400;
  text-align: center;
  box-shadow:
    0 0 0 9999px rgba(17, 24, 39, 0.48),
    0 32px 90px rgba(31, 41, 51, 0.28);
  animation: notificationPop 300ms ease both;
}

.notification-permission::before {
  content: none;
}

.notification-permission small {
  width: max-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 107, 0, 0.14);
  color: #b23a0f;
  font-size: 14px;
  font-weight: 500;
}

.notification-permission h2,
.notification-permission p {
  margin: 0;
}

.notification-permission h2 {
  color: var(--ink);
  max-width: 440px;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.04;
  font-weight: 800;
}

.notification-permission p {
  max-width: 470px;
  color: #364152;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.34;
}

.notification-permission .ghost-button {
  min-height: 54px;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 400;
}

.notification-permission strong {
  color: #b23a0f;
  font-weight: 700;
}

.notification-permission-actions {
  display: grid;
  gap: 8px;
  width: min(100%, 440px);
}

#enableNotificationsButton {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.notification-remind-link {
  justify-self: center;
  border: 0 !important;
  padding: 4px 8px;
  background: transparent !important;
  box-shadow: none !important;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notification-permission-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.16);
  color: #b23a0f;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

@keyframes notificationPop {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 560px) {
  .notification-permission {
    padding: 40px 18px 22px;
  }

  .notification-permission-actions {
    grid-template-columns: 1fr;
  }
}

.admin-blog-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #dbe7e4;
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-blog-item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

.admin-blog-item.unread {
  border-color: rgba(255, 107, 0, 0.45);
}

.admin-blog-item img,
.admin-blog-placeholder {
  width: 76px;
  height: 58px;
  border-radius: 10px;
}

.admin-blog-item img {
  object-fit: cover;
}

.admin-blog-placeholder {
  display: grid;
  place-items: center;
  background: #6b4bff;
  color: #ffffff;
  font-weight: 900;
}

.admin-blog-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.admin-blog-copy strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.admin-blog-copy em {
  overflow: hidden;
  color: #667085;
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-blog-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-blog-meta b {
  border-radius: 999px;
  padding: 4px 8px;
  background: #6b4bff;
  color: #ffffff;
  font-size: 12px;
}

.admin-blog-toggle {
  justify-self: start;
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff7ed;
  color: #9a3412;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

@keyframes blogDropIn {
  from {
    transform: translateY(-26px);
    opacity: 0;
  }

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

@keyframes blogGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 107, 0, 0), 0 12px 30px rgba(31, 41, 51, 0.08);
  }

  35% {
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12), 0 18px 42px rgba(31, 41, 51, 0.12);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 107, 0, 0), 0 12px 30px rgba(31, 41, 51, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .admin-blog-center:not(.hidden) {
    animation: none;
  }
}

.admin-notification-list {
  display: grid;
  gap: 12px;
}

.admin-notification-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #edf2f7;
  padding: 10px 0 14px;
}

.admin-notification-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-notification-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--notification-color);
  color: #ffffff;
}

.admin-notification-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-notification-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.admin-notification-copy strong {
  font-size: 18px;
  font-weight: 800;
}

.admin-notification-copy em {
  overflow: hidden;
  color: #667085;
  font-size: 15px;
  font-style: normal;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-notification-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.admin-notification-meta b {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 0 7px;
  background: #6b4bff;
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
}

.super-admin-banner-slides {
  position: relative;
  aspect-ratio: 16 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d8dee8;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.super-admin-banner-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.super-admin-banner-slide.active {
  opacity: 1;
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.admin-tab-parent {
  min-height: 48px;
  justify-content: space-between;
  gap: 12px;
  line-height: 1;
}

.admin-tab-parent::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: currentColor;
  margin-left: auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 160ms ease;
}

.admin-tab-parent[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.admin-tab-parent,
.admin-tab-parent.active,
.admin-tab-parent:hover {
  border-color: transparent;
  background: transparent;
  color: #667085;
}

.admin-tab.active,
.admin-tab:hover {
  border-color: #8bd2c9;
  background: #e7f5f2;
  color: var(--accent-strong);
}

.admin-tab-group {
  display: grid;
  gap: 6px;
}

.admin-subtabs {
  display: grid;
  gap: 4px;
  padding-left: 12px;
}

.admin-subtab-group,
.admin-nested-subtabs {
  display: grid;
  gap: 4px;
}

.admin-nested-subtabs {
  padding-left: 16px;
}

.admin-subtab {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  border-left: 2px solid var(--line);
  padding: 8px 12px;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-align: left;
}

.admin-subtab-parent {
  justify-content: space-between;
}

.admin-subtab-parent::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 160ms ease;
}

.admin-subtab-parent[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.admin-subtab.active,
.admin-subtab:hover {
  border-left-color: var(--accent);
  color: var(--accent-strong);
}

.logout-tab {
  margin-left: 0;
  margin-top: 8px;
  border-color: #f4c7c3;
  color: var(--warn);
}

@media (max-width: 880px) {
  .admin-tabs {
    position: static;
    display: flex;
    gap: 10px;
    margin: 0 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0 0 12px;
    background: var(--soft);
    box-shadow: none;
    scrollbar-width: thin;
  }

  .admin-tab {
    justify-content: center;
    width: auto;
    min-width: max-content;
    min-height: 42px;
    flex: 0 0 auto;
    border-color: transparent;
    border-radius: 8px;
    padding: 10px 14px;
    background: transparent;
    color: #667085;
    white-space: nowrap;
    text-align: center;
  }

  .admin-tab-group {
    display: contents;
  }

  .admin-subtabs {
    display: flex;
    gap: 10px;
    padding-left: 0;
  }

  .admin-subtab-group,
  .admin-nested-subtabs {
    display: flex;
    gap: 10px;
  }

  .admin-nested-subtabs {
    padding-left: 0;
  }

  .admin-subtab {
    justify-content: center;
    min-width: max-content;
    min-height: 38px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    background: #ffffff;
    white-space: nowrap;
  }

  .admin-tab.active,
  .admin-tab:hover {
    border-color: #8bd2c9;
    background: #e7f5f2;
    color: var(--accent-strong);
  }

  .logout-tab {
    margin-top: 0;
  }
}

.admin-section {
  margin-top: 20px;
}

.admin-section > .panel {
  max-width: 760px;
}

.logo-upload-block,
.external-menu-block {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.color-settings {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.color-settings h3 {
  margin: 0;
  font-size: 18px;
}

.color-settings p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.color-settings input[type="color"] {
  width: 74px;
  height: 44px;
  padding: 4px;
}

.rgb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.logo-upload-block h3,
.external-menu-block h3 {
  margin: 0;
  font-size: 18px;
}

.logo-upload-block p,
.external-menu-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.sync-status {
  align-self: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-note {
  margin: 10px 0 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.logo-preview {
  display: grid;
  place-items: center;
  width: min(100%, 240px);
  height: 82px;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-footer-settings {
  display: flex;
  justify-content: center;
  margin: 26px 0 0;
}

.super-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.super-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.06);
}

.super-nav {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 14px;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.super-nav.active,
.super-nav:hover {
  border-color: rgba(15, 118, 110, 0.2);
  background: #e9f8f5;
  color: var(--accent-strong);
}

.super-content .admin-section {
  margin-top: 0;
}

.blog-editor textarea {
  resize: vertical;
}

.text-link-button {
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.login-wrap {
  display: grid;
  min-height: calc(100vh - 150px);
  place-items: center;
}

.login-card {
  width: min(100%, 440px);
}

.login-card h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 5vw, 46px);
}

.login-card p {
  color: var(--muted);
  line-height: 1.5;
}

.remember-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-weight: 800;
}

.remember-login input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.panel,
.products-panel {
  padding: 22px;
}

.admin-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

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

.check-row {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.primary-button {
  background: var(--accent);
  color: #ffffff;
}

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

.publish-button {
  background: #f97316;
}

.publish-button:hover {
  background: #ea580c;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.danger-button {
  background: #fff1f0;
  color: var(--warn);
}

.section-title-row,
.admin-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-title-row span {
  color: var(--muted);
  font-weight: 800;
}

.section-title-row-nested {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.section-toggle-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.section-toggle-button i {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.section-toggle-button[aria-expanded="false"] i {
  transform: rotate(-45deg);
}

.admin-products {
  display: grid;
  gap: 12px;
}

.privacy-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.member-admin-product {
  align-items: flex-start;
}

.member-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.member-data-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.member-data-grid strong {
  color: var(--ink);
  font-size: 12px;
}

.home-product-venue-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: none;
}

.home-product-venue-tabs::-webkit-scrollbar {
  display: none;
}

.home-product-venue-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.home-product-venue-tabs button.active {
  border-color: rgba(107, 75, 255, 0.35);
  background: rgba(107, 75, 255, 0.1);
  color: var(--platform-action, #6b4bff);
}

.home-product-venue-tabs span {
  color: var(--muted);
  font-size: 12px;
}

.admin-product-category {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.admin-product-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.admin-product-category-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 950;
}

.admin-product-category-toggle::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 160ms ease;
}

.admin-product-category-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.admin-product-category-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product-category-toggle small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.admin-category-edit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 12px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding: 12px;
  background: #f8fafc;
}

.admin-category-edit-panel .button-row {
  align-self: end;
}

.admin-product-category-items {
  border-top: 1px solid var(--line);
  padding: 0 12px 8px;
}

.admin-product {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.admin-product.dragging {
  opacity: 0.48;
}

.drag-handle {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  cursor: grab;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.drag-handle:active {
  cursor: grabbing;
}

.admin-product:first-child {
  border-top: 0;
}

.admin-product h3 {
  margin: 0 0 4px;
}

.admin-product p {
  margin: 0;
  color: var(--muted);
}

.super-promotion-product {
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
}

.super-promotion-product img {
  width: 96px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: #edf2f7;
}

.super-promotion-product .admin-actions {
  grid-column: auto;
}

.admin-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-admin-product {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.category-admin-product .drag-handle {
  align-self: center;
}

.category-admin-product .admin-row-main {
  align-self: center;
}

.category-admin-product .admin-actions {
  grid-column: auto;
  align-self: center;
  flex-wrap: nowrap;
}

.category-admin-product .admin-actions .ghost-button,
.category-admin-product .admin-actions .danger-button {
  min-width: 96px;
  justify-content: center;
}

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

.shop-admin-product .admin-row-main,
.shop-admin-product .admin-actions {
  grid-column: 1;
}

.shop-admin-product .admin-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  width: 100%;
}

.shop-admin-product .admin-actions .ghost-button,
.shop-admin-product .admin-actions .danger-button {
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.main-category-admin-product {
  grid-template-columns: auto 64px minmax(0, 1fr);
  align-items: center;
}

.main-category-admin-product .drag-handle {
  align-self: center;
}

.main-category-admin-product .admin-actions {
  grid-column: 3;
}

.main-category-admin-thumb {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  background: #eef2f7;
}

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

.qr-preview {
  display: grid;
  place-items: center;
  padding: 28px;
}

.qr-preview img {
  width: min(100%, 260px);
  aspect-ratio: 1;
}

.print-menu-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.print-menu-panel h2,
.print-menu-panel p {
  margin: 0;
}

.print-menu-panel p {
  margin-top: 6px;
  color: var(--muted);
}

.print-menu-panel .primary-button {
  flex: 0 0 auto;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 132px;
  z-index: 80;
  max-width: 320px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  padding: 13px 16px;
  background: #1f2933;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.admin-blog-fab {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 55;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 22px;
  background: #ff5a00;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(255, 107, 0, 0.28);
}

.admin-blog-fab span,
.admin-blog-fab svg {
  width: 30px;
  height: 30px;
}

.admin-blog-fab svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-blog-fab b {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 0 7px;
  background: #e11d48;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 40;
  display: grid;
  width: min(100%, 760px);
  min-height: 108px;
  transform: translateX(-50%);
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: 10px 8px 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -18px 42px rgba(31, 41, 51, 0.14);
  backdrop-filter: blur(16px);
}

.admin-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 45;
  width: min(calc(100% - 28px), 420px);
  transform: translateX(-50%);
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.16);
  backdrop-filter: blur(16px);
}

.admin-bottom-nav-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.admin-bottom-nav-item span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.admin-bottom-nav-item svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-bottom-nav-item strong {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.admin-qr-modal {
  z-index: 90;
  place-items: center;
  padding: 18px;
}

.admin-qr-card {
  display: grid;
  gap: 14px;
  width: min(100%, 460px);
  max-height: min(92vh, 820px);
  border-radius: 28px;
  padding: 20px;
}

.admin-qr-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  margin-right: 34px;
}

.admin-qr-head button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.admin-qr-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.admin-qr-copy {
  margin: 0 auto;
  max-width: 340px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.admin-qr-copy strong {
  color: var(--accent-strong);
  font-weight: 700;
}

.admin-earn-token-button {
  width: 100%;
  border-radius: 18px;
  min-height: 62px;
  font-size: 18px;
  font-weight: 500;
}

.admin-fast-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: #ffffff;
}

.admin-fast-card.primary {
  border-color: rgba(15, 118, 110, 0.24);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.07), #ffffff);
}

.admin-fast-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.admin-manual-card summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.admin-manual-card[open] summary {
  margin-bottom: 4px;
}

.business-earn-token-preview {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: #ffffff;
}

.business-earn-token-preview.hidden {
  display: none;
}

.business-earn-token-preview img {
  width: min(58vw, 220px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  background: #ffffff;
}

.business-earn-token-preview small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.business-token-countdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.business-token-countdown i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.business-token-countdown b {
  font-weight: 500;
}

.admin-earn-token-button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.admin-fast-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-fast-section-title strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.admin-fast-section-title span,
.quick-cashier-activity p {
  color: var(--muted);
  font-size: 13px;
}

.quick-cashier-activity {
  display: grid;
  gap: 8px;
}

.quick-cashier-activity article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.quick-cashier-activity article:first-child {
  border-top: 0;
  padding-top: 0;
}

.quick-cashier-activity article > span {
  min-width: 68px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.quick-cashier-activity .earn {
  background: #e6f4f1;
  color: var(--accent-strong);
}

.quick-cashier-activity .redeem {
  background: #fff3e8;
  color: var(--obiop-orange);
}

.quick-cashier-activity strong,
.quick-cashier-activity small {
  display: block;
}

.quick-cashier-activity strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-cashier-activity small {
  color: var(--muted);
  font-size: 12px;
}

.admin-qr-reader {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72vw, 250px);
  aspect-ratio: 1;
  margin: 18px auto 8px;
}

.admin-qr-reader svg {
  width: 72%;
  height: 72%;
  fill: none;
  stroke: #111827;
  stroke-width: 5.5;
  stroke-linejoin: miter;
}

.qr-corner {
  position: absolute;
  width: 54px;
  height: 54px;
  border-color: var(--accent-strong);
  border-style: solid;
}

.qr-corner.top-left {
  top: 0;
  left: 0;
  border-width: 8px 0 0 8px;
  border-radius: 18px 0 0 0;
}

.qr-corner.top-right {
  top: 0;
  right: 0;
  border-width: 8px 8px 0 0;
  border-radius: 0 18px 0 0;
}

.qr-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-width: 0 0 8px 8px;
  border-radius: 0 0 0 18px;
}

.qr-corner.bottom-right {
  right: 0;
  bottom: 0;
  border-width: 0 8px 8px 0;
  border-radius: 0 0 18px 0;
}

.admin-qr-code-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.admin-qr-code-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
}

.admin-qr-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.admin-qr-actions .primary-button,
.admin-qr-actions .ghost-button {
  min-height: 56px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 500;
}

#quickCashierStatus {
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

.bottom-nav-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bottom-nav-item {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #7a8492;
  cursor: pointer;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}

.bottom-nav .bottom-icon,
.bottom-nav .bottom-icon svg {
  color: #7a8492;
}

.bottom-more-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}

.nav-badge {
  position: absolute;
  top: 0;
  right: calc(50% - 30px);
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  padding: 0;
  background: #e11d48;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.bottom-brand-note {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: calc(100% - 28px);
  margin: 4px auto 0;
  border-top: 1px solid rgba(31, 41, 51, 0.12);
  padding-top: 6px;
  color: #8a94a3;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.bottom-brand-note strong {
  font-weight: 600;
}

.bottom-brand-note a {
  color: inherit;
}

.bottom-brand-note > a {
  flex: 0 0 auto;
  text-align: right;
}

.bottom-nav-item span:last-child {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-nav-main {
  color: var(--platform-action, #6b4bff);
  transform: translateY(-18px);
}

.bottom-nav-main::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--soft);
  z-index: -1;
}

.bottom-nav-main:has(.bottom-flow-mark) {
  transform: translate(-5px, -8px);
}

.bottom-nav-main:has(.bottom-flow-mark)::before {
  display: none;
}

.discover-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #7a8492;
  overflow: hidden;
}

.discover-mark svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.bottom-flow-mark {
  width: 31px;
  height: 31px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.bottom-flow-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.hubi-avatar-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.platform-discover-mark .hubi-avatar-icon {
  width: 82px;
  height: 78px;
  max-width: none;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  transform: translate(-5px, -8px);
}

.bottom-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.bottom-icon svg {
  width: 32px;
  height: 32px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-glyph svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.chef-glyph {
  width: 31px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.chef-glyph::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 17px;
  line-height: 1;
}

.heart-glyph,
.stars-glyph {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.heart-glyph svg,
.stars-glyph svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.favorite-button .heart-glyph {
  width: 26px;
  height: 26px;
}

.favorite-button .heart-glyph svg {
  width: 28px;
  height: 28px;
}

.favorite-button.active .heart-glyph svg {
  fill: currentColor;
}

.profile-glyph {
  width: 34px;
  height: 34px;
}

.bottom-nav,
.platform-bottom-nav {
  min-height: 76px;
  padding: 4px 8px 3px;
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    transform 180ms ease,
    border-radius 180ms ease;
}

.bottom-nav-item,
.platform-bottom-nav button {
  gap: 3px;
}

.bottom-brand-note,
.platform-brand-note {
  margin-top: 0;
  padding-top: 2px;
  font-size: 10px;
}

.bottom-icon svg,
.platform-bottom-nav .bottom-icon svg {
  width: 27px;
  height: 27px;
}

.chef-glyph,
.heart-glyph,
.stars-glyph,
.profile-glyph {
  width: 27px;
  height: 27px;
}

.discover-mark,
.platform-nav-main .discover-mark {
  width: 46px;
  height: 46px;
}

.bottom-nav-main,
.platform-nav-main {
  transform: translateY(-8px);
}

.bottom-nav-main::before,
.platform-nav-main::before {
  top: -2px;
  width: 58px;
  height: 58px;
}

.platform-discover-mark .hubi-avatar-icon {
  width: 68px;
  height: 64px;
  max-width: none;
  transform: translate(-4px, -8px);
}

body.compact-bottom-nav .bottom-nav,
body.compact-bottom-nav .platform-bottom-nav {
  min-height: 54px;
  padding: 4px 8px max(4px, env(safe-area-inset-bottom));
  border-radius: 16px 16px 0 0;
  transform: translateX(-50%) translateY(24px);
}

body.compact-bottom-nav .bottom-brand-note,
body.compact-bottom-nav .platform-brand-note,
body.compact-bottom-nav .bottom-nav-item > span:last-child,
body.compact-bottom-nav .platform-bottom-nav button > strong {
  display: none;
}

body.compact-bottom-nav .bottom-nav-item,
body.compact-bottom-nav .platform-bottom-nav button {
  align-content: start;
  padding-top: 2px;
}

body.compact-bottom-nav .bottom-nav-main,
body.compact-bottom-nav .platform-nav-main {
  transform: translateY(-7px);
}

body.compact-bottom-nav .discover-mark,
body.compact-bottom-nav .platform-nav-main .discover-mark {
  width: 42px;
  height: 42px;
}

body.compact-bottom-nav .bottom-nav-main::before,
body.compact-bottom-nav .platform-nav-main::before {
  width: 50px;
  height: 50px;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: end center;
  padding: 20px;
  background: rgba(12, 18, 24, 0.56);
}

.visitor-notification {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 18, 24, 0.1), rgba(12, 18, 24, 0.5));
}

.visitor-notification-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 90px rgba(12, 18, 24, 0.24);
  animation: notificationSlideUp 360ms ease both;
}

.visitor-notification-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.visitor-notification-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #6b4bff;
  color: #ffffff;
}

.visitor-notification-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visitor-notification-card h2 {
  margin: 3px 0 6px;
  font-size: 24px;
}

.visitor-notification-card p {
  margin: 0;
  color: var(--muted);
}

.visitor-notification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.visitor-notification-allow {
  background: #6b4bff;
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.24);
}

.visitor-notification-allow:hover {
  background: #f05f00;
}

@keyframes notificationSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.member-card {
  position: relative;
  width: min(100%, 460px);
  max-height: min(720px, calc(100vh - 40px));
  overflow-y: auto;
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(12, 18, 24, 0.28);
}

.member-modal.profile-fullscreen {
  place-items: stretch;
  padding: 0;
  background: #efe7dd;
}

.member-modal.profile-fullscreen .member-card {
  width: min(100%, 430px);
  max-height: none;
  min-height: 100vh;
  margin: 0 auto;
  border-radius: 0;
  padding: 22px 18px max(96px, env(safe-area-inset-bottom));
  box-shadow: none;
  scrollbar-width: none;
}

.member-modal.profile-fullscreen .member-card::-webkit-scrollbar {
  display: none;
}

.member-modal.profile-fullscreen .member-close {
  display: none;
}

.member-profile-page {
  display: grid;
  gap: 12px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.social-profile-page {
  display: grid;
  gap: 16px;
  width: calc(100% + 36px);
  margin: -22px -18px 0;
  padding-bottom: 24px;
  background: #ffffff;
}

.social-profile-hero {
  position: relative;
  min-height: 190px;
  border-radius: 0 0 54% 54% / 0 0 24% 24%;
  background:
    radial-gradient(circle at 14% 86%, rgba(255, 255, 255, 0.13) 0 86px, transparent 87px),
    linear-gradient(135deg, #5d38f4, #8758ff);
}

.social-profile-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 82px;
  border-radius: 50% 50% 0 0;
  background: #ffffff;
}

.social-profile-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.social-profile-actions button {
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 32px;
  line-height: 1;
}

.social-profile-share-icon {
  display: block;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.social-profile-actions span {
  display: inline-flex;
  gap: 18px;
}

.social-profile-avatar {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -42px;
  width: 126px;
  height: 126px;
  transform: translateX(-50%);
}

.social-profile-avatar img {
  width: 100%;
  height: 100%;
  border: 6px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.2);
}

.social-profile-avatar button {
  position: absolute;
  right: -4px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.16);
}

.social-profile-info {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 54px 24px 0;
  text-align: center;
}

.social-profile-info h2,
.social-profile-info p,
.social-profile-info em,
.social-profile-info small {
  margin: 0;
}

.social-profile-info h2 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
}

.social-profile-info p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.social-profile-info p b {
  border-radius: 999px;
  padding: 2px 10px;
  background: #ede7ff;
  color: var(--platform-action, #6b4bff);
  font-size: 13px;
}

.social-profile-info em {
  max-width: 300px;
  color: #1f2937;
  font-size: 15px;
  font-style: normal;
  line-height: 1.4;
}

.social-profile-info small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.social-profile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 4px 24px 2px;
}

.social-profile-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.06);
}

.social-profile-links span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.social-profile-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-profile-links strong {
  max-width: 180px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
}

.social-profile-stats button {
  display: grid;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 16px 8px;
  color: var(--ink);
  font: inherit;
  text-align: center;
}

.social-profile-stats strong {
  color: var(--platform-action, #6b4bff);
  font-size: 20px;
}

.social-profile-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.social-profile-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 0 28px;
}

.social-profile-tabs button {
  position: relative;
  white-space: nowrap;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.social-profile-tabs button span {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 5px;
  place-items: center;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

.social-profile-tabs button.active {
  color: var(--platform-action, #6b4bff);
}

.social-profile-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--platform-action, #6b4bff);
}

.social-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 0 28px;
}

.social-profile-grid img,
.social-profile-grid button {
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
}

.social-profile-grid button {
  display: grid;
  place-items: center;
  padding: 10px;
  background: #f3efff;
  color: var(--platform-action, #6b4bff);
  font: inherit;
  text-align: center;
}

.social-profile-tab-panel {
  display: grid;
  gap: 12px;
  padding: 0 28px;
}

.social-profile-tab-panel h3,
.social-profile-tab-panel p {
  margin: 0;
}

.social-profile-tab-panel h3 {
  color: var(--ink);
  font-size: 20px;
}

.social-profile-tab-panel p {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--muted);
  font-weight: 700;
}

.social-profile-favorite-venues {
  display: grid;
  gap: 10px;
  padding: 0 28px;
}

.social-profile-favorite-venues.inline {
  padding: 0;
}

.social-profile-favorite-venues h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.social-profile-favorite-venues > div {
  display: grid;
  gap: 8px;
}

.social-profile-favorite-venues article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}

.social-profile-favorite-venues a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.social-profile-favorite-venues article > button {
  justify-self: start;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff5f5;
  color: #dc2626;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.social-profile-favorite-venues img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.social-profile-favorite-venues strong,
.social-profile-favorite-venues small {
  display: block;
}

.social-profile-favorite-venues small {
  margin-top: 3px;
  color: var(--muted);
}

.social-profile-favorite-products,
.social-profile-comment-list {
  display: grid;
  gap: 8px;
}

.social-profile-favorite-products button,
.social-profile-comment-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  background: #ffffff;
  color: inherit;
  font: inherit;
  text-align: left;
}

.social-profile-favorite-products img,
.social-profile-comment-list img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.social-profile-favorite-products strong,
.social-profile-favorite-products small,
.social-profile-comment-list strong,
.social-profile-comment-list small {
  display: block;
}

.social-profile-favorite-products small,
.social-profile-comment-list small {
  margin-top: 3px;
  color: var(--muted);
}

.social-profile-notifications {
  display: grid;
  gap: 10px;
}

.social-profile-notifications article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid #dce4ef;
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
}

.social-profile-notifications article.unread {
  border-color: rgba(107, 75, 255, 0.36);
  background: #f5f2ff;
}

.social-profile-notifications img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.social-profile-notifications span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.social-profile-notifications strong,
.social-profile-notifications small,
.social-profile-notifications em {
  display: block;
  margin: 0;
}

.social-profile-notifications strong {
  color: var(--ink);
  font-size: 14px;
}

.social-profile-notifications small,
.social-profile-notifications em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.social-profile-notifications div {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.social-profile-notifications div button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.social-profile-notifications div button:last-child {
  background: #eef2f7;
  color: var(--muted);
}

.social-profile-categories {
  display: grid;
  gap: 12px;
  padding: 0 28px;
}

.social-profile-categories > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-profile-categories h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.social-profile-categories button {
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  font: inherit;
  font-weight: 400;
}

.social-profile-categories > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.social-profile-categories article {
  display: grid;
  gap: 4px;
  border-radius: 12px;
  padding: 10px;
  background: #f5f0ff;
}

.social-profile-categories article span {
  color: var(--platform-action, #6b4bff);
}

.social-profile-categories article strong {
  font-size: 12px;
}

.social-profile-categories article small {
  color: var(--muted);
  font-size: 12px;
}

.social-profile-obip {
  display: grid;
  gap: 4px;
  margin: 0 28px;
  border-radius: 14px;
  padding: 14px;
  background: #f3efff;
  color: var(--platform-action, #6b4bff);
}

.social-profile-obip span {
  color: var(--muted);
  font-size: 12px;
}

.profile-settings-page {
  display: grid;
  gap: 18px;
  width: calc(100% + 36px);
  min-height: 100vh;
  margin: -22px -18px 0;
  padding: 0 18px 24px;
  background: linear-gradient(180deg, #6b42f6 0 132px, #ffffff 132px 100%);
  color: var(--ink);
}

.profile-settings-hero {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-height: 76px;
  color: #ffffff;
}

.profile-settings-hero button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
}

.profile-settings-hero h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.profile-settings-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  border: 0;
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  color: inherit;
  text-align: left;
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.12);
  cursor: pointer;
}

.profile-settings-avatar {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
}

.profile-settings-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-settings-avatar i {
  position: absolute;
  right: -8px;
  bottom: -2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.16);
}

.profile-settings-avatar svg {
  width: 18px;
  height: 18px;
}

.profile-settings-card span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.profile-settings-card strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.profile-settings-card small {
  color: #667085;
  font-size: 14px;
}

.profile-settings-card em {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 12px;
  background: #f0e9ff;
  color: var(--platform-action, #6b4bff);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.profile-settings-card b,
.profile-settings-row i {
  color: #667085;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
}

.profile-settings-group {
  display: grid;
  gap: 10px;
}

.profile-settings-group h3 {
  margin: 0 4px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.profile-settings-group > div {
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: 12px;
  background: #ffffff;
}

.profile-settings-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(216, 222, 232, 0.72);
  padding: 0 14px;
  background: #ffffff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.profile-settings-row:last-child {
  border-bottom: 0;
}

.profile-settings-icon {
  display: grid;
  place-items: center;
  color: var(--platform-action, #6b4bff);
}

.profile-settings-icon svg,
.profile-settings-logout svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.profile-settings-row strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.profile-settings-row em {
  color: var(--platform-action, #6b4bff);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.profile-settings-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: 12px;
  background: #ffffff;
  color: #ef4444;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.profile-settings-version {
  color: #667085;
  font-size: 12px;
  text-align: center;
}

.profile-edit-page {
  display: grid;
  gap: 14px;
  width: calc(100% + 36px);
  min-height: 100vh;
  margin: -22px -18px 0;
  padding: 0 14px 24px;
  background: #ffffff;
  color: var(--ink);
}

.profile-edit-topbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-height: 74px;
}

.profile-edit-topbar button {
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.profile-edit-topbar h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.profile-edit-cover {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 160px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  padding-top: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12) 0 70px, transparent 71px),
    linear-gradient(135deg, #6339f5, #8b60ff);
}

.profile-edit-cover::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -54px;
  height: 116px;
  border-radius: 50% 50% 0 0;
  background: #ffffff;
}

.profile-edit-avatar {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
}

.profile-edit-avatar img {
  width: 100%;
  height: 100%;
  border: 6px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.18);
}

.profile-edit-avatar button {
  position: absolute;
  right: -8px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--platform-action, #6b4bff);
  box-shadow: 0 10px 20px rgba(31, 41, 55, 0.16);
}

.profile-edit-avatar svg,
.profile-edit-photo-button svg,
.profile-edit-control svg,
.profile-edit-link-row svg,
.profile-edit-add-link svg,
.profile-edit-switch-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.profile-edit-photo-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.profile-edit-panel {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(216, 222, 232, 0.82);
  border-radius: 10px;
  padding: 18px 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.04);
}

.profile-edit-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.profile-edit-field {
  display: grid;
  gap: 8px;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

.profile-edit-control {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-radius: 9px;
  padding: 0 12px;
  color: var(--platform-action, #6b4bff);
}

.profile-edit-control:focus-within {
  border-color: var(--platform-action, #6b4bff);
  box-shadow: 0 0 0 3px rgba(107, 75, 255, 0.12);
}

.profile-edit-control:has(input[aria-invalid="true"]) {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.profile-edit-control.textarea {
  align-items: start;
  min-height: 88px;
  padding-top: 12px;
}

.profile-edit-control input,
.profile-edit-control textarea,
.profile-edit-link-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.profile-edit-control textarea {
  resize: none;
  line-height: 1.45;
}

.profile-edit-control small {
  align-self: end;
  color: #8a94a3;
  font-size: 12px;
}

.profile-edit-control b {
  color: #667085;
  font-size: 20px;
  font-weight: 400;
}

.profile-edit-row,
.profile-edit-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-radius: 9px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.profile-edit-row em {
  border-radius: 999px;
  padding: 5px 12px;
  background: #f0e9ff;
  color: var(--platform-action, #6b4bff);
  font-style: normal;
  font-weight: 700;
}

.profile-edit-row i,
.profile-edit-link-row b {
  color: #667085;
  font-size: 22px;
  font-style: normal;
}

.profile-edit-link-row {
  grid-template-columns: 34px minmax(0, 1fr) auto 18px;
}

.profile-edit-link-row i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f5f0ff;
  color: var(--platform-action, #6b4bff);
}

.profile-edit-link-row i.instagram {
  color: #ec4899;
}

.profile-edit-link-row input {
  color: #667085;
  text-align: right;
}

.profile-edit-add-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--platform-action, #6b4bff);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.profile-edit-switch-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
}

.profile-edit-switch-row > i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f5f0ff;
  color: var(--platform-action, #6b4bff);
}

.profile-edit-switch-row span {
  display: grid;
  gap: 3px;
}

.profile-edit-switch-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.profile-edit-switch-row small {
  color: #8a94a3;
  font-size: 12px;
  line-height: 1.35;
}

.profile-edit-switch-row input {
  appearance: none;
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #e5e7eb;
  cursor: pointer;
}

.profile-edit-switch-row input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(31, 41, 55, 0.18);
  transition: transform 160ms ease;
}

.profile-edit-switch-row input:checked {
  background: var(--platform-action, #6b4bff);
}

.profile-edit-switch-row input:checked::after {
  transform: translateX(22px);
}

.profile-edit-save {
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(107, 75, 255, 0.2);
}

.profile-edit-save:disabled {
  background: #c7cbd6;
  box-shadow: none;
  cursor: not-allowed;
}

.member-profile-topbar button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #6b4bff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.member-profile-head {
  display: grid;
  gap: 4px;
  padding-right: 42px;
}

.member-profile-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.member-profile-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.member-points-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #6b4bff, #5838e8);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(107, 75, 255, 0.24);
}

.member-points-card span {
  display: block;
  margin-bottom: 6px;
  opacity: 0.9;
  font-size: 13px;
  font-weight: 400;
}

.member-points-card strong {
  display: block;
  font-size: clamp(32px, 10vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.obip-icon.profile {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #ffffff;
  color: #6b4bff;
  box-shadow: 0 10px 24px rgba(12, 18, 24, 0.14);
  font-size: 28px;
}

.member-profile-title {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.member-profile-actions {
  display: grid;
  gap: 10px;
}

.member-profile-actions button,
.member-security-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(216, 222, 232, 0.72);
  border-radius: 14px;
  padding: 11px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.055);
}

.member-profile-actions button {
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.member-profile-actions b,
.member-security-card b {
  font-size: 15px;
  font-weight: 500;
}

.member-profile-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.member-profile-actions small,
.member-security-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.member-profile-actions i {
  color: var(--muted);
  font-size: 34px;
  font-style: normal;
  line-height: 1;
}

.member-profile-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #f0edff;
  color: #6b4bff;
}

.member-profile-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member-security-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.member-security-card > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.member-security-card button {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  background: #ffffff;
  color: #6b4bff;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.profile-summary.compact {
  margin: 0;
  border-radius: 14px;
  background: #f8fafc;
}

.profile-summary.compact span {
  font-size: 12px;
  font-weight: 400;
}

.profile-back-button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 8px 0;
  background: transparent;
  color: #6b4bff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
}

.profile-muted-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.profile-earned-list .loyalty-venue-list {
  margin-top: 0;
}

.loyalty-card-showcase {
  display: grid;
  gap: 16px;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-bottom: 104px;
}

.loyalty-card-topbar {
  margin: -22px -18px 8px;
  position: static;
  background: var(--platform-topbar, #5838e8) !important;
  color: #f8fafc !important;
}

body.public-venue-shell .loyalty-card-topbar {
  min-height: 76px;
  padding: 12px 14px;
  background: var(--platform-topbar, #5838e8) !important;
  color: #f8fafc !important;
  box-shadow: 0 12px 34px rgba(31, 41, 51, 0.12);
}

body.public-venue-shell .loyalty-card-topbar .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f4b942;
  color: #1f2933;
}

body.public-venue-shell .loyalty-card-topbar .brand strong,
body.public-venue-shell .loyalty-card-topbar .brand small {
  color: inherit;
}

body.public-venue-shell .loyalty-card-topbar .brand small {
  color: rgba(255, 255, 255, 0.78);
}

body.public-venue-shell .loyalty-card-topbar .icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.loyalty-card-venue-topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  margin: -22px -18px 8px;
}

body.theme-dark .member-modal.profile-fullscreen .member-card {
  background: #050505;
  color: #f8fafc;
}

body.theme-dark .loyalty-card-venue-topbar {
  background: #050505;
  color: #ffffff;
}

body.theme-dark .loyalty-card-venue-topbar .brand strong,
body.theme-dark .member-profile-head h2 {
  color: #f8fafc;
}

body.theme-dark .loyalty-card-venue-topbar .brand small,
body.theme-dark .member-profile-head span,
body.theme-dark .profile-muted-copy,
body.theme-dark .loyalty-customer-code-form label {
  color: #a7b0bf;
}

body.theme-dark .loyalty-card-venue-topbar .icon-button {
  color: #ffffff;
}

body.theme-dark .loyalty-card-venue-topbar .hamburger-icon,
body.theme-dark .loyalty-card-venue-topbar .hamburger-icon::before,
body.theme-dark .loyalty-card-venue-topbar .hamburger-icon::after,
body.theme-dark .loyalty-card-venue-topbar .search-icon::after {
  background: currentColor !important;
}

body.theme-dark .loyalty-card-venue-topbar .search-icon {
  border-color: currentColor;
}

body.theme-dark .loyalty-customer-code-form input {
  border-color: rgba(255, 255, 255, 0.14);
  background: #111111;
  color: #f8fafc;
}

.loyalty-card-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 90;
  width: min(100%, 430px);
  min-height: 86px;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
  border: 1px solid rgba(207, 216, 228, 0.92);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -18px 46px rgba(31, 41, 51, 0.16);
  transform: translateX(-50%);
}

.loyalty-card-bottom-nav .bottom-icon,
.loyalty-card-bottom-nav .bottom-icon svg {
  color: #7a8492;
}

.loyalty-card-bottom-nav .bottom-nav-item.is-active {
  color: var(--platform-action, #6b4bff);
}

.loyalty-card-bottom-nav .bottom-brand-note {
  width: calc(100% - 28px);
}

.loyalty-card-large {
  position: relative;
  overflow: hidden;
  width: min(100%, 340px);
  margin: 0 auto;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #2f6bb7 0%, #6b4bff 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.loyalty-card-large::before {
  content: "";
  position: absolute;
  inset: -20% -18%;
  background: linear-gradient(18deg, transparent 35%, rgba(255, 255, 255, 0.13) 36%, rgba(255, 255, 255, 0.13) 47%, transparent 48%);
  pointer-events: none;
}

.loyalty-card-large .loyalty-reward-grid {
  position: relative;
  margin-top: 0;
}

.loyalty-card-large .loyalty-reward-item {
  min-height: 430px;
  padding: 26px 24px 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.loyalty-card-large .loyalty-reward-grid.single .loyalty-reward-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  justify-items: stretch;
  max-width: none;
  text-align: left;
}

body.public-venue-shell .loyalty-card-large .loyalty-reward-grid.single .loyalty-reward-item {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  justify-items: stretch;
  max-width: none;
  padding: 26px 24px 22px;
}

.loyalty-card-large .loyalty-reward-grid.stamp-style {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.loyalty-card-large .loyalty-stamp-head {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.loyalty-card-large .loyalty-stamp-head > div {
  display: grid;
  justify-items: center;
}

.loyalty-card-large .loyalty-stamp-head h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.loyalty-card-large .loyalty-stamp-head small {
  margin-top: 8px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.loyalty-card-large .loyalty-stamp-head strong {
  margin-top: 4px;
  font-size: 46px;
  font-weight: 500;
}

.loyalty-card-large .loyalty-stamp-board {
  width: min(100%, 204px);
  margin: 12px auto 16px;
  gap: 8px;
}

.loyalty-card-large .loyalty-stamp-board em {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.26);
}

.loyalty-card-large .loyalty-stamp-board span.active em {
  background: rgba(255, 255, 255, 0.92);
}

.loyalty-card-large .loyalty-stamp-board i {
  width: 30px;
  height: 30px;
  border-width: 3px;
  font-size: 12px;
}

.loyalty-card-large .loyalty-stamp-head,
.loyalty-card-large .loyalty-stamp-board,
.loyalty-card-large .loyalty-reward-copy {
  position: relative;
  z-index: 1;
}

.loyalty-card-large .loyalty-reward-copy {
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.loyalty-card-large .loyalty-reward-item h3 {
  display: block;
}

.loyalty-card-large .loyalty-reward-item p,
.loyalty-card-large .loyalty-reward-item b,
.loyalty-card-large .loyalty-reward-item small {
  color: #ffffff;
}

.loyalty-card-large .loyalty-reward-item p {
  color: #ffffff !important;
  font-size: 17px;
  opacity: 0.9;
}

.loyalty-card-large .loyalty-reward-item b {
  font-size: 18px;
  font-weight: 500;
}

.loyalty-card-large .loyalty-reward-item small {
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.9;
}

.loyalty-card-large .loyalty-ring {
  width: 142px;
  height: 142px;
}

.loyalty-card-large .loyalty-ring-icon {
  font-size: 46px;
}

.loyalty-card-large .loyalty-ring strong {
  font-size: 28px;
  color: #ffffff;
}

.loyalty-card-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  justify-content: center;
  gap: 10px;
}

.loyalty-card-actions .primary-button,
.loyalty-card-actions .ghost-button {
  width: min(100%, 250px);
  min-height: 52px;
  border-radius: 14px;
  padding: 12px;
  font-weight: 500;
}

.loyalty-card-actions .primary-button.is-disabled,
.loyalty-venue-head .ghost-button.is-disabled {
  border-color: #d8dee8;
  background: #e8edf5;
  color: #8a94a3;
  box-shadow: none;
  cursor: not-allowed;
}

.loyalty-customer-code-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.loyalty-customer-code-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.loyalty-customer-code-form .ghost-button {
  min-height: 54px;
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 500;
}

.loyalty-card-qr {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 18px 18px;
  background: #ffffff;
}

.loyalty-card-qr-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
}

.loyalty-card-qr img {
  width: min(70vw, 240px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  background: #ffffff;
}

.loyalty-card-qr small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.loyalty-home-hint {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(107, 75, 255, 0.36);
  border-radius: 18px;
  padding: 14px;
  background: rgba(107, 75, 255, 0.14);
  color: inherit;
  box-shadow: 0 12px 28px rgba(107, 75, 255, 0.1);
  cursor: pointer;
  text-align: left;
}

.loyalty-home-hint > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: rgba(107, 75, 255, 0.16);
  color: var(--platform-action, #6b4bff);
  font-size: 28px;
  font-weight: 700;
}

.loyalty-home-hint strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.loyalty-home-hint p {
  margin: 3px 0 0;
  color: var(--muted) !important;
  font-size: 13px;
  line-height: 1.45;
}

.loyalty-success-screen {
  display: grid;
  min-height: 100vh;
  background: #fffaf0;
}

.loyalty-success-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: calc(100vh - 110px);
  padding: 36px 24px;
  text-align: center;
}

.loyalty-success-check {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 4px solid #22c55e;
  border-radius: 50%;
  color: #22c55e;
  font-size: 44px;
  line-height: 1;
}

.loyalty-success-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
}

.loyalty-success-card p,
.loyalty-success-card small {
  max-width: 360px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.loyalty-success-card small {
  color: var(--accent-strong);
  font-weight: 600;
}

.member-profile-logout {
  margin-top: 14px;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: flex;
  justify-content: flex-start;
  background: rgba(17, 24, 39, 0.38);
}

.side-menu-panel {
  display: flex;
  flex-direction: column;
  width: min(82vw, 320px);
  height: 100%;
  padding: 20px;
  background: #ffffff;
  box-shadow: 26px 0 70px rgba(12, 18, 24, 0.24);
  animation: sideMenuIn 180ms ease-out;
}

.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.side-menu-head strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 1000;
}

.side-menu-head button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--ink);
  font-size: 30px;
  cursor: pointer;
}

.side-menu-panel > button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  color: var(--ink);
  padding: 15px 2px;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.side-menu-panel > button:hover {
  color: var(--accent);
}

.side-menu-language {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.side-menu-language > span {
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.side-menu-language-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.side-menu-language-options button {
  min-height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
}

.side-menu-language-options button.active {
  border-color: #6b4bff;
  background: #6b4bff;
  color: #ffffff;
}

.side-menu-footer {
  display: grid;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
}

.side-menu-socials {
  display: flex;
  gap: 10px;
}

.side-menu-socials button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.side-menu-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.side-social-instagram svg {
  stroke: url("#sideInstagramGradient");
}

.side-social-facebook {
  color: #1877f2;
}

.side-social-facebook svg,
.side-social-pinterest svg {
  fill: currentColor;
  stroke: none;
}

.side-social-x {
  color: #111827;
}

.side-social-youtube {
  color: #ff0033;
}

.side-social-youtube svg rect {
  fill: currentColor;
  stroke: none;
}

.side-social-youtube svg path {
  fill: #ffffff;
  stroke: none;
}

.side-social-pinterest {
  color: #bd081c;
}

.side-menu-feedback {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--platform-action, #6b4bff);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

@keyframes sideMenuIn {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.help-card textarea {
  resize: vertical;
}

.feedback-fab {
  position: fixed;
  right: 0;
  bottom: 206px;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 158px;
  border: 0;
  border-radius: 18px 0 0 18px;
  padding: 10px 12px 10px 10px;
  background: #6b4bff;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(255, 107, 0, 0.26);
  font-weight: 900;
  transform: translateX(calc(100% - 54px));
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feedback-fab:hover,
.feedback-fab:focus-visible {
  transform: translateX(0);
}

.feedback-fab span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.feedback-fab b {
  white-space: nowrap;
}

.feedback-card {
  gap: 14px;
}

.feedback-card > div {
  display: grid;
  gap: 14px;
}

.feedback-ratings {
  display: grid;
  gap: 8px;
  margin: 8px 0;
}

.feedback-rating-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-weight: 850;
}

.feedback-stars {
  display: inline-flex;
  gap: 3px;
}

.star-button {
  border: 0;
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.star-button.active {
  color: #f59e0b;
}

.feedback-thanks {
  min-height: 360px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.feedback-thanks span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 42px;
  font-weight: 900;
}

.feedback-thanks h2 {
  margin: 0;
}

.feedback-thanks p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.review-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
}

.review-card h3,
.review-card p {
  margin: 0;
}

.review-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #f59e0b;
  font-weight: 900;
}

.review-stars span {
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff7ed;
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-head strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: #ecfdf5;
  color: var(--accent-strong);
  font-size: 13px;
}

.review-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.category-popup-card {
  width: min(100%, 520px);
  padding: 14px;
}

.category-popup-view {
  display: grid;
  gap: 12px;
}

.category-popup-view img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.category-popup-view h2,
.category-popup-view p {
  margin: 0;
}

.blog-reader-card {
  width: min(100%, 680px);
  max-height: min(86vh, 780px);
}

.blog-reader {
  display: grid;
  gap: 14px;
}

.blog-back-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #6b4bff;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.24);
}

.blog-back-button span {
  font-size: 24px;
  line-height: 16px;
}

.blog-reader > img {
  width: 100%;
  max-height: 260px;
  border-radius: 12px;
  object-fit: cover;
}

.blog-reader h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
}

.blog-reader > strong {
  color: #667085;
  font-size: 17px;
  line-height: 1.45;
}

.blog-reader-body {
  display: grid;
  gap: 12px;
  color: #3f4a5a;
  font-size: 16px;
  line-height: 1.65;
}

.blog-reader-body p {
  margin: 0;
}

.blog-reader .primary-button {
  justify-self: start;
}

.blog-library {
  display: grid;
  gap: 12px;
}

.blog-library h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
}

.blog-library > p:not(.eyebrow) {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.45;
}

.blog-library-list {
  display: grid;
  gap: 10px;
}

.blog-library-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.blog-library-item.unread {
  border-color: rgba(225, 29, 72, 0.32);
  background: #fff7f8;
}

.blog-library-item img,
.blog-library-item .admin-blog-placeholder {
  width: 64px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.blog-library-item span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.blog-library-item strong {
  overflow: hidden;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-library-item small {
  overflow: hidden;
  color: var(--muted);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-library-item b,
.blog-library-item em {
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.blog-library-item b {
  background: #e11d48;
  color: #ffffff;
}

.blog-library-item em {
  background: #edf2f7;
  color: var(--muted);
}

.member-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #edf2f7;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.discover-card .member-close {
  width: 34px;
  height: 34px;
  background: #f1f5f9;
  font-size: 24px;
}

.member-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 44px 18px 0;
  border-radius: 12px;
  padding: 5px;
  background: #edf2f7;
}

.member-tab {
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.member-tab.active {
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.08);
}

.member-form {
  display: grid;
  gap: 12px;
}

.auth-modal {
  place-items: center;
  padding: 0;
  background: rgba(12, 18, 24, 0.62);
}

.auth-card {
  width: min(100%, 430px);
  max-height: min(100vh, 760px);
  border-radius: 28px;
  padding: 28px 18px 30px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  box-shadow: 0 26px 90px rgba(12, 18, 24, 0.3);
}

.auth-card .member-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: #eef3f7;
  color: var(--ink);
  font-size: 36px;
}

.auth-form {
  gap: 16px;
}

.auth-head {
  display: grid;
  gap: 5px;
  margin: 12px 48px 14px;
  text-align: center;
}

.auth-form .auth-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 6vw, 32px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.auth-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.auth-social,
.auth-submit {
  width: 100%;
  min-height: 58px;
  border-radius: 17px;
  font-size: 18px;
  font-weight: 400;
}

.auth-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.08);
  cursor: pointer;
}

.auth-social-dark {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.auth-social > span {
  font-size: 26px;
  line-height: 1;
}

.auth-social .gmail-mark {
  display: grid;
  place-items: center;
}

.auth-social .gmail-mark svg {
  width: 28px;
  height: 20px;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: #a0a8b6;
  font-size: 15px;
  font-weight: 400;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: #dfe5ee;
}

.auth-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid #d8e1ec;
  border-radius: 17px;
  padding: 0 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.04);
}

.auth-field:focus-within {
  border-color: var(--menu-accent);
  box-shadow: 0 0 0 4px rgba(20, 132, 120, 0.12);
}

.auth-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 400;
}

.auth-field input::placeholder {
  color: #a5adba;
}

.auth-field-icon {
  display: grid;
  place-items: center;
  color: #687386;
}

.auth-field-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-submit {
  background: var(--accent-strong);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.24);
}

.auth-forgot,
.auth-switch button {
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  cursor: pointer;
  font: inherit;
  font-weight: 400;
}

.auth-forgot {
  margin-top: 2px;
  font-size: 16px;
}

.auth-switch {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.auth-terms {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.auth-terms input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--menu-accent);
}

.auth-terms a {
  color: var(--accent-strong);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  display: grid;
  justify-content: center;
  padding: 28px 16px 48px;
  background: #f5f7fb;
}

.legal-card {
  width: min(100%, 760px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 5vw, 42px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1;
}

.legal-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.legal-card a {
  color: var(--accent-strong);
  font-weight: 1000;
}

.member-form h2,
#favoritesContent h2 {
  margin: 0;
  font-size: 24px;
}

.discover-card {
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
  padding: 16px 16px 18px;
  border-radius: 20px;
  transform: translateY(0);
  animation: discoverSheetIn 220ms ease-out;
}

.discover-card h2 {
  margin: 0 46px 0 0;
  font-size: 22px;
  text-align: center;
}

.discover-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.discover-option {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  border-radius: 18px;
  padding: 8px 4px 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
}

.discover-option:hover {
  color: var(--menu-accent);
}

.discover-option-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 50%;
  background: #f8fafc;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.09);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.discover-option:hover .discover-option-icon {
  transform: translateY(-3px);
  background: #e7f5f2;
  box-shadow: 0 20px 42px rgba(15, 118, 110, 0.18);
}

.discover-option-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recommendation-icon svg {
  fill: rgba(15, 118, 110, 0.08);
}

.discover-option strong {
  font-size: 15px;
  font-weight: 900;
}

@keyframes discoverSheetIn {
  from {
    transform: translateY(26px);
    opacity: 0;
  }

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

#favoritesContent p {
  color: var(--muted);
  line-height: 1.5;
}

.favorite-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.favorite-list-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.favorite-list-item img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
}

.favorite-list-item span,
.favorite-list-item strong,
.profile-summary strong {
  font-weight: 900;
}

.favorite-list-item strong {
  color: var(--accent-strong);
}

.profile-summary {
  display: grid;
  gap: 7px;
  margin: 14px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.profile-summary span {
  color: var(--muted);
  font-weight: 700;
}

.menu-recommendation-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.recommendation-results {
  display: grid;
  gap: 10px;
}

.recommendation-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.recommendation-item.selected {
  border-color: #8bd2c9;
  background: #e7f5f2;
}

.recommendation-item img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.recommendation-item span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.recommendation-item strong,
.recommendation-item em {
  font-weight: 900;
}

.recommendation-item small {
  overflow: hidden;
  color: var(--muted);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommendation-item em {
  border-radius: 999px;
  padding: 6px 9px;
  background: #edf2f7;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.recommendation-item.selected em {
  background: var(--accent);
  color: #ffffff;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.story-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 18, 24, 0.78);
}

.story-frame {
  position: relative;
  width: min(92vw, 390px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #ffffff;
}

.story-modal-caption strong,
.story-modal-caption span {
  display: block;
}

.story-modal-caption strong {
  font-size: 22px;
}

.story-modal-caption span {
  margin-top: 4px;
  color: #dce3ea;
  font-weight: 700;
}

.story-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 51;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.story-nav {
  position: fixed;
  top: 50%;
  z-index: 51;
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
}

.story-nav-prev {
  left: max(16px, calc(50% - 260px));
}

.story-nav-next {
  right: max(16px, calc(50% - 260px));
}

@media (max-width: 880px) {
  .topbar {
    padding: 18px;
  }

  .main {
    padding: 18px;
  }

  .qr-layout,
  .print-menu-panel,
  .super-layout,
  .section-header {
    grid-template-columns: 1fr;
  }

  .print-menu-panel {
    display: grid;
  }

  .section-header {
    display: grid;
    align-items: start;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .super-sidebar {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-columns: none;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .super-nav {
    min-width: max-content;
    white-space: nowrap;
  }

  .ad-banner {
    width: 100%;
  }

  .hero-slides {
    aspect-ratio: 16 / 8;
  }

  .venue-rail {
    grid-auto-columns: minmax(150px, 42vw);
  }

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

@media (max-width: 360px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    top: auto;
    margin: 18px 0 22px;
  }

  .admin-tab {
    justify-content: center;
    width: auto;
    min-height: 40px;
    flex: 0 0 auto;
    border-color: var(--line);
    border-radius: 8px;
    padding: 9px 13px;
    background: #ffffff;
    color: var(--ink);
    text-align: center;
  }

  .logout-tab {
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 12px;
  }

  .brand-mark,
  .icon-button {
    width: 42px;
    height: 42px;
  }

  .platform-hero {
    min-height: 172px;
    padding: 22px;
  }

  .platform-hero h1 {
    font-size: 36px;
  }

  .platform-hero p:last-child {
    font-size: 15px;
  }

  .platform-section-title h2 {
    font-size: 24px;
  }

  .loyalty-section-toggle span {
    font-size: 22px;
  }

  .venue-rail {
    grid-auto-columns: 156px;
    gap: 12px;
  }

  .venue-card-caption {
    padding: 14px 12px 12px;
  }

  .venue-card-caption strong {
    font-size: 17px;
  }

  .venue-card-meta {
    padding: 10px 2px 0;
  }

  .venue-card-meta strong {
    font-size: 17px;
  }

  .platform-shortcut {
    min-height: 92px;
  }

  .category-grid {
    gap: 18px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .menu-grid.shop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .campaign-countdown strong {
    grid-column: 1 / -1;
    width: fit-content;
  }

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

  .admin-blog-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .admin-blog-item img,
  .admin-blog-placeholder {
    width: 58px;
    height: 50px;
  }

  .admin-blog-meta {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
    justify-content: start;
  }

  .admin-blog-fab {
    right: 16px;
    bottom: 18px;
  }

  .blog-library-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .blog-library-item img,
  .blog-library-item .admin-blog-placeholder {
    width: 54px;
    height: 46px;
  }

  .blog-library-item b,
  .blog-library-item em {
    grid-column: 2;
    justify-self: start;
  }

  .menu-item-body {
    padding: 10px;
  }

  .menu-item-title {
    display: grid;
    gap: 4px;
  }

  .menu-item h3 {
    font-size: 15px;
    line-height: 1.18;
  }

  .price {
    font-size: 13px;
  }

  .menu-item p {
    display: none;
  }

  .category-card-title {
    padding: 12px 8px;
    font-size: 15px;
  }

  .hero-slider {
    margin-bottom: 18px;
  }

  .hero-slides {
    aspect-ratio: 16 / 9;
  }

  .story-list {
    gap: 9px;
  }

  .story-chip {
    width: 86px;
  }

  .story-ring {
    width: 68px;
    height: 68px;
  }

  .ad-slides {
    height: auto;
    aspect-ratio: 16 / 7;
  }

  .hero-caption {
    padding: 12px 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-stat-grid,
  .loyalty-period-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .loyalty-stat-card,
  .loyalty-period-card {
    min-height: 104px;
    aspect-ratio: auto;
    align-content: center;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
  }

  .loyalty-stat-card span,
  .loyalty-period-card span {
    font-size: 10px;
    line-height: 1.15;
  }

  .loyalty-stat-card strong,
  .loyalty-period-card strong {
    font-size: clamp(22px, 8vw, 34px);
    line-height: 0.95;
    word-break: break-word;
  }

  .loyalty-stat-card small,
  .loyalty-period-card small {
    font-size: 10px;
    line-height: 1.15;
  }

  .admin-product,
  .section-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .category-admin-product {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .category-admin-product .admin-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .category-admin-product .admin-actions .ghost-button,
  .category-admin-product .admin-actions .danger-button {
    flex: 1 1 0;
  }

  .admin-product-category-head,
  .admin-category-edit-panel {
    grid-template-columns: 1fr;
  }

  .loyalty-menu-card {
    grid-template-columns: 1fr;
  }

  .loyalty-menu-card .primary-button {
    width: 100%;
  }

  .loyalty-reward-grid {
    gap: 8px;
  }

  .loyalty-stamp-board {
    gap: 7px;
  }

  .loyalty-stamp-board em {
    font-size: 24px;
  }

  .loyalty-stamp-board i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .stars-steps {
    grid-template-columns: 1fr;
  }

  .admin-row-main {
    align-items: flex-start;
  }
}

html.theme-dark,
body.theme-dark,
body.public-mobile-shell.theme-dark {
  background: #000000;
}

html.theme-light,
body.theme-light,
body.public-mobile-shell.theme-light {
  background: #f6f7f9;
}

body.theme-dark .app-shell {
  background: #050505;
}

body.theme-light .app-shell {
  background: #f6f7f9;
}

body.panel-route {
  --ink: #1f2933;
  --muted: #667085;
  --line: #d8dee8;
  --soft: #f6f7f9;
  --paper: #ffffff;
  background: #f6f7f9 !important;
  color: #1f2933;
  padding-bottom: 0;
}

body.panel-route .app-shell {
  width: 100% !important;
  max-width: none;
  margin: 0;
  background: #f6f7f9 !important;
  box-shadow: none;
}

body.panel-route .main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px;
}

body.panel-route .topbar {
  background: #ffffff;
  color: #1f2933;
  box-shadow: 0 1px 0 rgba(216, 222, 232, 0.9);
}

body.super-route .topbar {
  display: none;
}

body.panel-route .theme-toggle-button {
  display: none;
}

body.panel-route .header-profile-button {
  display: none;
}

body.panel-route .brand small {
  color: #667085;
}

body.panel-route .icon-button {
  border-color: rgba(31, 41, 51, 0.14);
  background: rgba(31, 41, 51, 0.04);
  color: #1f2933;
}

body.panel-route .search-icon {
  border-color: currentColor;
}

body.panel-route .search-icon::after,
body.panel-route .hamburger-icon,
body.panel-route .hamburger-icon::before,
body.panel-route .hamburger-icon::after {
  background: currentColor;
}

body.theme-light:not(.public-venue-shell) .topbar {
  background: #ffffff;
  color: var(--ink);
}

body.theme-light:not(.public-venue-shell) .brand small {
  color: #667085;
}

body.theme-light:not(.public-venue-shell) .icon-button {
  border-color: rgba(31, 41, 51, 0.14);
  background: rgba(31, 41, 51, 0.04);
  color: var(--ink);
}

body.theme-light:not(.public-venue-shell) .icon-button:hover,
body.theme-light:not(.public-venue-shell) .icon-button.active {
  background: rgba(31, 41, 51, 0.08);
}

body.theme-light:not(.public-venue-shell) .search-icon {
  border-color: currentColor;
}

body.theme-light:not(.public-venue-shell) .search-icon::after,
body.theme-light:not(.public-venue-shell) .hamburger-icon,
body.theme-light:not(.public-venue-shell) .hamburger-icon::before,
body.theme-light:not(.public-venue-shell) .hamburger-icon::after {
  background: currentColor;
}

body.theme-dark.public-mobile-shell .topbar {
  color: #ffffff;
}

body.theme-dark.public-mobile-shell .topbar .icon-button {
  color: #ffffff;
}

body.theme-dark.public-mobile-shell #headerMenuToggle .hamburger-icon,
body.theme-dark.public-mobile-shell #headerMenuToggle .hamburger-icon::before,
body.theme-dark.public-mobile-shell #headerMenuToggle .hamburger-icon::after,
body.theme-dark.public-mobile-shell .topbar .hamburger-icon,
body.theme-dark.public-mobile-shell .topbar .hamburger-icon::before,
body.theme-dark.public-mobile-shell .topbar .hamburger-icon::after {
  background: #ffffff !important;
}

body.theme-dark.public-mobile-shell .topbar .search-icon {
  border-color: #ffffff;
}

body.theme-dark.public-mobile-shell .topbar .search-icon::after {
  background: #ffffff;
}

.topbar > .icon-button,
.topbar .top-actions .icon-button,
body.panel-route .topbar > .icon-button,
body.panel-route .topbar .top-actions .icon-button,
body.theme-light:not(.public-venue-shell) .topbar > .icon-button,
body.theme-light:not(.public-venue-shell) .topbar .top-actions .icon-button {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.topbar > .icon-button:hover,
.topbar > .icon-button.active,
.topbar .top-actions .icon-button:hover,
.topbar .top-actions .icon-button.active {
  background: transparent !important;
}

body.theme-dark .platform-home-intro h1,
body.theme-dark .platform-section-title h2,
body.theme-dark .venue-card-meta strong,
body.theme-dark .platform-category-browser-grid strong,
body.theme-dark .platform-category-results h2,
body.theme-dark .venue-intro-heading h1,
body.theme-dark .venue-info-section h2,
body.theme-dark .venue-map-section h2 {
  color: #ffffff;
}

body.theme-dark .platform-location-line,
body.theme-dark .platform-home-copy p,
body.theme-dark .platform-section-title span,
body.theme-dark .venue-card-meta em,
body.theme-dark .venue-intro-heading p {
  color: rgba(255, 255, 255, 0.66);
}

body.theme-dark .platform-home-search-box,
body.theme-dark .platform-category-browser-grid button {
  border-color: rgba(255, 255, 255, 0.12);
  background: #111827;
  color: rgba(255, 255, 255, 0.72);
}

body.theme-dark .platform-promo-card {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

body.theme-dark .platform-qr-venue-card,
body.theme-dark .platform-popular-menu-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #111827;
}

body.theme-dark .platform-qr-venue-body h3,
body.theme-dark .platform-popular-menu-card strong,
body.theme-dark .platform-home-loyalty-summary strong {
  color: #ffffff;
}

body.theme-dark .platform-qr-venue-body p,
body.theme-dark .platform-qr-venue-facts,
body.theme-dark .platform-qr-venue-obip,
body.theme-dark .platform-popular-menu-card span,
body.theme-dark .platform-home-loyalty-progress,
body.theme-dark .platform-home-loyalty-summary small {
  color: rgba(255, 255, 255, 0.66);
}

body.theme-dark .platform-home-loyalty-summary {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(107, 75, 255, 0.3), rgba(17, 24, 39, 0.92));
}

body.theme-dark .top-products-header h2,
body.theme-dark .category-card-title,
body.theme-dark .category-featured-title h2,
body.theme-dark .menu-item h3,
body.theme-dark .product-detail-title h2,
body.theme-dark .shop-category-section h2 {
  color: #ffffff;
}

body.theme-dark .top-product-card,
body.theme-dark .menu-item,
body.theme-dark .product-detail-hero,
body.theme-dark .product-detail-body,
body.theme-dark .pairing-section,
body.theme-dark .product-option-panel,
body.theme-dark .menu-language-switcher {
  border-color: rgba(255, 255, 255, 0.14);
  background: #111827;
  color: #ffffff;
}

body.theme-dark .top-product-info b,
body.theme-dark .menu-item-title,
body.theme-dark .category-featured-title,
body.theme-dark .option-group h3,
body.theme-dark .option-row span,
body.theme-dark .option-total span {
  color: #ffffff;
}

body.theme-dark .menu-item p,
body.theme-dark .product-detail-body p,
body.theme-dark .option-row,
body.theme-dark .menu-language-switcher button {
  color: rgba(255, 255, 255, 0.68);
}

body.theme-dark .top-products,
body.theme-dark .category-grid,
body.theme-dark .menu-grid {
  color: #ffffff;
}

body.theme-dark .story-chip {
  color: rgba(255, 255, 255, 0.86);
}

html.public-mobile-shell-preload .platform-qr-venue-section .platform-section-title h2,
html.public-mobile-shell-preload .platform-popular-menu-section .platform-section-title h2,
html.public-mobile-shell-preload .platform-promotion-section .platform-section-title h2,
body.public-mobile-shell .platform-qr-venue-section .platform-section-title h2,
body.public-mobile-shell .platform-popular-menu-section .platform-section-title h2,
body.public-mobile-shell .platform-promotion-section .platform-section-title h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.18;
}

html.public-mobile-shell-preload .platform-promotion-section .platform-section-title p,
body.public-mobile-shell .platform-promotion-section .platform-section-title p {
  font-weight: 400;
}

html.public-mobile-shell-preload .platform-promotion-section .platform-section-title h2,
body.public-mobile-shell .platform-promotion-section .platform-section-title h2 {
  font-weight: 700;
}

@media (max-width: 760px) {
  .member-data-grid {
    grid-template-columns: 1fr;
  }
}
