:root {
  --black-1000: #050504;
  --black-950: #080807;
  --black-900: #0c0b0a;
  --black-850: #11100e;
  --black-800: #171510;
  --gold-600: #9e7b35;
  --gold-500: #c5a152;
  --gold-400: #d8ba72;
  --gold-300: #e8d49a;
  --gold-200: #f0e2b8;
  --cream-100: #f7f2e9;
  --muted: #a39a8c;
  --muted-2: #746e64;
  --line: rgba(216, 186, 114, 0.22);
  --line-soft: rgba(247, 242, 233, 0.1);
  --seal: #8e3a29;
  --gold-gradient: linear-gradient(120deg, #846427 0%, #b99142 27%, #e0c47b 54%, #f1e3b1 72%, #9a7531 100%);
  --font-brand: Georgia, "Times New Roman", serif;
  --font-display: "Noto Serif KR", "Nanum Myeongjo", Batang, serif;
  --font-ui: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

html {
  background: var(--black-1000);
}

body {
  overflow: hidden;
  background: var(--black-1000);
  color: var(--cream-100);
  font-family: var(--font-ui);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% -10%, rgba(197, 161, 82, 0.12), transparent 31rem),
    radial-gradient(circle at 4% 32%, rgba(142, 58, 41, 0.08), transparent 26rem);
  content: "";
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(232, 212, 154, 0.86);
  outline-offset: 3px;
}

.stage {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100dvh;
  padding: 0;
}

.phone {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--black-950);
  box-shadow: none;
}

.appbar,
.category-rail,
.bottom-nav {
  flex: 0 0 auto;
}

.appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 21px 20px 12px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 8, 7, 0.96);
}

.app-brand {
  display: inline-grid;
  gap: 1px;
}

.app-brand span {
  color: var(--gold-300);
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
}

.app-brand b {
  color: var(--gold-500);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.app-actions {
  display: flex;
  gap: 8px;
}

.circle-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(216, 186, 114, 0.035);
  color: var(--gold-300);
  cursor: pointer;
  font-size: 14px;
  overflow: hidden;
  position: relative;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.circle-button:hover,
.circle-button:focus-visible,
.circle-button.is-pressing {
  border-color: rgba(232, 212, 154, 0.74);
  background: rgba(216, 186, 114, 0.12);
  box-shadow: 0 0 0 3px rgba(216, 186, 114, 0.08);
  color: var(--gold-200);
  transform: translateY(-1px);
}

.action-panel {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 74px 14px 0;
  background: rgba(5, 5, 4, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.phone.is-menu-open .action-panel {
  background: rgba(5, 5, 4, 0.52);
  opacity: 1;
  pointer-events: auto;
}

.action-sheet {
  display: grid;
  width: min(260px, calc(100vw - 32px));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(216, 186, 114, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 0%, rgba(216, 186, 114, 0.14), transparent 9rem),
    rgba(12, 11, 10, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: transform 180ms ease;
}

.phone.is-menu-open .action-sheet {
  transform: translateY(0) scale(1);
}

.action-sheet button {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(247, 242, 233, 0.04);
  color: var(--cream-100);
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.action-sheet button:hover,
.action-sheet button:focus-visible {
  border-color: var(--line);
  background: rgba(216, 186, 114, 0.1);
  transform: translateX(-2px);
}

.action-sheet strong,
.action-sheet span {
  display: block;
}

.action-sheet strong {
  font-size: 14px;
  font-weight: 950;
}

.action-sheet span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.category-rail {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 12px 20px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--black-950);
  cursor: grab;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar,
.phone-scroll::-webkit-scrollbar,
.poster-rail::-webkit-scrollbar,
.price-rail::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: transparent;
  color: #aaa196;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.chip.is-active {
  border-color: var(--gold-400);
  background: var(--gold-400);
  color: var(--black-950);
  font-weight: 950;
}

.chip:hover,
.chip:focus-visible {
  border-color: rgba(216, 186, 114, 0.48);
  background: rgba(216, 186, 114, 0.08);
  color: var(--gold-200);
  transform: translateY(-1px);
}

.chip.is-active:hover,
.chip.is-active:focus-visible {
  color: var(--black-950);
}

.phone-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0 18px;
  scrollbar-width: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;
}

.home-hero::after {
  position: absolute;
  top: 2px;
  right: -18px;
  color: rgba(216, 186, 114, 0.055);
  content: "商";
  font-family: var(--font-display);
  font-size: 142px;
  font-weight: 900;
  line-height: 1;
}

.eyebrow,
.section-title span,
.today-ticket span,
.product-card small {
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.home-hero h1 {
  position: relative;
  z-index: 1;
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.home-hero p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: #c9c1b5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  word-break: keep-all;
}

.poster-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 20px 20px;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.poster-rail.is-drag-ready,
.poster-rail.is-dragging,
.category-rail.is-drag-ready,
.category-rail.is-dragging,
.price-rail.is-drag-ready,
.price-rail.is-dragging {
  user-select: none;
}

.poster-rail.is-dragging,
.category-rail.is-dragging,
.price-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.poster {
  position: relative;
  display: flex;
  flex: 0 0 322px;
  height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 5%, rgba(216, 186, 114, 0.14), transparent 16rem),
    linear-gradient(160deg, #1b1812, var(--black-950));
  color: var(--cream-100);
  scroll-snap-align: center;
  text-align: left;
  user-select: none;
  transition:
    border-color 210ms ease,
    box-shadow 210ms ease,
    filter 210ms ease,
    transform 210ms ease;
}

.poster::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(216, 186, 114, 0.1);
  border-radius: 17px;
  content: "";
  pointer-events: none;
}

.poster::after {
  position: absolute;
  top: 17px;
  right: -16px;
  z-index: 1;
  color: rgba(216, 186, 114, 0.075);
  content: attr(data-glyph);
  font-family: var(--font-display);
  font-size: 174px;
  font-weight: 900;
  line-height: 1;
}

.poster.is-cmdg::after {
  display: none;
}

.poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
  object-fit: cover;
  opacity: 0.34;
  pointer-events: none;
  filter: saturate(0.46) contrast(1.08) brightness(0.7);
  transform: scale(1.03);
  transition:
    filter 260ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.poster.is-cmdg img {
  opacity: 0.96;
  filter: saturate(1.04) contrast(1.08) brightness(0.94);
  object-position: center 38%;
}

.poster.is-love::after {
  display: none;
}

.poster.is-place::after {
  display: none;
}

.poster.is-love img {
  opacity: 0.78;
  filter: saturate(1.06) contrast(1.04) brightness(0.82);
  object-position: center 34%;
  transform: scale(1.02);
}

.poster.is-place img {
  opacity: 0.72;
  filter: saturate(0.94) contrast(1.08) brightness(0.76);
  object-position: center 32%;
  transform: scale(1.02);
}

.poster-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.04), rgba(5, 5, 4, 0.36) 34%, rgba(5, 5, 4, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.62), transparent 74%);
}

.poster.is-cmdg .poster-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0), rgba(5, 5, 4, 0.03) 30%, rgba(5, 5, 4, 0.34) 58%, rgba(5, 5, 4, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.36), rgba(5, 5, 4, 0.02) 76%);
}

.poster.is-love .poster-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.06), rgba(5, 5, 4, 0.2) 34%, rgba(5, 5, 4, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.38), rgba(5, 5, 4, 0.02) 74%);
}

.poster.is-place .poster-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.08), rgba(5, 5, 4, 0.26) 38%, rgba(5, 5, 4, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.46), rgba(5, 5, 4, 0.04) 74%);
}

.poster:hover,
.poster:focus-visible,
.poster.is-pointed {
  border-color: rgba(232, 212, 154, 0.5);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(216, 186, 114, 0.12);
  filter: brightness(1.06);
  transform: translateY(-4px);
}

.poster:hover img,
.poster:focus-visible img,
.poster.is-pointed img {
  filter: saturate(1.04) contrast(1.09) brightness(0.9);
  transform: scale(1.07);
}

.poster.is-cmdg:hover img,
.poster.is-cmdg:focus-visible img,
.poster.is-cmdg.is-pointed img {
  filter: saturate(1.08) contrast(1.12) brightness(1);
}

.poster.is-love:hover img,
.poster.is-love:focus-visible img,
.poster.is-love.is-pointed img {
  filter: saturate(1.12) contrast(1.08) brightness(0.9);
  transform: scale(1.06);
}

.poster.is-place:hover img,
.poster.is-place:focus-visible img,
.poster.is-place.is-pointed img {
  filter: saturate(1) contrast(1.1) brightness(0.84);
  transform: scale(1.06);
}

.poster:hover .poster-shade,
.poster:focus-visible .poster-shade,
.poster.is-pointed .poster-shade {
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 38%), rgba(216, 186, 114, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(5, 5, 4, 0.02), rgba(5, 5, 4, 0.2) 34%, rgba(5, 5, 4, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.56), transparent 72%);
}

.badge,
.poster strong,
.poster em,
.scope-line,
.price-line {
  position: relative;
  z-index: 3;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid var(--gold-600);
  border-radius: 999px;
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.poster > .badge {
  position: absolute;
  top: 18px;
  left: 20px;
  max-width: calc(100% - 40px);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.poster strong {
  display: block;
  margin-top: 82px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.poster.is-cmdg strong,
.poster.is-cmdg em,
.poster.is-cmdg .scope-line {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

.poster em {
  display: block;
  margin-top: 10px;
  color: #afa698;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.5;
}

.scope-line {
  display: block;
  margin-top: 6px;
  color: #786f63;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-line b,
.product-card b,
.tier strong {
  color: var(--gold-200);
  font-family: var(--font-brand);
  font-weight: 800;
}

.price-line b {
  font-size: 25px;
}

.price-line span {
  display: inline-grid;
  min-width: 70px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold-600);
  border-radius: 999px;
  background: rgba(216, 186, 114, 0.05);
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.poster:hover .price-line span,
.poster:focus-visible .price-line span,
.poster.is-pointed .price-line span {
  background: var(--gold-gradient);
  color: var(--black-950);
  transform: translateX(-2px);
}

.today-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 20px 26px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(216, 186, 114, 0.055), rgba(0, 0, 0, 0.1));
  overflow: hidden;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.today-ticket strong {
  display: block;
  margin-top: 5px;
  color: var(--cream-100);
  font-size: 16px;
  font-weight: 900;
}

.today-ticket p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.today-ticket button {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--gold-600);
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #070706;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.today-ticket:hover,
.today-ticket:focus-within,
.today-ticket.is-pointed {
  border-color: rgba(216, 186, 114, 0.44);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.today-ticket button:hover,
.today-ticket button:focus-visible {
  filter: brightness(1.08);
  box-shadow: 0 0 0 3px rgba(216, 186, 114, 0.12);
  transform: translateY(-1px);
}

.section-block {
  padding: 0 20px 28px;
}

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

.section-title strong {
  color: var(--cream-100);
  font-size: 19px;
  font-weight: 950;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--black-800), var(--black-950));
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card::after {
  position: absolute;
  top: 16px;
  right: -8px;
  color: rgba(216, 186, 114, 0.055);
  content: attr(data-glyph);
  font-family: var(--font-display);
  font-size: 104px;
  font-weight: 900;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.product-card strong,
.product-card span,
.product-card b {
  position: relative;
  z-index: 1;
}

.product-card strong {
  display: block;
  margin-top: 28px;
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.product-card span {
  display: block;
  margin-top: 12px;
  min-height: 30px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.5;
}

.product-card b {
  display: block;
  margin-top: 12px;
  font-size: 17px;
}

.product-card:hover,
.product-card:focus-visible,
.product-card.is-pointed {
  border-color: rgba(216, 186, 114, 0.44);
  background:
    radial-gradient(circle at var(--pointer-x, 76%) var(--pointer-y, 18%), rgba(216, 186, 114, 0.12), transparent 8rem),
    linear-gradient(145deg, #1d1a13, var(--black-950));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.product-card:hover::after,
.product-card:focus-visible::after,
.product-card.is-pointed::after {
  color: rgba(216, 186, 114, 0.09);
  transform: translateX(-4px) scale(1.02);
}

.mini-list {
  display: grid;
  gap: 8px;
}

.mini-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--black-900);
  text-align: left;
  overflow: hidden;
  position: relative;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mini-row span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 900;
}

.mini-row strong {
  min-width: 0;
  color: var(--cream-100);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.mini-row b {
  color: var(--gold-200);
  font-family: var(--font-brand);
  font-size: 13px;
}

.mini-row:hover,
.mini-row:focus-visible,
.mini-row.is-pointed {
  border-color: rgba(216, 186, 114, 0.42);
  background:
    radial-gradient(circle at var(--pointer-x, 12%) var(--pointer-y, 50%), rgba(216, 186, 114, 0.12), transparent 6rem),
    var(--black-850);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  transform: translateX(2px);
}

.mini-row:hover span,
.mini-row:focus-visible span,
.mini-row.is-pointed span {
  background: rgba(216, 186, 114, 0.1);
  color: var(--gold-200);
}

.price-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}

.tier {
  flex: 0 0 108px;
  min-height: 104px;
  padding: 13px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--black-900);
  overflow: hidden;
  position: relative;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tier span {
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.tier strong {
  display: block;
  margin-top: 14px;
  font-size: 17px;
}

.tier em {
  display: block;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.tier.is-signature {
  border-color: var(--line);
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 186, 114, 0.16), transparent 7rem),
    linear-gradient(145deg, #171510, var(--black-950));
}

.tier:hover,
.tier.is-pointed {
  border-color: rgba(216, 186, 114, 0.42);
  background:
    radial-gradient(circle at var(--pointer-x, 76%) var(--pointer-y, 22%), rgba(216, 186, 114, 0.14), transparent 5rem),
    var(--black-850);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.bottom-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 74px;
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 8, 7, 0.96);
}

.bottom-nav a,
.bottom-nav button {
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 900;
  overflow: hidden;
  position: relative;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.bottom-nav .is-active {
  color: var(--gold-300);
}

.bottom-nav a:hover,
.bottom-nav button:hover,
.bottom-nav a:focus-visible,
.bottom-nav button:focus-visible {
  background: rgba(216, 186, 114, 0.07);
  color: var(--gold-200);
}

.poster[href],
.product-card[href],
.bottom-nav a {
  cursor: pointer;
}

.poster[href] > *,
.product-card[href] > * {
  pointer-events: none;
}

.is-soon,
[data-soon] {
  cursor: pointer;
}

.poster:hover,
.product-card:hover,
.mini-row:hover {
  border-color: var(--line);
}

.is-pressing {
  transform: translateY(1px) scale(0.99);
}

.click-spark {
  position: absolute;
  left: var(--spark-x, 50%);
  top: var(--spark-y, 50%);
  z-index: 5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(232, 212, 154, 0.55);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: click-spark 520ms ease-out forwards;
}

@keyframes click-spark {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(12);
  }
}

.reveal-on-scroll {
  opacity: 0.34;
  transform: translateY(12px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.is-hidden {
  display: none;
}

.section-block.is-empty-filter {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(320px, calc(100% - 36px));
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--black-900);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  color: var(--cream-100);
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 520px) {
  body {
    overflow: hidden;
  }

  .stage {
    display: block;
    min-height: 100dvh;
    padding: 0;
  }

  .phone {
    width: 100vw;
    height: 100dvh;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .poster {
    flex-basis: 300px;
    height: 400px;
  }

  .poster strong {
    margin-top: 62px;
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
