:root {
  --accent-color: #ff6a2a;
  --accent-soft: #fff1ea;
  --main-color: #111111;
  --sub-color: #f6f6f6;
  --card-color: #ffffff;
  --text-muted: #777777;
  --hero-background-image: url('/assets/points-background.png');
  --home-hero-background-image: url('/assets/home-hero-bg.png');
  --page-max-width: 430px;
  color: var(--main-color);
  background: #f4f4f4;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Noto Sans SC', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #f4f4f4;
}

body {
  color: var(--main-color);
}

button {
  font: inherit;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

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

#app {
  display: flex;
  justify-content: center;
}

.mobile-shell {
  width: 100%;
  max-width: var(--page-max-width);
  min-height: 100vh;
  background: linear-gradient(180deg, #fff7f0 0, #f4f4f4 240px);
  position: relative;
}

.mobile-shell--tabbed {
  padding-bottom: 92px;
}

.page {
  min-height: 100vh;
}

.page--home,
.hero,
.page-header {
  position: relative;
}

.hero {
  padding: 22px 18px 18px;
  overflow: hidden;
}

.hero::before,
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-background-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}

.hero > *,
.page-header > * {
  position: relative;
  z-index: 1;
}

.hero--home::before {
  display: none;
}

.home-hero-card {
  position: relative;
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  padding: 26px 24px 22px;
  background-image: var(--home-hero-background-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.12);
}

.home-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0.82) 0%, rgba(255, 250, 245, 0.56) 34%, rgba(255, 250, 245, 0.12) 54%, rgba(255, 250, 245, 0) 72%);
  pointer-events: none;
}

.home-hero-card > * {
  position: relative;
  z-index: 1;
}

.home-hero-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.home-hero-card__copy {
  max-width: 52%;
}

.home-hero-card__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 106, 42, 0.12);
  border: 1px solid rgba(255, 106, 42, 0.16);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.home-hero-card h1 {
  margin: 18px 0 0;
  color: #111111;
  font-size: 42px;
  line-height: 0.98;
  text-shadow: 0 10px 26px rgba(255, 255, 255, 0.18);
}

.home-hero-card h1 span {
  display: block;
}

.home-hero-card p {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.86);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: none;
}

.home-hero-card__capsule {
  min-width: 96px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.home-hero-card__capsule span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111111;
}

.hero__top,
.profile-head,
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero__top h1,
.page-header h1,
.profile-head h1 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 1.15;
}

.hero__top p,
.page-header p,
.profile-head p,
.member-panel p,
.summary-card__brief,
.banner-card p,
.story-card p,
.schedule-card p,
.post-card p,
.topic-banner p,
.live-hero-card p,
.status-hero p,
.address-line {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.page-header {
  padding: 18px;
}

.page-header__left {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.page-header h1 {
  font-size: 24px;
}

.eyebrow,
.section__eyebrow,
.member-panel__label,
.summary-card__tag,
.post-card__tag,
.topic-banner__meta,
.chip,
.section__meta,
.order-card__head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 0 18px;
}

.section--tight {
  margin-top: 10px;
}

.section--bottom-gap {
  padding-bottom: 22px;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section__head--compact {
  margin-bottom: 12px;
}

.section__head h2,
.summary-card__title,
.detail-block h2,
.topic-banner h2,
.live-hero-card h2,
.status-hero h2,
.status-card h1,
.empty-card h2 {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.24;
}

.section__head h2,
.detail-block h2,
.topic-banner h2,
.live-hero-card h2,
.status-hero h2 {
  font-size: 22px;
}

.icon-button,
.ghost-button,
.ghost-button--light,
.primary-button,
.link-button,
.primary-action,
.secondary-action,
.mini-link,
.quick-entry,
.menu-item,
.floating-entry,
.tabbar__item,
.product-card,
.banner-card,
.story-card,
.order-card,
.cart-item,
.topic-banner,
.schedule-card {
  cursor: pointer;
}

.icon-button,
.icon-button--ghost {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.icon-button--ghost {
  opacity: 0;
  pointer-events: none;
}

.ghost-button,
.ghost-button--light,
.primary-button,
.link-button,
.primary-action,
.secondary-action {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ghost-button {
  background: #f2f2f2;
}

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

.primary-button,
.primary-action {
  background: linear-gradient(180deg, #ff8a4a 0%, var(--accent-color) 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 106, 42, 0.25);
}

.secondary-action {
  background: #fff3eb;
  color: var(--accent-color);
}

.link-button,
.mini-link {
  color: var(--accent-color);
  min-height: auto;
  padding: 0;
}

.member-panel,
.asset-panel,
.points-hero-card,
.topic-banner,
.live-hero-card,
.status-hero,
.banner-card,
.product-card,
.story-card,
.schedule-card,
.summary-card,
.shop-card,
.detail-block,
.empty-card,
.status-card,
.order-card,
.menu-card,
.cart-item,
.task-card,
.post-card,
.detail-hero-card {
  background: var(--card-color);
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
}

.member-panel {
  margin-top: 16px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #1e1e1e 0%, #383838 100%);
  color: #ffffff;
}

.member-panel__value {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 800;
}

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

.promo-stack {
  display: grid;
  gap: 14px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 210px;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.promo-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.promo-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.72) 100%);
  color: #ffffff;
}

.promo-card__label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 12px;
  font-weight: 700;
}

.promo-card h3 {
  margin: 10px 0 0;
  font-size: 24px;
}

.promo-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.quick-entry {
  background: var(--card-color);
  border-radius: 22px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
}

.quick-entry__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.quick-entry strong,
.menu-item strong {
  font-size: 14px;
}

.quick-entry em,
.menu-item em,
.product-card p,
.order-card p,
.cart-item p,
.meta-item__label,
.timeline p {
  font-style: normal;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-banner-list,
.story-list,
.task-strip,
.schedule-list,
.story-feed,
.menu-card-list,
.order-list,
.cart-list {
  display: grid;
  gap: 14px;
}

.banner-card,
.story-card,
.schedule-card,
.product-card,
.order-card,
.cart-item,
.post-card,
.topic-banner,
.live-hero-card,
.points-hero-card,
.summary-card,
.shop-card,
.detail-block,
.empty-card,
.menu-card,
.detail-hero-card {
  padding: 18px;
}

.banner-card,
.story-card,
.schedule-card--rich {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 14px;
  align-items: center;
}

.banner-card img,
.story-card img,
.schedule-card--rich img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 20px;
  background: #fafafa;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.product-card--compact .product-card__image {
  aspect-ratio: 1 / 1;
}

.product-card__image {
  border-radius: 20px;
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 1 / 1;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card h3,
.banner-card h3,
.story-card h3,
.schedule-card h3,
.post-card h3,
.menu-card h3,
.cart-item h3,
.order-card strong,
.quick-entry strong {
  margin: 0;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--accent-color);
}

.product-card__price strong,
.price-row__main strong,
.action-bar__summary strong {
  font-size: 28px;
  line-height: 1;
}

.product-card__price span,
.price-row__main span {
  font-weight: 700;
}

.points-hero-card,
.topic-banner,
.live-hero-card,
.status-hero {
  background: linear-gradient(135deg, #fff7f0 0%, #ffffff 100%);
}

.points-hero-card--compact,
.live-hero-card--compact {
  background: #ffffff;
}

.reference-image-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--card-color);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
}

.reference-image-card img {
  width: 100%;
  display: block;
}

.reference-image-card--hero img {
  min-height: 180px;
  object-fit: cover;
}

.reference-image-card--profile {
  margin-bottom: 14px;
}

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

.chip {
  border: 1px solid transparent;
}

.chip--active {
  border-color: var(--accent-color);
}

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

.task-card {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.task-card span {
  color: var(--accent-color);
  font-weight: 700;
}

.post-card__head,
.post-card__foot,
.order-card__head,
.order-card__foot,
.cart-item__foot,
.shop-card,
.shop-card__left,
.live-hero-card__meta,
.schedule-card__chips,
.price-row,
.page-header,
.detail-hero-card__badge,
.action-bar,
.action-bar--cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.post-card__author,
.detail-hero-card__badge,
.price-row__main,
.shop-card__left,
.profile-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-card__author img,
.profile-user img,
.shop-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.post-card__cover,
.detail-hero-card__image img {
  width: 100%;
  border-radius: 22px;
  margin-top: 14px;
  background: #fafafa;
}

.post-card__cover {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.schedule-card__chips,
.live-hero-card__meta {
  flex-wrap: wrap;
}

.schedule-card__chips span,
.live-hero-card__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6f6f6;
  font-size: 12px;
  color: var(--text-muted);
}

.hero--profile {
  padding-bottom: 12px;
}

.asset-panel {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.asset-panel span,
.action-bar__summary span {
  color: var(--text-muted);
  font-size: 12px;
}

.asset-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

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

.menu-item {
  text-align: left;
  background: #fafafa;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-hero-card__badge {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-color);
  font-weight: 700;
}

.detail-hero-card__badge img,
.price-row__main img {
  width: 20px;
  height: 20px;
}

.detail-hero-card__image {
  margin-top: 16px;
  border-radius: 26px;
  overflow: hidden;
  background: #fafafa;
}

.detail-hero-card__image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.thumb {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fafafa;
}

.thumb--active {
  border-color: var(--accent-color);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.meta-item {
  background: #fafafa;
  border-radius: 18px;
  padding: 14px;
}

.meta-item strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.info-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

.checkout-card {
  padding: 18px;
}

.checkout-row,
.checkout-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.checkout-row + .checkout-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f1f1f1;
}

.checkout-row strong,
.checkout-note span {
  display: block;
  font-size: 16px;
}

.checkout-row p,
.checkout-note p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkout-row__value {
  white-space: nowrap;
  font-weight: 700;
  color: #111111;
}

.checkout-row__value--accent {
  color: var(--accent-color);
}

.checkout-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f1f1f1;
}

.checkout-summary {
  display: grid;
  gap: 14px;
}

.checkout-summary__row {
  align-items: center;
}

.checkout-summary__row span {
  color: var(--text-muted);
}

.checkout-summary__row strong {
  font-size: 16px;
}

.checkout-summary__row--total strong {
  font-size: 24px;
  color: var(--accent-color);
}

.richtext {
  color: var(--main-color);
  line-height: 1.75;
}

.richtext img {
  margin-top: 10px;
  border-radius: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item__image {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: cover;
  background: #fafafa;
}

.cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6f6f6;
}

.stepper__button {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.06);
}

.order-card__head {
  align-items: flex-start;
}

.order-card__items {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.order-card__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
}

.order-card__item img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #fafafa;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: flex-start;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 4px;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.empty-card,
.status-card {
  text-align: center;
}

.empty-card__emoji,
.status-card__emoji {
  font-size: 42px;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-card,
.empty-card {
  width: 100%;
  max-width: 360px;
  padding: 28px 22px;
}

.status-card--loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 4px solid #f2e5de;
  border-top-color: var(--accent-color);
  animation: spin 0.8s linear infinite;
}

.action-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page-max-width);
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.action-bar--cart {
  justify-content: space-between;
}

.action-bar__summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.action-bar .primary-action,
.action-bar .secondary-action,
.action-bar .primary-button {
  flex: 1;
  min-height: 50px;
}

.tabbar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page-max-width);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #8b8b8b;
  font-size: 12px;
}

.tabbar__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tabbar__item--active {
  color: var(--accent-color);
  font-weight: 700;
}

.tabbar__item--active .tabbar__icon {
  background: var(--accent-soft);
}

.floating-entry {
  position: fixed;
  right: calc(50% - min(50vw, var(--page-max-width) / 2) + 18px);
  bottom: 98px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8b4d 0%, var(--accent-color) 100%);
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 18px 36px rgba(255, 106, 42, 0.3);
  z-index: 5;
}

.floating-entry em {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(17, 17, 17, 0.88);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 20;
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 390px) {
  .home-hero-card {
    min-height: 290px;
    padding: 22px 20px;
  }

  .home-hero-card h1 {
    font-size: 34px;
  }

  .home-hero-card__copy {
    max-width: 56%;
  }

  .quick-grid,
  .asset-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-card,
  .story-card,
  .schedule-card--rich {
    grid-template-columns: 1fr 84px;
  }

  .product-grid,
  .task-strip,
  .menu-card__items {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 78px 1fr;
  }

  .mini-link {
    grid-column: 2;
    justify-self: end;
  }
}
