@font-face {
  font-family: Outfit;
  src: url("/assets/fonts/Outfit-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Outfit;
  src: url("/assets/fonts/Outfit-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Outfit;
  src: url("/assets/fonts/Outfit-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Outfit;
  src: url("/assets/fonts/Outfit-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}

:root {
  --coral: #ff5653;
  --coral-dark: #e94643;
  --coral-soft: #fff0ef;
  --ink: #121214;
  --muted: #68686f;
  --line: #e9e9e6;
  --surface: #f6f6f3;
  --sand: #f2eee8;
  --white: #fff;
  --green: #087f6b;
  --container: 1320px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 8px 24px rgba(18, 18, 20, .07);
  --shadow: 0 24px 70px rgba(18, 18, 20, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.filter-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

.js body.page-loading {
  overflow: hidden;
}

.js body.page-loading > .site-header,
.js body.page-loading > main,
.js body.page-loading > .site-footer {
  opacity: 0;
}

.js body.page-ready > .site-header,
.js body.page-ready > main,
.js body.page-ready > .site-footer {
  animation: page-content-in .72s cubic-bezier(.16, 1, .3, 1) both;
}

.page-loader {
  display: none;
}

.js .page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 86, 83, .2), transparent 29%),
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .86), transparent 27%),
    linear-gradient(145deg, #fff8f5, #f4e9e4);
  color: var(--ink);
  opacity: 1;
  visibility: visible;
  transition: opacity .55s ease .08s, visibility 0s linear .65s;
}

.page-ready .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 86, 83, .18), transparent 67%);
  border-radius: 50%;
  animation: loader-glow 1.8s ease-in-out infinite;
}

.loader-mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
}

.loader-mark img {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  box-shadow: 0 18px 44px rgba(255, 86, 83, .28);
  animation: loader-logo 1.15s cubic-bezier(.2, .9, .2, 1) infinite alternate;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(18, 18, 20, .13);
  border-radius: 28px;
}

.loader-ring::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  top: -4px;
  left: calc(50% - 4px);
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--coral);
}

.ring-one {
  animation: loader-orbit 1.7s linear infinite;
}

.ring-two {
  inset: 10px;
  border-radius: 22px;
  opacity: .55;
  animation: loader-orbit 2.3s linear infinite reverse;
}

.loader-wordmark {
  position: relative;
  width: 132px;
  height: 43px;
  margin-top: 22px;
  display: block;
  background: var(--coral);
  -webkit-mask: url("/assets/images/logos/activisTextLogo.svg") center / contain no-repeat;
  mask: url("/assets/images/logos/activisTextLogo.svg") center / contain no-repeat;
  clip-path: inset(0 100% 0 0);
  filter: drop-shadow(0 8px 18px rgba(255, 86, 83, .16));
  animation: loader-write 1.05s cubic-bezier(.65, 0, .2, 1) .08s forwards;
}

.loader-wordmark::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 86, 83, .65);
  opacity: 0;
  animation: loader-pen 1.05s cubic-bezier(.65, 0, .2, 1) .08s forwards;
}

.page-loader p {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(18, 18, 20, .42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: none;
}

.page-loader p i {
  width: 3px;
  height: 3px;
  background: var(--coral);
  border-radius: 50%;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

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

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

.app-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -.18em;
  stroke-width: 1.8;
}

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

.is-hidden-field {
  display: none !important;
}

.page-container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(18, 18, 20, .08);
}

.header-container {
  width: min(1440px, calc(100% - 64px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 116px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(83%) saturate(2800%) hue-rotate(332deg) brightness(104%) contrast(101%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--coral);
  transition: right .25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

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

.header-actions form {
  margin: 0;
}

.preference-form {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
}

.preference-form:has(.currency-select) {
  width: 72px;
}

.header-preference-control {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  pointer-events: none;
}

.header-preference-control .app-icon {
  width: 16px;
  height: 16px;
}

.header-preference-control .iconoir-nav-arrow-down {
  width: 12px;
  height: 12px;
  color: var(--muted);
}

.preference-code {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.header-account-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.header-account-link:hover {
  color: var(--coral);
}

.header-location {
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 160px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
}

.header-location img {
  width: 17px;
}

.header-location span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: transparent;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}

.header-login,
.user-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.header-login.secondary,
.user-chip {
  background: var(--white);
  color: var(--ink);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.web-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #092d36;
  color: var(--white);
}

.hero-visual,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 19, 24, .88) 0%, rgba(5, 19, 24, .63) 38%, rgba(5, 19, 24, .1) 72%),
    linear-gradient(0deg, rgba(5, 19, 24, .38), transparent 48%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 64px));
  min-height: 680px;
  margin-inline: auto;
  padding: 110px 0 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  width: min(760px, 72%);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: none;
}

.hero-eyebrow {
  color: #fff;
  opacity: .76;
}

.hero-copy h1 {
  max-width: 800px;
  margin: 18px 0 24px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero-copy h1 em {
  color: #ff8a87;
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .79);
  font-size: 17px;
  line-height: 1.75;
}

.hero-search-panel {
  width: min(930px, 100%);
  min-height: 88px;
  margin-top: 42px;
  padding: 10px;
  display: grid;
  grid-template-columns: .82fr 1.63fr 148px;
  align-items: stretch;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.search-field {
  min-width: 0;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  text-align: left;
}

.location-field {
  border-right: 1px solid var(--line);
  cursor: pointer;
}

.field-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--coral);
}

.field-icon .app-icon,
.field-icon img {
  width: 18px;
  height: 18px;
}

.field-copy {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 3px;
}

.field-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.field-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-copy input {
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 600;
}

.field-copy input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.hero-search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--coral);
  border: 0;
  border-radius: 13px;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}

.hero-search-button:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.hero-trust b {
  color: var(--white);
  font-weight: 600;
}

.hero-trust i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral);
}

.category-section {
  padding-top: 100px;
  padding-bottom: 108px;
}

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

.section-title-row.compact {
  margin-bottom: 28px;
}

.section-title-row h2 {
  max-width: 750px;
  margin: 9px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -.045em;
}

.section-intro {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.web-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.web-category-card {
  min-height: 176px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.web-category-card:hover {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.category-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--white);
}

.category-icon img {
  width: 23px;
}

.web-category-card > span:nth-child(2) {
  margin-top: auto;
  display: grid;
  gap: 3px;
}

.web-category-card strong {
  font-size: 15px;
}

.web-category-card small {
  color: var(--muted);
  font-size: 12px;
}

.highlights-section {
  padding-top: 72px;
}

.highlight-strip {
  display: grid;
  grid-auto-columns: minmax(150px, 18%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.highlight-strip::-webkit-scrollbar {
  display: none;
}

.highlight-card {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  scroll-snap-align: start;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.highlight-card:hover img {
  transform: scale(1.04);
}

.category-arrow {
  position: absolute;
  align-self: flex-end;
  color: var(--muted);
  font-size: 15px;
}

.featured-section {
  padding: 96px 0 104px;
  overflow: hidden;
  background: var(--surface);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.slider-controls button:hover {
  background: var(--ink);
  color: var(--white);
}

.experience-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 24%);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.experience-slider::-webkit-scrollbar {
  display: none;
}

.experience-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}

.experience-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.experience-image {
  position: relative;
  aspect-ratio: 1.3;
  overflow: hidden;
}

.experience-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.experience-card:hover .experience-image > img {
  transform: scale(1.045);
}

.favorite-button {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .14);
  cursor: pointer;
  font-size: 22px;
}

.favorite-button.active {
  background: var(--coral);
  color: var(--white);
}

.favorite-button .favorite-on,
.favorite-button.active .favorite-off {
  display: none;
}

.favorite-button.active .favorite-on {
  display: grid;
}

.favorite-button .app-icon {
  width: 20px;
  height: 20px;
}

.card-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 14px;
  padding: 7px 10px;
  background: var(--white);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.experience-body {
  padding: 17px 18px 19px;
}

.card-location {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.card-location img {
  width: 13px;
}

.experience-body h3 {
  min-height: 48px;
  margin: 9px 0 14px;
  font-size: 18px;
  line-height: 1.35;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.rating {
  color: var(--muted);
  font-size: 12px;
}

.rating b {
  color: #efb12f;
}

.rating,
.provider-rating,
.review-list article > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating .app-icon,
.provider-rating .app-icon,
.review-list article > span .app-icon {
  color: #efb12f;
}

.card-meta button {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--coral);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.editorial-section {
  padding-top: 108px;
  padding-bottom: 108px;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 16px;
}

.editorial-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.editorial-feature {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
}

.editorial-large {
  min-height: 596px;
}

.editorial-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.editorial-feature:hover > img {
  transform: scale(1.035);
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(10deg, rgba(4, 10, 12, .8), rgba(4, 10, 12, .08) 68%);
}

.editorial-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 32px;
}

.editorial-copy span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: none;
}

.editorial-copy h2 {
  max-width: 600px;
  margin: 10px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.editorial-copy h3 {
  margin: 8px 0 15px;
  font-size: 28px;
}

.editorial-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.editorial-copy button,
.editorial-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 17px;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.catalog-section {
  padding-top: 18px;
  padding-bottom: 120px;
}

.catalog-heading {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.filter-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.filter-button img {
  width: 15px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
}

.filter-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding-top: 26px;
}

.filter-header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.filter-header button {
  display: none;
}

.filter-option {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
}

.filter-option.active,
.filter-option:hover {
  color: var(--coral);
  font-weight: 600;
}

.filter-note {
  margin-top: 26px;
  padding: 17px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--coral-soft);
  border-radius: 14px;
}

.filter-note img {
  width: 18px;
  margin-top: 2px;
}

.filter-note > .app-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--coral);
}

.filter-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.filter-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
}

.catalog-content {
  padding-top: 26px;
}

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

.product-card[hidden] {
  display: none;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  border-radius: 17px;
  background: var(--surface);
}

.product-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card-image > img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 14px 3px 0;
}

.product-card-body > p {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}

.product-card-body h3 {
  margin: 6px 0 12px;
  font-size: 17px;
  line-height: 1.35;
}

.product-card-body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.product-card-body button {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.empty-state,
.api-state {
  padding: 72px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h3,
.api-state h2 {
  margin: 0 0 8px;
}

.empty-state p,
.api-state p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.confidence-section {
  padding: 96px 0;
  background: var(--ink);
  color: var(--white);
}

.confidence-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
}

.confidence-intro {
  padding-right: 30px;
}

.confidence-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -.04em;
}

.confidence-item {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
}

.confidence-item > span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, .3);
  font-size: 12px;
}

.confidence-item img {
  width: 27px;
  filter: brightness(0) invert(1);
}

.confidence-item > .app-icon {
  width: 27px;
  height: 27px;
  color: var(--white);
}

.confidence-item h3 {
  margin: 50px 0 8px;
  font-size: 15px;
}

.confidence-item p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.7;
}

.location-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(14px, 3vw, 28px);
  overflow: hidden;
  place-items: center;
  background: transparent;
  border: 0;
}

.location-dialog::backdrop {
  background: rgba(12, 12, 14, .68);
}

.dialog-card {
  position: relative;
  width: min(530px, 100%);
  max-height: calc(100dvh - 28px);
  padding: 38px;
  display: grid;
  gap: 14px;
  overflow-y: auto;
  scrollbar-width: none;
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.dialog-card::-webkit-scrollbar,
.payment-card::-webkit-scrollbar,
.popup-form-card::-webkit-scrollbar {
  display: none;
}

.dialog-card h2,
.dialog-card p {
  margin: 0;
}

.app-popup-dialog {
  width: min(540px, calc(100vw - 24px));
  max-width: min(540px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  padding: 36px;
  margin: auto;
  border: 0;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.app-popup-dialog::backdrop {
  background: rgba(12, 12, 14, .68);
}

.app-popup-dialog .primary-button {
  justify-self: start;
  text-decoration: none;
}

.dialog-card > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.dialog-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  border-radius: 15px;
}

.dialog-icon img {
  width: 22px;
}

.dialog-card label,
.auth-card label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.dialog-card input,
.auth-card input,
.auth-card select {
  width: 100%;
  padding: 13px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
}

.dialog-card input:focus,
.auth-card input:focus {
  border-color: var(--coral);
}

.location-search-label {
  position: relative;
}

.location-suggestions {
  max-height: 240px;
  display: grid;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.location-suggestions:empty {
  display: none;
}

.location-suggestion {
  padding: 13px 15px;
  display: grid;
  gap: 3px;
  text-align: left;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.location-suggestion:last-child {
  border-bottom: 0;
}

.location-suggestion:hover,
.location-suggestion:focus-visible {
  background: var(--surface);
}

.location-suggestion strong {
  color: var(--ink);
  font-size: 12px;
}

.location-suggestion span,
.location-search-status {
  color: var(--muted);
  font-size: 12px;
}

.location-search-status:empty {
  display: none;
}

.location-attribution {
  justify-self: end;
  color: #4285f4;
  font-size: 12px;
  font-weight: 700;
}

.location-attribution span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa;
  font-size: 12px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.primary-button {
  background: var(--coral);
  color: var(--white);
}

.secondary-button {
  background: var(--ink);
  color: var(--white);
}

.auth-page {
  min-height: calc(100vh - 76px);
  padding: 80px 24px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--coral);
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .07);
  font-size: clamp(140px, 30vw, 440px);
  font-weight: 700;
}

.auth-shell {
  position: relative;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.auth-intro {
  color: var(--white);
}

.auth-intro h1 {
  margin: 10px 0 20px;
  font-size: 62px;
  line-height: 1;
}

.auth-intro > p:last-child {
  max-width: 420px;
  opacity: .78;
}

.auth-card {
  padding: 36px;
  display: grid;
  gap: 12px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}

.enhanced-phone-field {
  grid-template-columns: 112px 1fr;
}

.phone-code-trigger {
  min-height: 46px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  font-family: Outfit, sans-serif;
}

.phone-code-trigger strong {
  font-size: 13px;
  font-weight: 700;
}

.phone-code-trigger span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.phone-code-trigger .app-icon {
  width: 14px;
  height: 14px;
}

.phone-code-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  width: min(360px, 100%);
  padding: 10px;
  display: grid;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.phone-code-panel[hidden] {
  display: none;
}

.phone-code-search {
  min-height: 42px;
  padding: 0 11px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.phone-code-search .app-icon {
  width: 17px;
  height: 17px;
  color: var(--muted);
}

.phone-code-search input {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 13px;
}

.phone-code-results {
  max-height: 260px;
  display: grid;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.phone-code-option {
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-family: Outfit, sans-serif;
}

.phone-code-option:last-child {
  border-bottom: 0;
}

.phone-code-option:hover,
.phone-code-option:focus-visible {
  background: var(--surface);
}

.phone-code-option strong {
  color: var(--ink);
  font-size: 13px;
}

.phone-code-option span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-code-empty {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.password-field {
  position: relative;
}

.password-field button {
  position: absolute;
  top: 7px;
  right: 8px;
  padding: 9px;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
}

.password-field button .app-icon {
  width: 20px;
  height: 20px;
}

.password-field .password-eye-closed,
.password-field button.showing-password .password-eye-open {
  display: none;
}

.password-field button.showing-password .password-eye-closed {
  display: inline-flex;
}

.password-field input {
  padding-right: 70px;
}

.text-link,
.auth-note a {
  color: var(--coral);
  font-size: 12px;
}

.auth-note {
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.page-shell {
  width: min(var(--container), calc(100% - 64px));
  min-height: 75vh;
  margin-inline: auto;
  padding: 80px 0 100px;
}

.results-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.results-heading h1 {
  margin: 6px 0;
  font-size: 52px;
  letter-spacing: -.04em;
}

.results-heading > p:last-child {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 32px;
  font-size: 12px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.provider-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(17, 18, 20, .06);
}

.provider-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
}

.provider-image img,
.product-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-mosaic {
  display: grid;
  grid-template-columns: .43fr 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--surface);
}

.product-mosaic-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-width: 0;
}

.product-mosaic-side img,
.product-mosaic-main {
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
}

.event-date-tile {
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 16px;
  display: grid;
  align-content: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
}

.event-date-tile strong {
  font-family: Outfit, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: .95;
}

.event-date-tile span {
  margin-top: 6px;
  color: rgba(18, 18, 20, .72);
  font-size: 14px;
  font-weight: 700;
}

.provider-copy {
  padding: 20px;
}

.provider-image-shade {
  display: none;
}

.provider-image-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.provider-image-meta.events-hidden {
  display: none;
}

.provider-image-meta span {
  padding: 7px 9px;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: 12px;
}

.provider-image-meta span,
.provider-topline > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.provider-topline,
.provider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.provider-topline {
  color: rgba(18, 18, 20, .58);
  font-size: 12px;
}

.provider-topline .app-icon {
  color: rgba(18, 18, 20, .55);
}

.provider-copy h2 {
  margin: 9px 0;
  font-size: 21px;
}

.provider-rating {
  color: var(--coral);
  font-size: 12px;
}

.provider-rating span {
  color: var(--muted);
}

.provider-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.provider-price {
  display: grid;
  gap: 3px;
}

.provider-price small {
  color: var(--muted);
  font-size: 12px;
}

.provider-price strong {
  font-size: 19px;
}

.detail-page {
  min-height: 80vh;
  background: #f7f7f5;
}

.detail-hero-shell {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding-top: 46px;
}

.detail-hero-heading {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
}

.detail-hero-heading h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(30px, 3.35vw, 46px);
  line-height: 1.08;
}

.detail-hero-location {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(18, 18, 20, .58);
  font-size: 13px;
  font-weight: 500;
}

.detail-hero-heading .detail-rating {
  margin: 0 0 6px;
  justify-content: flex-end;
}

.detail-hero-heading .detail-rating span {
  background: var(--white);
  color: rgba(18, 18, 20, .74);
  border-color: var(--line);
}

.detail-gallery {
  position: relative;
  width: min(var(--container), calc(100% - 64px));
  height: clamp(230px, 28vw, 380px);
  min-height: 0;
  margin: 22px auto 0;
  overflow: hidden;
  background: #f7f7f5;
  border-radius: 0;
}

.detail-gallery-events {
  height: clamp(230px, calc(70vw - 55px), 914px);
}

.detail-gallery-track {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(120px, 30%) minmax(0, calc(70% - 10px));
  grid-auto-columns: minmax(280px, 50%);
  grid-auto-flow: column;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  background: #f7f7f5;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  transform: none;
}

.detail-gallery-track::-webkit-scrollbar {
  display: none;
}

.detail-gallery-slide {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  scroll-snap-align: start;
}

.detail-gallery-slide:first-child {
  grid-column: 2;
  grid-row: 1 / 3;
}

.detail-gallery-slide:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}

.detail-gallery-slide:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.detail-gallery-slide:nth-child(n+4) {
  grid-row: 1 / 3;
}

.detail-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.detail-video-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(18, 18, 20, .28);
  border: 0;
  cursor: pointer;
}

.detail-video-trigger span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.detail-video-trigger span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--ink);
}

.detail-gallery.video-open .detail-gallery-track {
  visibility: hidden;
}

.detail-video-dialog {
  width: min(960px, calc(100vw - 28px));
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.detail-video-frame {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.detail-video-frame video {
  width: 100%;
  max-height: min(82vh, 760px);
  display: block;
  object-fit: contain;
  background: #050505;
}

.detail-video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(18, 18, 20, .62);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
}

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: rgba(4, 5, 6, .88);
  border: 0;
}

.gallery-lightbox::backdrop {
  background: rgba(4, 5, 6, .72);
}

.gallery-lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 38px 82px;
  display: grid;
  place-items: center;
}

.gallery-lightbox img {
  max-width: min(1180px, calc(100vw - 180px));
  max-height: calc(100vh - 110px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

.gallery-lightbox figcaption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 600;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.gallery-lightbox-close {
  top: 22px;
  right: 22px;
}

.gallery-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-arrow.previous {
  left: 22px;
}

.gallery-lightbox-arrow.next {
  right: 22px;
}

.detail-gallery-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc((100% - 20px) * .66);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(9, 10, 12, .04), rgba(9, 10, 12, .76) 66%),
    linear-gradient(0deg, rgba(9, 10, 12, .5), transparent 55%);
  border-radius: 18px;
}

.detail-gallery-copy {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 42px;
  width: min(590px, calc(56% - 60px));
}

.detail-gallery-copy > p {
  margin: 26px 0 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.detail-gallery-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(18, 18, 20, .74);
  font-size: 12px;
}

.detail-rating {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-rating span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 12px;
}

.detail-rating span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gallery-arrow {
  display: none;
}

.gallery-arrow.previous { left: 24px; }
.gallery-arrow.next { right: 24px; }

.detail-gallery-scrollable .gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(18, 18, 20, .56);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.detail-gallery-scrollable .gallery-arrow .app-icon {
  width: 18px;
  height: 18px;
}

.gallery-dots {
  display: none;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, .5);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  transition: width .2s ease;
}

.gallery-dots button.active {
  width: 28px;
  background: var(--white);
}

.detail-shell {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
  align-items: start;
}

.detail-content {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.detail-section {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.detail-section h2 {
  margin: 5px 0 0;
  font-size: 26px;
}

.detail-description {
  color: #34343a;
  font-size: 14px;
  line-height: 1.9;
  white-space: normal;
}

.detail-event-date {
  border-radius: 18px;
}

.detail-status-row {
  margin: 18px 0 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-status-row span {
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(55, 167, 108, .1);
  color: #258455;
  border: 1px solid rgba(55, 167, 108, .18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.detail-facts {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.detail-facts div {
  min-height: 84px;
  padding: 17px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-facts span,
.reservation-card-heading p,
.reservation-card-heading span {
  color: var(--muted);
  font-size: 12px;
}

.detail-facts strong {
  font-size: 13px;
}

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

.detail-option-grid article {
  padding: 18px;
  background: var(--surface);
  border-radius: 14px;
}

.event-ticket-grid article {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.detail-option-grid article > span,
.detail-option-grid article > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.detail-option-grid h3 {
  margin: 6px 0;
  font-size: 18px;
}

.gun-card {
  display: flex;
  gap: 14px;
}

.gun-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.detail-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 9px 12px;
  background: var(--coral-soft);
  color: var(--coral);
  border-radius: 999px;
  font-size: 12px;
}

.detail-route,
.service-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-route li,
.service-list li {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
}

.detail-route li > span,
.service-list li > span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
}

.service-list.included li > span { background: #20935b; }
.service-list.excluded li > span { background: #d34c4c; }

.service-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.detail-check-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.detail-check-grid div {
  min-height: 52px;
  padding: 14px;
  align-items: center;
  display: flex;
  gap: 8px;
  background: var(--surface);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.detail-check-grid span {
  color: #20935b;
  font-size: 16px;
  font-weight: 700;
}

.detail-check-grid span .app-icon,
.service-list li > span .app-icon {
  width: 16px;
  height: 16px;
}

.detail-rule-list {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.detail-rule-list div {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: rgba(12, 12, 12, .62);
  font-size: 12px;
  line-height: 1.55;
}

.detail-rule-list span {
  width: 5px;
  height: 5px;
  margin-top: 7px;
  flex: 0 0 auto;
  background: rgba(12, 12, 12, .42);
  border-radius: 50%;
}

.detail-subtitle {
  margin: 18px 0 10px;
  font-size: 14px;
}

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

.transfer-note {
  padding: 14px;
  display: flex;
  gap: 11px;
  background: var(--surface);
  border-radius: 12px;
}

.transfer-note > span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--coral);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.transfer-note strong {
  display: block;
  font-size: 13px;
}

.transfer-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.detail-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-policies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.detail-location {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 10px;
}

.detail-location > .section-kicker {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.detail-location-copy {
  align-self: start;
}

.detail-location-copy h2 {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.detail-location p,
.muted-copy {
  color: rgba(12, 12, 12, .6);
  font-size: 12px;
  line-height: 1.55;
}

.detail-location small {
  color: rgba(12, 12, 12, .6);
  font-size: 12px;
}

.detail-contact-cards {
  display: grid;
  gap: 10px;
}

.detail-contact-card {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(12, 12, 12, .1);
  border-radius: 12px;
  color: inherit;
}

.detail-contact-card > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.detail-contact-card > span .app-icon {
  width: 25px;
  height: 25px;
}

.detail-contact-card strong,
.detail-contact-card p {
  margin: 0;
}

.detail-contact-card strong {
  font-size: 12px;
  font-weight: 500;
}

.detail-contact-card p {
  margin-top: 2px;
  color: rgba(12, 12, 12, .6);
  font-size: 12px;
}

.product-map-wrap {
  display: grid;
  gap: 12px;
}

.product-map {
  min-height: 320px;
  height: 320px;
  border: 1px solid rgba(12, 12, 12, .1);
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.product-map-wrap .secondary-button {
  justify-self: start;
}

.working-hours {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.working-hours div {
  padding: 13px;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  font-size: 12px;
}

.review-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.review-list article {
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
}

.review-list article span {
  float: right;
  color: var(--coral);
}

.review-list article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.similar-grid a {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
}

.similar-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.similar-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent 70%);
}

.similar-grid strong {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
}

.reservation-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(17, 18, 20, .09);
}

.reservation-card-heading {
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.reservation-card-heading p { margin: 0; }
.reservation-card-heading strong { display: block; font-size: 26px; }

.reservation-card form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.reservation-card h2 {
  margin: 0;
  font-size: 21px;
}

.reservation-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.reservation-card legend,
.reservation-card label,
.reservation-times > span {
  margin-bottom: 7px;
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.guest-fieldset {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line) !important;
  border-radius: 13px;
}

.guest-fieldset legend {
  width: 100%;
  padding: 0 0 8px;
}

.guest-row {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.guest-row:last-child { border-bottom: 0; }
.guest-row > span { display: grid; gap: 2px; }
.guest-row small { color: var(--muted); font-size: 12px; }
.guest-row > div { display: flex; align-items: center; gap: 12px; }

.guest-row button {
  width: 30px;
  height: 30px;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.passenger-fieldset {
  display: grid;
  gap: 10px;
}

.passenger-fieldset > p {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.passenger-list {
  display: grid;
  gap: 10px;
}

.passenger-row {
  padding: 10px;
  display: grid;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.passenger-row > strong {
  font-size: 12px;
  font-weight: 600;
}

.passenger-row input {
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-size: 12px;
}

.passenger-row input:focus {
  border-color: var(--green);
  outline: 0;
}

.mobile-item-selector {
  display: grid;
  gap: 10px;
}

.mobile-item-option {
  padding: 10px;
  display: grid;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-item-option > div:first-child {
  display: grid;
  gap: 3px;
}

.mobile-item-option strong {
  font-size: 12px;
  font-weight: 500;
}

.mobile-item-option span,
.mobile-item-option small,
.mobile-item-additional {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.mobile-item-additional {
  margin: 4px 0 0;
}

.tour-selector {
  display: grid;
  gap: 10px;
}

.tour-option {
  margin: 0 !important;
  padding: 10px;
  display: grid !important;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.tour-option:has(input:checked) {
  border-color: rgba(45, 157, 95, .55);
}

.tour-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tour-option > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tour-option > span strong {
  font-size: 12px;
  font-weight: 500;
}

.tour-option b {
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.tour-option p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.voyage-meta {
  display: grid;
  gap: 8px;
}

.voyage-meta > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.voyage-meta small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.voyage-meta strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.tour-option em {
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.tour-option ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.tour-option li {
  display: flex;
  gap: 8px;
}

.tour-option li > span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--green);
  flex: 0 0 18px;
}

.tour-option li .app-icon {
  width: 16px;
  height: 16px;
}

.tour-option li strong,
.tour-option li small {
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.tour-option li small {
  margin-top: 2px;
  color: var(--muted);
}

.mobile-item-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px auto 30px;
  align-items: center;
  gap: 9px;
}

.mobile-item-action b {
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.mobile-item-action button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(12, 12, 12, .12);
  border-radius: 999px;
  cursor: pointer;
}

.mobile-item-action button:disabled {
  opacity: .32;
  cursor: default;
}

.mobile-item-action button .app-icon {
  width: 16px;
  height: 16px;
}

.mobile-item-action output {
  min-width: 18px;
  text-align: center;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.reservation-card input,
.reservation-card select,
.reservation-card textarea,
.payment-card input {
  width: 100%;
  padding: 12px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
}

.reservation-date-field {
  position: relative;
}

.reservation-event-date {
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.reservation-event-date > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.reservation-event-date strong,
.reservation-event-date small {
  display: block;
}

.reservation-event-date small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.reservation-label {
  margin-bottom: 7px;
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.date-picker-trigger {
  width: 100%;
  padding: 13px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-align: left;
  cursor: pointer;
}

.date-picker-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--coral);
  font-size: 20px;
}

.date-picker-icon .app-icon {
  width: 20px;
  height: 20px;
}

.date-picker-trigger > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.date-picker-trigger strong {
  font-size: 13px;
}

.date-picker-trigger small {
  color: var(--muted);
  font-size: 12px;
}

.date-picker-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(17, 18, 20, .16);
}

.date-picker-panel[hidden] {
  display: none;
}

.date-picker-heading {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  margin-bottom: 13px;
  text-align: center;
}

.date-picker-heading button {
  width: 34px;
  height: 34px;
  background: var(--surface);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.date-picker-heading strong {
  font-size: 13px;
  text-transform: none;
}

.date-picker-weekdays,
.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-picker-weekdays span {
  padding: 5px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
}

.date-picker-days button {
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
}

.date-picker-days button:hover:not(:disabled),
.date-picker-days button.today {
  border-color: var(--coral);
}

.date-picker-days button.selected {
  background: var(--ink);
  color: var(--white);
}

.date-picker-days button.outside {
  color: #b5b5b5;
}

.date-picker-days button:disabled {
  color: #d4d4d4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.reservation-card textarea {
  min-height: 76px;
  resize: vertical;
}

.gun-selector {
  display: grid;
  gap: 7px;
}

.gun-selector label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gun-selector input { width: 70px; }

[data-reservation-times] {
  max-height: 175px;
  overflow: auto;
  padding-right: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

[data-reservation-times] button {
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
}

[data-reservation-times] button.selected {
  background: var(--ink);
  color: var(--white);
}

[data-reservation-times] button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.reservation-total {
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.reservation-total strong { font-size: 18px; }
.reservation-message { color: #b83f3f; font-size: 12px; }
.reservation-message:empty { display: none; }
.reservation-card .primary-button { width: 100%; }

.payment-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(14px, 3vw, 28px);
  overflow: hidden;
  place-items: center;
  background: transparent;
  border: 0;
}

.payment-dialog::backdrop {
  background: rgba(12, 12, 14, .66);
}

.payment-card {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100dvh - 28px);
  padding: 30px;
  display: grid;
  gap: 14px;
  overflow-y: auto;
  scrollbar-width: none;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.profile-page {
  min-height: 75vh;
  background: #f7f7f5;
}

.profile-hero {
  padding: 72px 0 78px;
  background: var(--ink);
  color: var(--white);
}

.profile-hero .page-container {
  position: relative;
}

.profile-avatar {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  font-size: 24px;
  font-weight: 700;
}

.profile-hero h1 {
  margin: 6px 0 8px;
  font-size: clamp(38px, 5vw, 62px);
}

.profile-hero > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.profile-layout {
  margin-top: -34px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
  gap: 22px;
  align-items: start;
}

.profile-card,
.profile-preferences {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(17, 18, 20, .07);
}

.profile-card {
  display: grid;
  gap: 20px;
}

.profile-card h2,
.profile-preferences h2 {
  margin: 5px 0 0;
  font-size: 24px;
}

.profile-card label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.profile-card input {
  width: 100%;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
}

.profile-card input:focus {
  border-color: var(--coral);
}

.profile-card input[readonly] {
  color: var(--muted);
}

.profile-card small,
.profile-preferences > p:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.profile-card .primary-button {
  justify-self: start;
}

.profile-preference-row {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.profile-action-button {
  width: 100%;
  margin-top: 10px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  text-align: left;
}

.profile-action-button strong {
  color: var(--coral);
}

.profile-action-button strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.form-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(14px, 3vw, 28px);
  overflow: hidden;
  place-items: center;
  background: transparent;
  border: 0;
}

.form-dialog::backdrop {
  background: rgba(12, 12, 14, .68);
}

.popup-form-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100dvh - 28px);
  padding: 32px;
  display: grid;
  gap: 14px;
  overflow-y: auto;
  scrollbar-width: none;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.popup-form-card h2,
.popup-form-card p {
  margin: 0;
}

.popup-form-card > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.popup-form-card label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
}

.popup-form-card input {
  width: 100%;
  padding: 13px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
}

.popup-form-card input:focus {
  border-color: var(--coral);
}

.popup-form-card .primary-button {
  width: 100%;
}

.auth-card h2 {
  margin: 0;
  font-size: 24px;
}

.auth-card-lead {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.verification-code {
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .35em;
  text-align: center;
}

.auth-step-card {
  animation: auth-card-in .42s cubic-bezier(.2, .8, .2, 1) both;
}

dialog[open] {
  display: grid;
}

dialog[open]::backdrop {
  animation: backdrop-fade-in .34s ease-out both;
}

dialog[open] > * {
  transform-origin: center 42%;
  animation: dialog-card-in .46s cubic-bezier(.16, 1, .3, 1) both;
}

dialog.dialog-closing::backdrop {
  animation: backdrop-fade-out .24s ease-in both;
}

dialog.dialog-closing > * {
  animation: dialog-card-out .24s cubic-bezier(.4, 0, 1, 1) both;
}

.date-picker-panel:not([hidden]) {
  transform-origin: top center;
  animation: calendar-in .24s cubic-bezier(.2, .8, .2, 1) both;
}

.detail-section,
.provider-card,
.product-card,
.confidence-item {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}

@keyframes dialog-card-in {
  from { opacity: 0; filter: blur(10px); transform: translateY(30px) scale(.88) rotateX(8deg); }
  70% { opacity: 1; filter: blur(0); transform: translateY(-3px) scale(1.012) rotateX(0); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1) rotateX(0); }
}

@keyframes dialog-card-out {
  from { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  to { opacity: 0; filter: blur(7px); transform: translateY(18px) scale(.94); }
}

@keyframes backdrop-fade-in {
  from { background: rgba(12, 12, 14, 0); backdrop-filter: blur(0); }
  to { backdrop-filter: blur(8px); }
}

@keyframes backdrop-fade-out {
  from { backdrop-filter: blur(8px); }
  to { background: rgba(12, 12, 14, 0); backdrop-filter: blur(0); }
}

@keyframes loader-orbit {
  to { transform: rotate(360deg); }
}

@keyframes loader-logo {
  from { transform: scale(.94); }
  to { transform: scale(1.04); }
}

@keyframes loader-glow {
  50% { opacity: .55; transform: scale(1.12); }
}

@keyframes loader-write {
  0% { clip-path: inset(0 100% 0 0); transform: translateY(5px); }
  100% { clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes loader-pen {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(100% - 2px); opacity: 0; }
}

@keyframes page-content-in {
  from { opacity: 0; filter: blur(8px); transform: translateY(12px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes calendar-in {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

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

.payment-card h2 { margin: 0; }
.payment-card label { display: grid; gap: 6px; font-size: 12px; font-weight: 600; }
.payment-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-percent { display: flex; gap: 16px; }
.payment-percent label { display: flex; grid-template-columns: auto 1fr; align-items: center; }
.payment-percent input { width: auto; }
.secure-payment-note { color: var(--muted); font-size: 12px; line-height: 1.6; }

.payment-success-card {
  align-items: center;
  text-align: center;
}

.payment-success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(55, 167, 108, .12);
  border-radius: 50%;
  color: var(--green);
}

.payment-success-icon .app-icon {
  width: 28px;
  height: 28px;
}

.payment-success-card > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.checkout-card {
  gap: 14px;
}

.checkout-lines {
  display: grid;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.checkout-line {
  min-height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-line + .checkout-line {
  border-top: 1px solid rgba(18, 18, 20, .06);
}

.checkout-line span {
  color: var(--ink);
  font-weight: 500;
}

.checkout-line em {
  font-style: normal;
}

.checkout-line strong {
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-weight: 600;
}

.checkout-line.discount strong {
  color: var(--green);
}

.segmented-payment {
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--surface);
  border-radius: 999px;
}

.segmented-payment label {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.segmented-payment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-payment label:has(input:checked) {
  background: var(--ink);
  color: var(--white);
}

.business-payment-note {
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.business-payment-note[hidden] {
  display: none;
}

.business-payment-note strong,
.business-payment-note p {
  margin: 0;
}

.business-payment-note p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-coupon-row {
  display: flex;
  justify-content: flex-end;
}

.checkout-coupon-row button,
.checkout-coupon-applied button {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

.checkout-coupon-applied {
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(55, 167, 108, .1);
  border-radius: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.checkout-coupon-applied[hidden] {
  display: none;
}

.checkout-coupon-applied button {
  color: #b83f3f;
}

.coupon-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.coupon-heading,
.payment-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-payment-summary {
  padding: 10px 0;
  border-top: 1px solid rgba(12, 12, 12, .08);
  border-bottom: 1px solid rgba(12, 12, 12, .08);
}

.card-coupon-applied {
  margin: 2px 0 0;
}

.coupon-heading h3 {
  margin: 2px 0 0;
  font-size: 15px;
}

.coupon-heading button,
.coupon-input-row button {
  min-height: 34px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.coupon-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

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

.coupon-list:empty {
  display: none;
}

.coupon-card {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  background: var(--white);
  border: 1px solid rgba(8, 127, 107, .18);
  border-radius: 11px;
  text-align: left;
  cursor: pointer;
}

.coupon-card span {
  grid-column: 1 / -1;
  color: rgba(18, 18, 20, .68);
  font-size: 12px;
}

.coupon-card strong {
  font-size: 14px;
}

.coupon-card b {
  color: var(--green);
  font-size: 14px;
}

.coupon-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-input-row input {
  text-transform: none;
}

.coupon-summary,
.payment-summary {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.coupon-summary {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.payment-summary strong {
  color: var(--green);
  font-size: 18px;
}

.flash-stack {
  position: fixed;
  z-index: 100;
  top: 90px;
  right: 20px;
  display: grid;
  gap: 8px;
}

.flash {
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 12px;
}

.flash-error {
  border-left: 4px solid var(--coral);
}

.flash-success {
  border-left: 4px solid var(--green);
}

.reservations-page {
  min-height: 75vh;
  background: #f7f7f5;
}

.reservations-hero {
  padding: 72px 0 82px;
  background: var(--ink);
  color: var(--white);
}

.reservations-hero h1 {
  margin: 7px 0 10px;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.05em;
}

.reservations-hero > div > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

.reservations-shell {
  margin-top: -34px;
  padding-bottom: 110px;
}

.reservation-filters {
  padding: 9px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  scrollbar-width: none;
}

.reservation-filters::-webkit-scrollbar {
  display: none;
}

.reservation-filters a {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.reservation-filters a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.reservation-filters a.active {
  background: var(--ink);
  color: var(--white);
}

.reservation-list {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.reservation-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(17, 18, 20, .06);
  animation: reservation-card-in .38s cubic-bezier(.2, .8, .2, 1) both;
}

.reservation-item-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--surface);
}

.reservation-item-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.reservation-item:hover .reservation-item-image > img {
  transform: scale(1.035);
}

.reservation-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--coral);
}

.reservation-image-placeholder .app-icon {
  width: 52px;
  height: 52px;
}

.reservation-status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
}

.status-approved,
.status-done {
  color: var(--green);
}

.status-customerCanceled,
.status-companyCanceled,
.status-noShow {
  color: #b83f3f;
}

.reservation-item-content {
  padding: 26px;
}

.reservation-item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.reservation-item-heading p {
  margin: 0 0 5px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
}

.reservation-item-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.reservation-item-heading small {
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.reservation-item-heading > strong {
  font-size: 21px;
  white-space: nowrap;
}

.reservation-summary-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.reservation-summary-grid > div {
  min-width: 0;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: 13px;
}

.reservation-summary-grid .app-icon {
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.reservation-summary-grid span {
  min-width: 0;
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
}

.reservation-summary-grid strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reservation-details summary {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.reservation-details summary::-webkit-details-marker {
  display: none;
}

.reservation-details summary .details-chevron {
  margin-left: auto;
  transition: transform .2s ease;
}

.reservation-details[open] summary .details-chevron {
  transform: rotate(180deg);
}

.reservation-details-grid {
  padding: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  animation: calendar-in .22s ease both;
}

.reservation-details-grid > div {
  display: grid;
  gap: 3px;
}

.reservation-details-grid span {
  color: var(--muted);
  font-size: 12px;
}

.reservation-details-grid strong {
  font-size: 13px;
}

.reservation-additional {
  margin: 0 0 16px;
  padding: 13px;
  overflow-wrap: anywhere;
  background: var(--surface);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
}

.reservation-additional.danger {
  background: rgba(184, 63, 63, .08);
  color: #b83f3f;
}

.reservation-payment-box,
.reservation-additional-list {
  margin-bottom: 16px;
  padding: 13px;
  display: grid;
  gap: 8px;
  background: var(--surface);
  border-radius: 12px;
}

.reservation-payment-box > div,
.reservation-additional-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

.reservation-payment-box strong,
.reservation-additional-list strong {
  color: var(--ink);
}

.reservation-paid-full {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.reservation-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.reservation-cancel-button {
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 0;
  color: #b83f3f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.reservation-ticket-button {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.reservation-ticket-summary small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticket-dialog {
  width: min(100% - 28px, 430px);
  max-height: min(92vh, 900px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.ticket-dialog-shell {
  position: relative;
  display: grid;
  gap: 12px;
}

.mobile-ticket {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(12, 12, 12, .1);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(12, 12, 12, .2);
}

.mobile-ticket-top {
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.ticket-brand {
  font-size: 18px;
  font-weight: 800;
}

.ticket-dash {
  height: 1px;
  background-image: linear-gradient(90deg, transparent 0 10px, rgba(12, 12, 12, .18) 10px 18px);
  background-size: 18px 1px;
}

.mobile-ticket-hero {
  position: relative;
  min-height: 180px;
  display: grid;
  align-items: end;
  background: #111;
  color: var(--white);
}

.mobile-ticket-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-ticket-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, .72));
}

.mobile-ticket-hero > div {
  position: relative;
  z-index: 1;
  padding: 18px;
  display: grid;
  gap: 5px;
}

.mobile-ticket-hero h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.mobile-ticket-hero p,
.mobile-ticket-hero span {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
}

.mobile-ticket-hero b {
  color: var(--coral);
  font-size: 20px;
}

.mobile-ticket-body,
.mobile-ticket-payment {
  padding: 15px 18px;
  display: grid;
  gap: 10px;
}

.mobile-ticket-body > div,
.mobile-ticket-payment > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(12, 12, 12, .58);
  font-size: 12px;
}

.mobile-ticket-body strong,
.mobile-ticket-payment strong {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.ticket-items {
  display: grid !important;
  gap: 8px !important;
}

.ticket-items ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.ticket-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.ticket-items em {
  color: rgba(12, 12, 12, .58);
  font-style: normal;
  white-space: nowrap;
}

.mobile-ticket-verify {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-ticket-verify span {
  color: rgba(12, 12, 12, .5);
  font-size: 12px;
}

.mobile-ticket-verify strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.mobile-ticket-verify b {
  display: block;
  color: var(--coral);
  font-size: 22px;
}

.ticket-qr {
  width: 78px;
  height: 78px;
  padding: 5px;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid rgba(12, 12, 12, .1);
  border-radius: 8px;
}

.ticket-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.ticket-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ticket-dialog-actions .primary-button,
.ticket-dialog-actions .secondary-button {
  justify-content: center;
}

.popup-form-card textarea {
  width: 100%;
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  font: inherit;
}

.popup-form-card textarea:focus {
  border-color: var(--coral);
}

.reservation-empty {
  margin-top: 22px;
  padding: 90px 24px;
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.reservation-empty > .app-icon {
  width: 42px;
  height: 42px;
  color: var(--coral);
}

.reservation-empty h2 {
  margin: 18px 0 7px;
}

.reservation-empty p {
  max-width: 500px;
  margin: 0 0 22px;
  color: var(--muted);
}

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

.corporate-page {
  min-height: 72vh;
  padding-bottom: 110px;
  background: #f7f7f5;
}

.corporate-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 86, 83, .19), transparent 28%),
    var(--ink);
  color: var(--white);
}

.corporate-hero.compact {
  min-height: 340px;
}

.corporate-hero-content {
  position: relative;
  z-index: 2;
  padding: 62px 0 72px;
}

.corporate-back {
  margin-bottom: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.corporate-hero h1 {
  max-width: 900px;
  margin: 10px 0 14px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -.055em;
}

.corporate-hero-content > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 15px;
  line-height: 1.75;
}

.corporate-orbit {
  position: absolute;
  right: 8%;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 42%;
  transform: rotate(28deg);
}

.orbit-one {
  width: 360px;
  height: 360px;
}

.orbit-two {
  width: 230px;
  height: 230px;
  right: 13%;
  border-color: rgba(255, 86, 83, .2);
  transform: rotate(-18deg);
}

.about-layout {
  margin-top: -36px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 22px;
  align-items: start;
}

.about-story,
.about-values,
.contact-card,
.legal-card,
.policy-copy,
.earn-explainer,
.invitation-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(17, 18, 20, .07);
}

.about-story {
  padding: 38px;
}

.about-story > img {
  width: 132px;
  margin-bottom: 30px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(83%) saturate(2800%) hue-rotate(332deg) brightness(104%) contrast(101%);
}

.about-story p {
  margin: 0 0 18px;
  color: #3e3e43;
  font-size: 15px;
  line-height: 1.85;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-values {
  padding: 12px 28px;
  display: grid;
}

.about-values > div {
  padding: 22px 0;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.about-values > div:last-child {
  border-bottom: 0;
}

.about-values > div > .app-icon {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.about-values span {
  display: grid;
  gap: 6px;
}

.about-values strong {
  font-size: 14px;
}

.about-values small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact-grid,
.legal-grid {
  margin-top: -34px;
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  min-width: 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-card:hover,
.legal-card:hover {
  border-color: rgba(255, 86, 83, .35);
  box-shadow: 0 24px 65px rgba(17, 18, 20, .11);
  transform: translateY(-5px);
}

.contact-card > span,
.legal-card > span,
.policy-copy section > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  border-radius: 16px;
  color: var(--coral);
}

.contact-card > span .app-icon,
.legal-card > span .app-icon,
.policy-copy section > span .app-icon {
  width: 24px;
  height: 24px;
}

.contact-card small {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.contact-card strong {
  margin-top: 4px;
  display: block;
  overflow-wrap: anywhere;
  font-size: 17px;
}

.contact-card p,
.legal-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact-card > .app-icon,
.legal-card > .app-icon {
  color: var(--muted);
}

.legal-grid {
  grid-template-columns: repeat(2, 1fr);
}

.legal-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.legal-card h2 {
  margin: 0;
  font-size: 17px;
}

.policy-copy {
  margin-top: -34px;
  position: relative;
  z-index: 3;
  padding: 16px 34px 34px;
}

.policy-copy section {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.policy-copy h2 {
  margin: 2px 0 8px;
  font-size: 18px;
}

.policy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.policy-copy > .secondary-button {
  margin-top: 28px;
  gap: 8px;
}

.policy-document {
  margin-top: -34px;
  position: relative;
  z-index: 3;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  line-height: 1.75;
}

.policy-document h1,
.policy-document h2,
.policy-document h3 {
  color: var(--ink);
  line-height: 1.3;
}

.policy-document h1 {
  margin-top: 0;
  font-size: 26px;
}

.policy-document h2 {
  margin-top: 28px;
  font-size: 20px;
}

.policy-document h3 {
  margin-top: 20px;
  font-size: 16px;
}

.policy-document p,
.policy-document li {
  font-size: 14px;
}

.policy-document table {
  width: 100%;
  border-collapse: collapse;
}

.policy-document th,
.policy-document td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.earn-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 86, 83, .26), transparent 30%),
    linear-gradient(135deg, #121214, #232126);
}

.earn-layout {
  margin-top: -34px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 22px;
}

.earn-explainer,
.invitation-panel {
  padding: 34px;
}

.earn-rate {
  display: block;
  color: var(--coral);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.07em;
}

.earn-explainer h2 {
  margin: 18px 0 9px;
  font-size: 22px;
}

.earn-explainer p,
.earn-state p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.invitation-code {
  width: 100%;
  margin-top: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.invitation-code:hover,
.invitation-code.copied {
  background: var(--coral-soft);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.invitation-code strong {
  color: var(--coral);
  font-size: 24px;
  letter-spacing: .08em;
}

.invited-count {
  margin-top: 14px;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.copy-feedback {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 12px;
}

.earn-state {
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.earn-state > .app-icon {
  width: 42px;
  height: 42px;
  color: var(--coral);
}

.earn-state h2 {
  margin: 16px 0 8px;
}

.earn-state .primary-button {
  margin-top: 18px;
}

.site-footer {
  padding: 78px 0 26px;
  background: #0c0c0e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand img {
  width: 120px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 320px;
  margin: 24px 0 18px;
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  line-height: 1.75;
}

.footer-brand span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact span {
  margin-bottom: -9px;
  font-size: 12px;
}

.footer-contact a {
  color: var(--white);
  font-size: 12px;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, .36);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-legal-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, .34);
  font-size: 11px;
  line-height: 1.4;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, .78);
}

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

  .header-location {
    margin-left: auto;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    padding: 22px 32px 30px;
    display: grid;
    gap: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav a {
    font-size: 15px;
    font-weight: 600;
  }

  .web-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-slider {
    grid-auto-columns: minmax(270px, 34%);
  }

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

  .confidence-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .confidence-intro {
    grid-column: 1 / -1;
  }

  .confidence-intro h2 br {
    display: none;
  }

  .detail-shell {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .detail-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .page-container,
  .header-container,
  .hero-inner,
  .page-shell {
    width: min(100% - 40px, var(--container));
  }

  .header-location,
  .header-account-link,
  .user-chip {
    display: none;
  }

  .web-hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    padding-top: 80px;
  }

  .hero-copy {
    width: 90%;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 10vw, 70px);
  }

  .hero-search-panel {
    grid-template-columns: 1fr 1fr 110px;
  }

  .detail-hero-shell {
    width: min(100% - 40px, var(--container));
  }

  .detail-hero-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .detail-hero-heading .detail-rating {
    justify-content: flex-start;
  }

  .detail-gallery {
    width: min(100% - 40px, var(--container));
    height: clamp(230px, 65vw, 430px);
    min-height: 0;
    margin-top: 18px;
    border-radius: 8px;
  }

  .detail-gallery-events {
    height: calc(70vw - 38px);
  }

  .detail-gallery-track {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(92px, 30%) minmax(0, calc(70% - 10px));
    grid-auto-columns: minmax(46vw, 50%);
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    transform: translateX(0);
  }

  .detail-gallery-slide {
    min-width: 0;
    min-height: 0;
    height: auto;
    border-radius: 8px;
    scroll-snap-align: start;
  }

  .detail-gallery-slide:first-child {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .detail-gallery-slide:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .detail-gallery-slide:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .detail-gallery-slide:nth-child(n+4) {
    grid-row: 1 / 3;
  }

  .detail-event-date {
    border-radius: 8px;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-dots {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 24px;
    display: flex;
    gap: 7px;
  }

  .detail-shell {
    width: min(100% - 40px, var(--container));
    grid-template-columns: 1fr;
  }

  .reservation-card {
    position: static;
    grid-row: 1;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .earn-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .detail-two-column {
    grid-template-columns: 1fr;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-intro {
    max-width: 600px;
  }

  .experience-slider {
    grid-auto-columns: minmax(265px, 48%);
  }

  .editorial-section {
    grid-template-columns: 1fr;
  }

  .editorial-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .editorial-large {
    min-height: 520px;
  }

  .filter-button {
    display: flex;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(360px, 88vw);
    padding: 28px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(-110%);
    transition: transform .3s ease;
  }

  .filter-sidebar.open {
    transform: translateX(0);
  }

  .filter-header button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    background: var(--surface);
    border: 0;
    border-radius: 50%;
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }

  .auth-shell {
    max-width: 560px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .auth-intro {
    text-align: center;
  }

  .auth-intro h1 {
    font-size: 46px;
  }

  .auth-intro > p:last-child {
    margin-inline: auto;
  }

  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-container,
  .header-container,
  .hero-inner,
  .page-shell {
    width: calc(100% - 32px);
  }

  .header-container {
    min-height: 66px;
    gap: 8px;
  }

  .brand img {
    width: 98px;
  }

  .language-select {
    padding-inline: 0;
  }

  .preference-form {
    width: 40px;
    height: 40px;
  }

  .preference-form:has(.currency-select) {
    width: 64px;
  }

  .header-preference-control {
    padding-inline: 7px;
  }

  .header-login {
    min-height: 38px;
    padding: 0 14px;
  }

  .mobile-menu-button {
    width: 38px;
    height: 38px;
  }

  .mobile-nav {
    top: 66px;
    padding-inline: 20px;
  }

  .web-hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 19, 24, .88), rgba(5, 19, 24, .3) 78%),
      linear-gradient(90deg, rgba(5, 19, 24, .55), transparent);
  }

  .hero-inner {
    padding: 76px 0 34px;
    justify-content: flex-end;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    margin-top: 12px;
    font-size: 43px;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-search-panel {
    min-height: 0;
    margin-top: 26px;
    padding: 8px;
    grid-template-columns: 1fr;
    gap: 2px;
    border-radius: 17px;
  }

  .search-field {
    min-height: 64px;
    padding: 9px 13px;
  }

  .location-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-search-button {
    min-height: 50px;
    margin-top: 4px;
  }

  .hero-trust {
    gap: 9px;
    font-size: 12px;
  }

  .category-section,
  .featured-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-title-row {
    margin-bottom: 26px;
  }

  .section-title-row h2 {
    font-size: 32px;
  }

  .web-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .highlights-section {
    padding-top: 52px;
  }

  .highlight-strip {
    width: calc(100vw - 16px);
    grid-auto-columns: 42vw;
  }

  .web-category-card {
    min-height: 148px;
    padding: 16px;
  }

  .experience-slider {
    width: calc(100vw - 16px);
    grid-auto-columns: 78vw;
  }

  .slider-controls {
    display: none;
  }

  .editorial-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .editorial-stack {
    grid-template-columns: 1fr;
  }

  .editorial-large,
  .editorial-feature {
    min-height: 390px;
  }

  .editorial-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .editorial-copy h2 {
    font-size: 34px;
  }

  .catalog-heading {
    flex-direction: row;
    align-items: flex-end;
  }

  .catalog-tools p {
    display: none;
  }

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

  .product-card-image {
    aspect-ratio: 1.45;
  }

  .confidence-section {
    padding: 72px 0;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence-intro {
    grid-column: auto;
  }

  .confidence-item h3 {
    margin-top: 34px;
  }

  .provider-grid {
    grid-template-columns: 1fr;
  }

  .dialog-card {
    padding: 28px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .auth-page {
    min-height: calc(100vh - 66px);
    padding-top: 60px;
  }

  .auth-intro h1 {
    font-size: 38px;
  }

  .auth-card {
    padding: 24px;
  }

  .results-heading h1 {
    font-size: 38px;
  }

  .detail-gallery {
    width: calc(100% - 24px);
    height: clamp(220px, 65vw, 330px);
    min-height: 0;
  }

  .detail-gallery-events {
    height: calc(70vw - 27px);
  }

  .detail-hero-shell {
    width: calc(100% - 24px);
    padding-top: 32px;
  }

  .detail-hero-heading h1 {
    font-size: 28px;
  }

  .gallery-dots {
    right: 20px;
    bottom: 22px;
  }

  .detail-shell {
    width: calc(100% - 24px);
    padding-top: 20px;
  }

  .detail-section {
    padding: 20px;
    border-radius: 16px;
  }

  .gallery-lightbox figure {
    padding: 54px 14px 64px;
  }

  .gallery-lightbox img {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 132px);
  }

  .gallery-lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .gallery-lightbox-arrow.previous {
    left: 22px;
  }

  .gallery-lightbox-arrow.next {
    right: 22px;
  }

  .detail-facts,
  .detail-check-grid,
  .detail-option-grid,
  .similar-grid,
  .detail-policies,
  .working-hours {
    grid-template-columns: 1fr;
  }

  .detail-location {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .product-map {
    width: 100%;
    min-height: 240px;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .payment-percent {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-hero {
    padding: 52px 0 62px;
  }

  .profile-layout {
    width: calc(100% - 24px);
  }

  .profile-card,
  .profile-preferences {
    padding: 22px;
    border-radius: 16px;
  }

  .corporate-hero,
  .corporate-hero.compact {
    min-height: 320px;
  }

  .corporate-hero-content {
    padding: 48px 0 58px;
  }

  .corporate-back {
    margin-bottom: 28px;
  }

  .corporate-hero h1 {
    font-size: 39px;
  }

  .about-layout,
  .contact-grid,
  .legal-grid,
  .policy-copy,
  .earn-layout {
    width: calc(100% - 24px);
    margin-top: -24px;
  }

  .about-story,
  .about-values,
  .earn-explainer,
  .invitation-panel {
    padding: 24px;
    border-radius: 18px;
  }

  .contact-card,
  .legal-card {
    padding: 20px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    border-radius: 18px;
  }

  .contact-card > span,
  .legal-card > span,
  .policy-copy section > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .policy-copy {
    padding: 10px 22px 26px;
    border-radius: 18px;
  }

  .policy-copy section {
    grid-template-columns: 48px 1fr;
  }

  .earn-rate {
    font-size: 62px;
  }

  .reservations-hero {
    padding: 52px 0 66px;
  }

  .reservations-shell {
    width: calc(100% - 24px);
    margin-top: -28px;
  }

  .reservation-filters {
    margin-inline: -2px;
  }

  .reservation-item {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .reservation-item-image {
    min-height: 210px;
    aspect-ratio: 1.65;
  }

  .reservation-item-content {
    padding: 20px;
  }

  .reservation-item-heading {
    gap: 12px;
  }

  .reservation-item-heading h2 {
    font-size: 20px;
  }

  .reservation-item-heading > strong {
    font-size: 17px;
  }

  .reservation-summary-grid {
    grid-template-columns: 1fr;
  }

  .reservation-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
