.looksart-payment-trust {
      margin: 14px 0;
      padding: 13px 14px;
      border: 1px solid #e7e7ec;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
    }

    .looksart-payment-trust__row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 16px;
      text-align: center;
		margin-bottom: 10px;
    }

    .looksart-payment-trust__item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #5f6472;
      font-size: 13px;
      line-height: 1.35;
    }

    .looksart-payment-trust__icon {
      color: #2fb463;
      font-weight: 800;
    }

    @media (max-width: 767px) {
      .looksart-payment-trust {
        margin: 12px 0;
        padding: 12px;
        border-radius: 14px;
      }

      .looksart-payment-trust__row {
        gap: 9px 12px;
      }

      .looksart-payment-trust__item {
        font-size: 12.5px;
      }
    }


.floating-purchase__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.floating-purchase__price--sale {
  color: #fff4e5;
  text-shadow: 0 0 16px rgba(255, 146, 46, 0.28);
}

.floating-purchase__price-old {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1;
  font-weight: 700;
  color: rgba(226, 236, 255, 0.58);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 154, 72, 0.92);
  text-decoration-thickness: 2px;
}

.floating-purchase__price-old:empty {
  display: none;
}

@media (max-width: 760px) {
  .floating-purchase__price-row {
    justify-content: flex-start;
    gap: 7px;
  }

  .floating-purchase__price-old {
    font-size: 0.98rem;
  }
}

.copy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.js-pin-code[data-pending="1"] {
  opacity: 0.7;
}

.pin-poll-status {
  margin-top: 12px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

/* stripe */
/* popup root */

.looksart-payment-modal__email {
  margin-bottom: 14px;
}

#looksart-payment-modal[hidden] {
  display: none !important;
}

.looksart-payment-open {
  overflow: hidden;
}

.looksart-payment-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* backdrop */
.looksart-payment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* dialog */
.looksart-payment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    0 6px 20px rgba(0, 0, 0, 0.12);
  overscroll-behavior: contain;
}

/* close */
.looksart-payment-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f3f5f8;
  color: #1f2937;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* header */
.looksart-payment-modal__header {
  margin-bottom: 18px;
  padding-right: 44px;
}

.looksart-payment-modal__header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.looksart-payment-modal__header p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.45;
}

/* express + payment containers */
.looksart-payment-modal__express {
  margin-bottom: 14px;
}

.looksart-payment-modal__payment {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fbfcfe;
}

/* error */
.looksart-payment-modal__error {
  min-height: 20px;
  margin: 0 0 14px;
  color: #d92d20;
  font-size: 14px;
  line-height: 1.4;
}

/* submit */
.looksart-payment-modal__submit {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff922e 0%, #ff7a1a 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.looksart-payment-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 122, 26, 0.34);
}

.looksart-payment-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* mobile */
@media (max-width: 767px) {
  .looksart-payment-modal {
    align-items: flex-end;
    padding: 0;
  }

  .looksart-payment-modal__dialog {
    width: 100%;
    max-height: 88vh;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 22px 22px 0 0;
  }

  .looksart-payment-modal__header h3 {
    font-size: 22px;
  }

  .looksart-payment-modal__header p {
    font-size: 14px;
  }

  .looksart-payment-modal__submit {
    min-height: 54px;
    font-size: 17px;
  }
}


/* fix */
.e-con>.e-con-inner {
	width: 100vw!important;
}

.woocommerce div.product .product_title {
	display: none;
}

/** new design **/

/*
h1, h2, h3, h4, h5, h6, p {
	text-align: justify;
}
*/

a.wc-block-components-checkout-return-to-cart-button {
	display: none!important;
}

div.wc-block-components-text-input.wc-block-components-address-form__postcode, 
div.wc-block-components-text-input.wc-block-components-address-form__city,
div.wc-block-components-address-form__state.wc-block-components-state-input {
	display: none!important;
}

div.wc-block-checkout__order-notes.wp-block-woocommerce-checkout-order-note-block.wc-block-components-checkout-step {
	display: none!important;
}

.wp-block-woocommerce-checkout {
	padding: 10px!important;	
}

p#wc-guest-checkout-notice {
	display: none!important;
}

span.wc-block-components-address-form__address_2-toggle {
	display: none!important;
}

div.wc-block-components-text-input.wc-block-components-address-form__phone {
	display: none!important;
}

span.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-checkout-order-summary__title-price {
	display: none!important;
}

.wp-block-woocommerce-checkout-order-summary-totals-block {
	display: none!important;
}

.wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
	display: none;
}

.wc-block-components-sidebar-layout.wc-block-checkout.is-mobile {
	padding: 0px 15px 0px 15px;
}

.woocommerce div.product div.summary {
	margin-bottom: 0!important;
}

.noPadding {
	padding: 0!important;
}

:root {
  --bg-deep: #050814;
  --bg-mid: #111c3e;
  --bg-glow: #2d1b43;
  --text-main: #f7f3ef;
  --text-soft: #e6deda;
  --line: rgba(149, 179, 255, 0.36);
  --orange: #ff9f3d;
  --orange-strong: #ff7c2a;
  --blue: #63abff;
  --green: #4ed694;
  --pink: #ff7ca8;
  --card-bg: rgba(10, 17, 36, 0.72);
  --shadow-lg: 0 22px 54px rgba(0, 0, 0, 0.46);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Baloo 2", cursive!important;
  background:
    radial-gradient(circle at 15% 0%, rgba(89, 156, 255, 0.16), transparent 42%),
    radial-gradient(circle at 85% 8%, rgba(255, 148, 93, 0.18), transparent 38%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 56%);
  overflow-x: hidden;
	background-attachment: fixed;
}

html[lang="ru-RU"] body {
  font-family: "Segoe UI", sans-serif!important;
}

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

#page, .site {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.elementor-widget-navigation-menu a.hfe-menu-item, .elementor-widget-navigation-menu a.hfe-sub-menu-item,
.lang-trigger,
.lang-list li, .lang-list li a {
	font-family: "Baloo 2", cursive!important;
}

html[lang="ru-RU"] .elementor-widget-navigation-menu a.hfe-menu-item,
html[lang="ru-RU"] .elementor-widget-navigation-menu a.hfe-sub-menu-item,
html[lang="ru-RU"] .lang-trigger,
html[lang="ru-RU"] .lang-list li,
html[lang="ru-RU"] .lang-list li a {
  font-family: "Segoe UI", sans-serif!important;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fredoka", sans-serif!important;
  line-height: 1.08;
  letter-spacing: 0.2px;
  text-wrap: balance;
	font-weight: bold;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  pointer-events: none;
	display: none;
}

.ehf-header #masthead, .site-header {
  position: sticky!important;
  top: 0!important;
  z-index: 90;
  background: linear-gradient(180deg, rgba(5, 9, 22, 0.96), rgba(5, 9, 22, 0.72))!important;
  border-bottom: 1px solid rgba(138, 170, 255, 0.22)!important;
  backdrop-filter: blur(10px)!important;
}

.main-nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff4ea;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text-soft);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(120, 170, 255, 0.16);
  color: #ffffff;
}

.badge-counter {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 127, 0.44);
  background: rgba(255, 145, 53, 0.14);
}

.badge-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffd8ac;
}

.badge-value {
  font-size: 1rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(141, 177, 255, 0.44);
  background: rgba(18, 27, 60, 0.85);
  cursor: pointer;
  justify-content: center;
  align-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin-inline: auto;
  background: #f4f8ff;
  border-radius: 999px;
}

.scroll-progress {
  position: fixed;
  inset: 100% 0 auto;
  z-index: 85;
  height: 4px;
  background: rgba(98, 126, 194, 0.2);
}

.scroll-progress__bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width 0.12s linear;
}

.explorer-widget {
  display: none;
  position: fixed;
  left: 14px;
  bottom: 18px;
  z-index: 60;
  width: 170px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(141, 182, 255, 0.36);
  background: rgba(9, 16, 36, 0.85);
  box-shadow: var(--shadow-lg);
}

.explorer-widget p {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.explorer-meter {
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.explorer-meter__bar {
  width: 0;
  height: 8px;
  background: linear-gradient(90deg, #ffb04c, #5ea9ff);
  transition: width 0.3s ease;
}

.explorer-widget strong {
  margin-top: 6px;
  display: inline-block;
  font-size: 1rem;
}

.section-dots {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: grid;
  gap: 8px;
}

.section-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(193, 214, 255, 0.75);
  background: rgba(145, 180, 255, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section-dot.is-active,
.section-dot:hover {
  transform: scale(1.22);
  background: linear-gradient(160deg, var(--orange), var(--blue));
  box-shadow: 0 0 10px rgba(108, 169, 255, 0.65);
}

.section-dot.is-visited {
  background: rgba(95, 221, 156, 0.9);
}

.story-section {
  position: relative;
  min-height: 100svh;
  padding-block: 90px;
  isolation: isolate;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-overlay--night {
  background:
    linear-gradient(180deg, rgba(8, 12, 30, 0.48), rgba(8, 12, 30, 0.82)),
    radial-gradient(circle at 50% 18%, rgba(84, 118, 226, 0.18), transparent 56%);
}

.section-overlay--warm {
  background:
    linear-gradient(180deg, rgba(36, 14, 22, 0.22), rgba(12, 16, 36, 0.7)),
    radial-gradient(circle at 50% 100%, rgba(255, 145, 54, 0.18), transparent 52%);
}

.section-overlay--street {
  background:
    linear-gradient(180deg, rgba(23, 8, 20, 0.46), rgba(7, 12, 30, 0.8));
}

.section-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 129, 0.54);
  background: rgba(255, 146, 58, 0.14);
  color: #ffd5a5;
  font-weight: 800;
  font-size: 0.95rem;
  width: fit-content;
}

h1 {
  font-size: clamp(2.05rem, 5.2vw, 4.3rem);
}

h2 {
  font-size: clamp(1.75rem, 4.2vw, 3.2rem);
}














/** custom styles for main page - START */

.lead,
.copy-block p {
  max-width: 100%;
  color: var(--text-soft);
  font-size: clamp(1.03rem, 1.8vw, 1.2rem);
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  box-shadow: 0 14px 28px rgba(255, 131, 45, 0.34);
}

.btn--secondary {
  color: #fff;
  background: rgba(90, 136, 255, 0.24);
  border-color: rgba(154, 188, 255, 0.5);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.selected-quest {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(10, 16, 36, 0.72);
  border: 1px solid var(--line);
  font-weight: 700;
}

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

.quest-card {
  position: relative;
  min-height: 320px;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(150, 184, 255, 0.3);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.quest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quest-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(6, 10, 25, 0), rgba(6, 10, 25, 0.9));
}

.quest-card__title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(150, 190, 255, 0.34);
  background: rgba(7, 11, 26, 0.75);
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.quest-card:hover,
.quest-card.is-active {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(235, 246, 255, 0.8);
  box-shadow: var(--shadow-lg), 0 0 38px rgba(95, 154, 255, 0.4);
}

.top-rated {
  position: absolute;
  width: 120px;
  top: -9px;
  right: -12px;
  filter: drop-shadow(0 0 18px rgba(255, 162, 70, 0.8));
  z-index: 2;
  pointer-events: none;
}

.app-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.copy-block {
  display: grid;
  gap: 15px;
  align-content: start;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}

.store-btn {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.app-phone-mock {
  justify-self: center;
  width: min(310px, 84vw);
  border-radius: 32px;
  border: 6px solid #1e2444;
  background: #f7f4ed;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.phone-notch {
  width: 36%;
  height: 20px;
  border-radius: 0 0 16px 16px;
  margin-inline: auto;
  background: #181d31;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 8px;
  color: #2e3748;
}

.app-logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1cb7ff, #ff8e2e);
}

.phone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 10px 12px;
}

.phone-cards article {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8dde7;
}

.phone-cards h3 {
  padding: 10px 9px;
  font-size: 0.93rem;
  color: #243042;
}

.phone-cards img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.family-layer {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(560px, 68vw);
}

.family-layer img {
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.48));
}

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

.journey-card {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(147, 184, 255, 0.3);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
}

.journey-card__bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.96;
}

.journey-card h3 {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 12, 28, 0.74);
  border: 1px solid rgba(145, 184, 255, 0.34);
  font-size: 1.05rem;
}

.journey-card__fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.92;
}

.missions-layout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.mission-stats article {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(145, 183, 255, 0.34);
  background: rgba(7, 13, 31, 0.76);
}

.counter {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
  color: #ffd59f;
}

.mission-stats p {
  font-size: 0.92rem;
  color: #e5e7f4;
}

.missions-family {
  justify-self: end;
  width: min(640px, 74vw);
}

.missions-family img {
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.5));
}

.map-layout {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}

.badge-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(145, 183, 255, 0.32);
  background: rgba(7, 13, 30, 0.76);
  font-size: 0.9rem;
}

.map-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(145, 183, 255, 0.36);
  box-shadow: var(--shadow-lg);
}

.landmark-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: linear-gradient(160deg, #ffbe67, #ff7c2a);
  box-shadow: 0 0 0 0 rgba(255, 158, 68, 0.84);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: pinPulse 2.1s infinite;
}

.landmark-pin.is-collected {
  background: linear-gradient(160deg, #7cffb6, #39be89);
}

.split-content {
  align-content: end;
  min-height: min(62vh, 580px);
}

.reward-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(146, 184, 255, 0.34);
  background: rgba(10, 16, 35, 0.72);
  width: min(560px, 100%);
}

.quiz {
  min-height: auto;
  padding-block: 110px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 142, 58, 0.17), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(98, 158, 255, 0.19), transparent 38%),
    linear-gradient(180deg, rgba(6, 10, 27, 0.95), rgba(6, 10, 27, 0.95));
}

.quiz-card {
  margin-top: 12px;
  padding: clamp(18px, 4vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(150, 186, 255, 0.38);
  background: rgba(10, 18, 41, 0.82);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.quiz-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.quiz-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width 0.26s ease;
}

.quiz-step {
  color: #ffd5a7;
  font-weight: 700;
}

.quiz-options {
  display: grid;
  gap: 8px;
}

.quiz-option {
  border: 1px solid rgba(145, 182, 255, 0.34);
  border-radius: 12px;
  padding: 10px 12px;
  color: #f3f6ff;
  background: rgba(8, 13, 30, 0.76);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.quiz-option:hover {
  transform: translateX(2px);
  border-color: rgba(255, 202, 145, 0.72);
}

.quiz-option.is-selected {
  border-color: rgba(255, 202, 145, 0.9);
  background: rgba(255, 148, 54, 0.2);
}

.quiz-option.is-correct {
  border-color: rgba(102, 232, 157, 0.86);
  background: rgba(49, 168, 111, 0.22);
}

.quiz-option.is-wrong {
  border-color: rgba(255, 121, 121, 0.86);
  background: rgba(196, 74, 74, 0.24);
}

.quiz-result {
  min-height: 26px;
  font-weight: 700;
}

.quiz-card.is-celebrating::before,
.quiz-card.is-celebrating::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  animation: confettiDrop 1.2s linear infinite;
}

.quiz-card.is-celebrating::before {
  left: 18%;
  top: -15px;
  background: #ffb14e;
}

.quiz-card.is-celebrating::after {
  left: 76%;
  top: -18px;
  background: #66b0ff;
  animation-delay: 0.35s;
}

.site-footer {
  padding: 26px 12px 34px;
  text-align: center;
  border-top: 1px solid rgba(145, 182, 255, 0.22);
  background: rgba(5, 8, 20, 0.85);
  color: #ced7f2;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(4, 8, 22, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(480px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(145, 184, 255, 0.4);
  background: linear-gradient(180deg, rgba(15, 23, 52, 0.96), rgba(10, 16, 37, 0.96));
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
  display: grid;
  gap: 10px;
}

.modal-tag {
  color: #ffd3a2;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(145, 184, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.reveal {
  /* opacity: 0; 
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
	*/
}

.reveal.is-visible {
  /* opacity: 1; */
  /* transform: translateY(0) scale(1); */
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 158, 68, 0.85);
  }
  80% {
    box-shadow: 0 0 0 18px rgba(255, 158, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 158, 68, 0);
  }
}

@keyframes confettiDrop {
  from {
    transform: translateY(-8px) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: translateY(110px) rotate(340deg);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .explorer-widget,
  .section-dots {
    display: none;
  }

  .main-nav {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-toggle {
    display: grid;
    order: 2;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(6, 10, 26, 0.96);
    border-bottom: 1px solid rgba(145, 182, 255, 0.24);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .badge-counter {
    order: 4;
    margin-left: auto;
  }

  .app-layout,
  .missions-layout,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .family-layer,
  .missions-family {
    justify-self: center;
  }

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

@media (max-width: 760px) {
  .story-section {
    min-height: auto;
    padding-block: 70px;
  }

  .scroll-progress {
    inset: 62px 0 auto;
  }

  .main-nav {
    min-height: 64px;
  }

  .quest-grid,
  .journey-cards,
  .mission-stats {
    grid-template-columns: 1fr!important;
  }

  .quest-card {
    min-height: 260px;
  }

  .top-rated {
    width: 95px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .map-stage {
    min-height: 280px;
  }

  .map-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .quiz {
    padding-block: 90px;
  }
}

.story-section.quests {
  min-height: auto;
  padding-block: 64px 76px;
}

.story-section.quests .section-content {
  gap: 30px;
}

.quests-copy {
  display: grid;
  gap: 14px;
}

.quests-intro {
  max-width: 820px;
  margin-inline: auto;
  color: #f2e8de;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.45;
  text-align: center;
}

.story-section.quests h1 {
  max-width: 10ch;
}

.story-section.quests .lead {
  max-width: 42ch;
}

.quest-shelf {
  position: relative;
}

.story-section.quests .quest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.story-section.quests .quest-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(18, 31, 72, 0.96), rgba(11, 22, 50, 0.96));
  border: 1px solid rgba(120, 166, 255, 0.28);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

.story-section.quests .quest-card::after {
  display: none;
}

.story-section.quests .quest-card:hover,
.story-section.quests .quest-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(236, 244, 255, 0.72);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), 0 0 34px rgba(94, 152, 255, 0.34);
}

.quest-card__media {
  position: relative;
  min-height: 176px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(141, 184, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.quest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quest-card__content {
  display: grid;
  gap: 8px;
  padding: 14px 8px 8px;
}

.story-section.quests .quest-card__title {
  position: static;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1.28rem;
  line-height: 1.05;
}

.quest-card__description {
  color: rgba(231, 238, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.32;
}

.quest-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #d9e3ff;
  font-size: 0.95rem;
  font-weight: 700;
}

.quest-card__price {
  font-family: "Fredoka", sans-serif;
  font-size: 1.45rem;
  color: #fff4e5;
}

.quest-card__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #ffd472;
  font-weight: 800;
  font-size: 1rem;
}

.quest-card__rating::before {
  content: "\2605";
  margin-right: 2px;
}

.quest-card__rating small {
  color: #ced8fa;
  font-size: 0.86rem;
}

.story-section.quests .top-rated {
  position: absolute;
  width: 104px;
  height: auto;
  top: -8px;
  right: -8px;
  z-index: 3;
  object-fit: contain;
  pointer-events: none;
}

.quest-card--coming-soon {
  background: linear-gradient(180deg, rgba(230, 230, 230, 0.92), rgba(190, 190, 190, 0.9));
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(54, 54, 54, 0.92);
  box-shadow: none;
  cursor: default;
}

.story-section.quests .quest-card--coming-soon:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.quest-card--coming-soon .quest-card__title,
.quest-card--coming-soon .quest-card__status {
  color: rgba(255, 255, 255, 0.92);
}

.quest-card--coming-soon .quest-card__description {
  color: rgba(255, 255, 255, 0.72);
}

.quest-card__media--placeholder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(92, 92, 92, 0.4)),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(235, 235, 235, 0.9), rgba(122, 122, 122, 0.85));
  filter: grayscale(1);
}

.quest-card__media--placeholder::before,
.quest-card__media--placeholder::after {
  position: absolute;
  left: 16px;
  right: 16px;
}

.quest-card__media--emily::before,
.quest-card__media--rome-for-two::before {
  top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: rgba(80, 80, 80, 0.85);
}

.quest-card__media--emily::before {
  content: "EMILY IN ROME";
}

.quest-card__media--rome-for-two::before {
  content: "ROME FOR TWO";
}

.quest-card__media--placeholder::after {
  bottom: 14px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.quest-card__status {
  font-weight: 800;
  font-size: 1.02rem;
}

.quest-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.quest-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(164, 190, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.quest-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

@media (max-width: 980px) {
  .story-section.quests .section-content {
    overflow: hidden;
  }

  .quest-shelf {
    margin-right: -8vw;
  }

  .story-section.quests .quest-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 8vw 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .story-section.quests .quest-grid::-webkit-scrollbar {
    display: none;
  }

  .story-section.quests .quest-card {
    flex: 0 0 calc((100% - 14px) / 1.65);
    scroll-snap-align: start;
  }

  .quest-dots {
    display: flex;
  }
}


.quest-dots {
  justify-content: flex-end;
}

.quest-dot {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .quest-shelf {
    margin-right: -8vw;
    padding-right: 8vw;
  }

  .story-section.quests .quest-grid {
    scroll-padding-left: 0;
  }

  .story-section.quests .quest-card {
    flex: 0 0 min(330px, 61%);
  }
}

@media (max-width: 760px) {
  .quest-shelf {
    margin-right: -6vw;
    padding-right: 6vw;
  }

  .story-section.quests .quest-grid {
    gap: 12px;
    padding-right: 6vw;
  }

  .story-section.quests .quest-card {
    flex: 0 0 58%;
    min-width: 58%;
  }

  .quest-dots {
    margin-top: 14px;
    justify-content: flex-end;
  }

  .story-section.quests {
    padding-block: 52px 62px;
  }

  .quests-intro {
    text-align: left;
    margin-inline: 0;
  }

  .story-section.quests .quest-card {
    flex-basis: calc((100% - 12px) / 1.58);
    border-radius: 24px;
  }

  .quest-card__media {
    min-height: 152px;
  }

  .story-section.quests .quest-card__title {
    font-size: 1.12rem;
  }

  .quest-card__description {
    font-size: 0.88rem;
  }

  .quest-card__price {
    font-size: 1.24rem;
  }

  .story-section.quests .top-rated {
    width: 84px;
  }
}




.quest-dots {
  width: fit-content;
  margin-left: auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 12, 28, 0.68);
  border: 1px solid rgba(142, 182, 255, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  justify-content: flex-end;
}

.quest-dot {
  appearance: none;
  width: 9px;
  height: 9px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(175, 196, 244, 0.35);
  transition: width 0.22s ease, transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.quest-dot:hover {
  transform: scale(1.08);
  background: rgba(203, 220, 255, 0.55);
}

.quest-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  box-shadow: 0 0 16px rgba(113, 173, 255, 0.42);
}

@media (max-width: 760px) {
  .quest-dots {
    margin-top: 14px;
    padding: 7px 9px;
  }
}

.quest-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.quest-dot {
  display: block;
  flex: 0 0 auto;
  min-width: 9px;
  min-height: 9px;
}


@media (max-width: 980px) {
  .quest-dots {
    margin-right: 8vw;
  }
}

@media (max-width: 760px) {
  .quest-dots {
    margin-right: 6vw;
  }
}

@media (max-width: 980px) {
  .story-section.quests .section-content {
    overflow: visible;
  }

  .quest-shelf {
    margin-right: 0;
    padding-right: 0;
  }

  .story-section.quests .quest-grid {
    padding-right: 0;
  }

  .quest-dots {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .quest-shelf {
    margin-right: 0;
    padding-right: 0;
  }

  .story-section.quests .quest-grid {
    padding-right: 0;
  }

  .quest-dots {
    margin-right: 0;
  }
}

.story-section.quests .section-content,
.story-section.quests .section-content > *,
.quests-copy,
.quest-shelf {
  min-width: 0;
}

.quests-copy {
  width: 100%;
  max-width: 100%;
}

.story-section.quests h1,
.story-section.quests .lead,
.quests-intro {
  width: 100%;
  max-width: 100%;
}

.tour-gallery,
.tour-gallery__copy,
.tour-gallery__shell,
.tour-gallery__viewport,
.tour-gallery__track {
  min-width: 0;
}

.tour-gallery {
  --tour-gallery-gap: 14px;
  --tour-gallery-slide-width: calc((100vw - 18px) / 1.65);
  --tour-gallery-slide-radius: 18px;
  display: grid;
  gap: 18px;
  width: 100%;
  margin-top: 8px;
  justify-items: center;
}

.tour-gallery__copy {
  display: grid;
  gap: 10px;
  max-width: 700px;
}

.tour-gallery__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 129, 0.45);
  background: rgba(255, 148, 61, 0.12);
  color: #ffe2c4;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tour-gallery h2 {
  max-width: 13ch;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.tour-gallery__lead {
  max-width: 46ch;
  color: rgba(232, 238, 255, 0.84);
  font-size: 1rem;
  line-height: 1.45;
}

.tour-gallery__shell {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.tour-gallery__viewport {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 24px;
  background: rgba(3, 8, 20, 0.72);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.tour-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.tour-gallery__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  gap: var(--tour-gallery-gap);
  padding-inline-end: var(--tour-gallery-gap);
}

.tour-gallery__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--tour-gallery-slide-width);
  min-width: var(--tour-gallery-slide-width);
  margin: 0;
  max-height: 600px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: var(--tour-gallery-slide-radius);
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.tour-gallery__slide::after {
  display: none;
}

.tour-gallery__slide.is-active {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.tour-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 600px;
  border-radius: var(--tour-gallery-slide-radius);
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: none;
}

.tour-gallery__slide.is-active img {
  transform: none;
  filter: none;
}

.tour-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(142, 182, 255, 0.22);
  background: rgba(7, 12, 28, 0.7);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  flex-wrap: wrap;
}

.tour-gallery__dot {
  appearance: none;
  display: block;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(175, 196, 244, 0.35);
  cursor: pointer;
  transition: width 0.22s ease, transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.tour-gallery__dot:hover {
  transform: scale(1.08);
  background: rgba(203, 220, 255, 0.55);
}

.tour-gallery__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  box-shadow: 0 0 16px rgba(113, 173, 255, 0.42);
}

@media (max-width: 980px) {
  .tour-gallery {
    gap: 16px;
  }

  .tour-gallery__copy {
    max-width: 100%;
  }

  .tour-gallery__viewport {
    border-radius: 20px;
  }
}

@media (max-width: 760px) {
  .tour-gallery {
    --tour-gallery-gap: 12px;
    --tour-gallery-slide-width: calc((100vw - 28px) / 1.55);
    --tour-gallery-slide-radius: 16px;
    margin-top: 4px;
    gap: 14px;
  }

  .tour-gallery__lead {
    font-size: 0.96rem;
  }

  .tour-gallery__viewport {
    border-radius: 18px;
  }

  .tour-gallery__dots {
    padding: 7px 9px;
  }
}

@media (min-width: 760px) {
  .tour-gallery {
    --tour-gallery-slide-width: calc((100vw - 18px) / 1.65);
  }

  .tour-gallery__slide {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 760px) {
	.tour-gallery__slide {
	  height: 500px!important;
  }
}

@media (min-width: 900px) {
  .tour-gallery {
    --tour-gallery-slide-width: calc((100vw - 28px) / 2.65);
  }

  .tour-gallery__slide {
    aspect-ratio: 5 / 6;
  }
}

@media (min-width: 1200px) {
  .tour-gallery {
    --tour-gallery-slide-width: calc((100vw - 28px) / 3.65);
  }
}

.story-section.quests .quest-grid.is-draggable,
.tour-gallery__viewport.is-draggable {
  cursor: grab;
}

.story-section.quests .quest-grid.is-draggable.is-dragging,
.tour-gallery__viewport.is-draggable.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.story-section.quests .quest-grid.is-dragging,
.tour-gallery__viewport.is-dragging,
.story-section.quests .quest-grid.is-dragging *,
.tour-gallery__viewport.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}


.floating-purchase {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
	
	opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + 16px));
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.is-floating-purchase-visible .floating-purchase {
  opacity: 1!important;
  visibility: visible!important;
  transform: translateY(0)!important;
}

.floating-purchase__inner {
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(142, 182, 255, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 14, 32, 0.94), rgba(7, 12, 28, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 154, 72, 0.12), transparent 32%),
    radial-gradient(circle at 80% 100%, rgba(99, 171, 255, 0.12), transparent 30%);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(16px);
  pointer-events: auto;
	align-items: center;
	text-align: center;
}

.floating-purchase__price-block {
  display: grid;
  gap: 2px;
  min-width: max-content;
}

.floating-purchase__price {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1;
  font-weight: 700;
  color: #fff4e5;
}

.floating-purchase__caption {
  color: rgba(226, 236, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.2;
}

.floating-purchase__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.floating-purchase__title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
  color: #ffffff;
}

.floating-purchase__text {
  color: rgba(226, 236, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.3;
}

.floating-purchase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-strong));
  color: #fff8f0;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(255, 124, 42, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-purchase__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 124, 42, 0.34);
  filter: brightness(1.03);
}

.floating-purchase__button:active {
  transform: translateY(0);
}

@media (max-width: 980px) {
  body.has-floating-purchase {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  .floating-purchase {
    padding-inline: 14px;
  }

  .floating-purchase__inner {
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
    padding: 15px 16px;
  }

  .floating-purchase__button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  body.has-floating-purchase {
    padding-bottom: calc(156px + env(safe-area-inset-bottom, 0px));
  }

  .floating-purchase {
    padding-inline: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .floating-purchase__inner {
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .floating-purchase__price-block {
    gap: 1px;
  }

  .floating-purchase__price {
    font-size: 1.68rem;
  }

  .floating-purchase__caption {
    font-size: 0.84rem;
  }

  .floating-purchase__copy {
    grid-column: 1 / -1;
    gap: 4px;
  }

  .floating-purchase__title {
    font-size: 1rem;
  }

  .floating-purchase__text {
    font-size: 0.86rem;
  }

  .floating-purchase__button {
	  max-width: 100px;
    min-width: 138px;
    min-height: 48px;
    padding-inline: 20px;
    font-size: 0.98rem;
  }
}

.quest-detail-gallery,
.quest-detail-gallery__copy,
.quest-detail-gallery__shell,
.quest-detail-gallery__stage,
.quest-detail-gallery__rail {
  min-width: 0;
}

.quest-detail-gallery {
  display: grid;
  gap: 18px;
  width: 100%;
  margin-top: 8px;
}

.quest-detail-gallery__copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.quest-detail-gallery__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 129, 0.45);
  background: rgba(255, 148, 61, 0.12);
  color: #ffe2c4;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quest-detail-gallery h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.quest-detail-gallery__lead {
  max-width: 58ch;
  color: rgba(232, 238, 255, 0.84);
  font-size: 1rem;
  line-height: 1.45;
}

.quest-detail-gallery__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 16px;
  align-items: start;
}

.quest-detail-gallery__stage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 380px;
  height: min(620px, 72vh);
  /* padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(128, 172, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(10, 18, 42, 0.95), rgba(9, 18, 36, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(100, 169, 255, 0.12), transparent 48%);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
	*/
  overflow: hidden;
}

.quest-detail-gallery__main-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
	
	border-radius: 10px!important;
    border: 1px solid rgba(128, 172, 255, 0.24)!important;
    width: auto;
    aspect-ratio: 1 / 1;
}

.quest-detail-gallery__rail {
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: min(620px, 72vh);
  padding-right: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 172, 255, 0.55) rgba(7, 12, 28, 0.28);
}

.quest-detail-gallery__rail::-webkit-scrollbar {
  width: 8px;
}

.quest-detail-gallery__rail::-webkit-scrollbar-track {
  background: rgba(7, 12, 28, 0.28);
  border-radius: 999px;
}

.quest-detail-gallery__rail::-webkit-scrollbar-thumb {
  background: rgba(122, 172, 255, 0.55);
  border-radius: 999px;
}

.quest-detail-gallery__thumb {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 98px;
  padding: 8px;
  border: 1px solid rgba(128, 172, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 30, 66, 0.96), rgba(10, 18, 39, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(255, 162, 86, 0.08), transparent 42%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.quest-detail-gallery__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 220, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 18px rgba(99, 171, 255, 0.16);
}

.quest-detail-gallery__thumb.is-active {
  border-color: rgba(236, 244, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(27, 46, 97, 0.98), rgba(13, 23, 53, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(255, 176, 92, 0.14), transparent 42%);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32), 0 0 24px rgba(94, 152, 255, 0.22);
}

.quest-detail-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

@media (max-width: 980px) {
  .quest-detail-gallery__shell {
    grid-template-columns: minmax(0, 1fr) 100px;
    gap: 14px;
  }

  .quest-detail-gallery__stage {
    min-height: 340px;
    border-radius: 24px;
  }

  .quest-detail-gallery__rail {
    max-height: min(560px, 66vh);
  }

  .quest-detail-gallery__thumb {
    min-height: 84px;
    border-radius: 18px;
  }
}

@media (max-width: 760px) {
  .quest-detail-gallery {
    gap: 14px;
    margin-top: 4px;
  }

  .quest-detail-gallery__lead {
    font-size: 0.96rem;
  }

  .quest-detail-gallery__shell {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 10px;
  }

  .quest-detail-gallery__stage {
    min-height: 250px;
    height: 250px;
    max-height: 250px;
    /* padding: 12px; */
    border-radius: 20px;
  }

  .quest-detail-gallery__rail {
    gap: 10px;
    max-height: 250px;
    padding-right: 2px;
  }

  .quest-detail-gallery__thumb {
    min-height: 72px;
    padding: 6px;
    border-radius: 16px;
  }
}

.quest-warning,
.quest-warning__content {
  min-width: 0;
}

.quest-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 100%;
  margin-top: 8px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 176, 92, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(38, 18, 10, 0.94), rgba(17, 11, 21, 0.92)),
    radial-gradient(circle at 10% 10%, rgba(255, 163, 82, 0.18), transparent 26%),
    radial-gradient(circle at 88% 100%, rgba(99, 171, 255, 0.12), transparent 28%);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.quest-warning__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 166, 86, 0.24), rgba(255, 124, 42, 0.2));
  border: 1px solid rgba(255, 186, 124, 0.38);
  color: #fff5ea;
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(255, 124, 42, 0.16);
}

.quest-warning__content {
  display: grid;
  gap: 10px;
}

.quest-warning__eyebrow {
  color: #ffbe86;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quest-warning__title {
  max-width: 100%;
  color: #fff8f0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.06;
}

.quest-warning__text {
  max-width: 100%;
  color: rgba(246, 236, 228, 0.86);
  font-size: 1rem;
  line-height: 1.5;
}

.quest-warning__accent {
  color: #ffd18f;
  font-weight: 700;
}

@media (max-width: 980px) {
  .quest-warning {
    gap: 16px;
    padding: 22px 20px 20px;
  }

  .quest-warning__icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }
}

@media (max-width: 760px) {
  .quest-warning {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 4px;
    padding: 18px 16px 17px;
    border-radius: 22px;
  }

  .quest-warning__icon {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .quest-warning__content {
    gap: 8px;
  }

  .quest-warning__eyebrow {
    font-size: 0.84rem;
  }

  .quest-warning__text {
    font-size: 0.94rem;
    line-height: 1.42;
  }
}

.quest-assurance,
.quest-assurance__content {
  min-width: 0;
}

.quest-assurance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 100%;
  margin-top: 8px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(109, 219, 168, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 30, 26, 0.94), rgba(10, 17, 32, 0.92)),
    radial-gradient(circle at 12% 8%, rgba(93, 229, 174, 0.16), transparent 26%),
    radial-gradient(circle at 88% 100%, rgba(99, 171, 255, 0.14), transparent 30%);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.quest-assurance__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(109, 219, 168, 0.24), rgba(78, 214, 148, 0.18));
  border: 1px solid rgba(141, 240, 198, 0.34);
  color: #effff7;
  font-family: "Fredoka", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(78, 214, 148, 0.14);
}

.quest-assurance__content {
  display: grid;
  gap: 10px;
}

.quest-assurance__eyebrow {
  color: #89ebc1;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quest-assurance__title {
  max-width: 100%;
  color: #f4fff9;
  font-size: 14px;
  line-height: 1.08;
}

.quest-assurance__text {
  max-width: 100%;
  color: rgba(233, 248, 241, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .quest-assurance {
    gap: 16px;
    padding: 22px 20px 20px;
  }

  .quest-assurance__icon {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }
}

@media (max-width: 760px) {
  .quest-assurance {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 4px;
    padding: 18px 16px 17px;
    border-radius: 22px;
  }

  .quest-assurance__icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .quest-assurance__content {
    gap: 8px;
  }

  .quest-assurance__eyebrow {
    font-size: 0.84rem;
  }

  .quest-assurance__text {
    font-size: 0.94rem;
    line-height: 1.42;
  }
}

/** custom styles for main page - END */







.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  box-shadow: 0 14px 28px rgba(255, 131, 45, 0.34);
}

.btn--secondary {
  color: #fff;
  background: rgba(90, 136, 255, 0.24);
  border-color: rgba(154, 188, 255, 0.5);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.selected-quest {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(10, 16, 36, 0.72);
  border: 1px solid var(--line);
  font-weight: 700;
	display: none;
}

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

.quest-card {
  position: relative;
  min-height: 320px;
	max-width: 320px;
	margin: 0 auto;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(150, 184, 255, 0.3);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.wc-block-components-product-metadata {
	display: none!important;
}

.wc-block-components-product-metadata__description h2 {
	font-size: 12px;
	font-weight: 300px;
}

.quest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	opacity: 0.76;
}

.quest-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(6, 10, 25, 0), rgba(6, 10, 25, 0.9));
}

.quest-card__title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(150, 190, 255, 0.34);
  background: rgba(7, 11, 26, 0.75);
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.quest-card:hover,
.quest-card.is-active {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(235, 246, 255, 0.8);
  box-shadow: var(--shadow-lg), 0 0 38px rgba(95, 154, 255, 0.4);
}

.top-rated {
  position: absolute;
  width: 120px;
  top: -9px;
  right: -12px;
  filter: drop-shadow(0 0 18px rgba(255, 162, 70, 0.8));
  z-index: 2;
  pointer-events: none;
}

.app-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.copy-block {
  display: grid;
  gap: 15px;
  align-content: start;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.app-phone-mock {
  justify-self: center;
  width: min(310px, 84vw);
  border-radius: 32px;
  border: 6px solid #1e2444;
  background: #f7f4ed;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.phone-notch {
  width: 36%;
  height: 20px;
  border-radius: 0 0 16px 16px;
  margin-inline: auto;
  background: #181d31;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 8px;
  color: #2e3748;
}

.app-logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1cb7ff, #ff8e2e);
}

.phone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 10px 12px;
}

.phone-cards article {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8dde7;
}

.phone-cards h3 {
  padding: 10px 9px;
  font-size: 0.93rem;
  color: #243042;
}

.phone-cards img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.family-layer {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(560px, 68vw);
}

.family-layer img {
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.48));
}

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

.journey-card {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(147, 184, 255, 0.3);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
}

.journey-card__bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.96;
}

.journey-card h3 {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 12, 28, 0.74);
  border: 1px solid rgba(145, 184, 255, 0.34);
  font-size: 1.05rem;
}

.journey-card__fg {
  position: absolute;
  inset: 0;
  width: 100%!important;
  height: 100%!important;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.92;
}

.missions-layout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.mission-stats article {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(145, 183, 255, 0.34);
  background: rgba(7, 13, 31, 0.76);
}

.counter {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
  color: #ffd59f;
}

.mission-stats p {
  font-size: 0.92rem;
  color: #e5e7f4;
}

.missions-family {
  justify-self: end;
  width: min(640px, 74vw);
}

.missions-family img {
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.5));
}

.map-layout {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}

.badge-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
	display: none;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(145, 183, 255, 0.32);
  background: rgba(7, 13, 30, 0.76);
  font-size: 0.9rem;
}

.map-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(145, 183, 255, 0.36);
  box-shadow: var(--shadow-lg);
}

.landmark-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: linear-gradient(160deg, #ffbe67, #ff7c2a);
  box-shadow: 0 0 0 0 rgba(255, 158, 68, 0.84);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: pinPulse 2.1s infinite;
	padding: 0;
}

.landmark-pin.is-collected {
  background: linear-gradient(160deg, #7cffb6, #39be89);
}

.split-content {
  align-content: end;
  min-height: min(62vh, 580px);
}

.reward-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(146, 184, 255, 0.34);
  background: rgba(10, 16, 35, 0.72);
  width: min(560px, 100%);
}

.quiz {
  min-height: auto;
  padding-block: 110px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 142, 58, 0.17), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(98, 158, 255, 0.19), transparent 38%),
    linear-gradient(180deg, rgba(6, 10, 27, 0.95), rgba(6, 10, 27, 0.95));
}

.quiz-card {
  margin-top: 12px;
  padding: clamp(18px, 4vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(150, 186, 255, 0.38);
  background: rgba(10, 18, 41, 0.82);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.quiz-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.quiz-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width 0.26s ease;
}

.quiz-step {
  color: #ffd5a7;
  font-weight: 700;
}

.quiz-options {
  display: grid;
  gap: 8px;
}

.quiz-option {
  border: 1px solid rgba(145, 182, 255, 0.34);
  border-radius: 12px;
  padding: 10px 12px;
  color: #f3f6ff;
  background: rgba(8, 13, 30, 0.76);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.quiz-option:hover {
  transform: translateX(2px);
  border-color: rgba(255, 202, 145, 0.72);
}

.quiz-option.is-selected {
  border-color: rgba(255, 202, 145, 0.9);
  background: rgba(255, 148, 54, 0.2);
}

.quiz-option.is-correct {
  border-color: rgba(102, 232, 157, 0.86);
  background: rgba(49, 168, 111, 0.22);
}

.quiz-option.is-wrong {
  border-color: rgba(255, 121, 121, 0.86);
  background: rgba(196, 74, 74, 0.24);
}

.quiz-result {
  min-height: 26px;
  font-weight: 700;
}

.quiz-card.is-celebrating::before,
.quiz-card.is-celebrating::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  animation: confettiDrop 1.2s linear infinite;
}

.quiz-card.is-celebrating::before {
  left: 18%;
  top: -15px;
  background: #ffb14e;
}

.quiz-card.is-celebrating::after {
  left: 76%;
  top: -18px;
  background: #66b0ff;
  animation-delay: 0.35s;
}

.site-footer {
  padding: 26px 12px 34px;
  text-align: center;
  border-top: 1px solid rgba(145, 182, 255, 0.22);
  background: rgba(5, 8, 20, 0.85);
  color: #ced7f2;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(4, 8, 22, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(480px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(145, 184, 255, 0.4);
  background: linear-gradient(180deg, rgba(15, 23, 52, 0.96), rgba(10, 16, 37, 0.96));
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
  display: grid;
  gap: 10px;
}

.modal-tag {
  color: #ffd3a2;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(145, 184, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
	padding: 0;
}

.woocommerce-notices-wrapper {
	display: none;
}

div[data-elementor-type="wp-post"] {
	display: inline-grid;	
	width: 100%;
}

.reveal {
	/**
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
	*/
}

.reveal.is-visible {
	/**
  opacity: 1;
  transform: translateY(0) scale(1);
	*/
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 158, 68, 0.85);
  }
  80% {
    box-shadow: 0 0 0 18px rgba(255, 158, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 158, 68, 0);
  }
}

@keyframes confettiDrop {
  from {
    transform: translateY(-8px) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: translateY(110px) rotate(340deg);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .explorer-widget,
  .section-dots {
    display: none;
  }

  .main-nav {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-toggle {
    display: grid;
    order: 2;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(6, 10, 26, 0.96);
    border-bottom: 1px solid rgba(145, 182, 255, 0.24);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .badge-counter {
    order: 4;
    margin-left: auto;
  }

  .app-layout,
  .missions-layout,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .family-layer,
  .missions-family {
    justify-self: center;
  }

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

.info-block .icon i {
  font-size: 20px;
  line-height: 1;
}

.info-block .icon.blue {
  /* background: #e8f1ff; */
  background: transparent!important;
  color: #2f6fed;
}

.info-block .icon.emerald {
  /* background: #e9fbf2; */
  color: #169b62;
}

.info-block .icon.orange {
  /* background: #fff2e6; */
  color: #e67e22;
}

.info-block .icon.red {
  /* background: #ffe9e9; */
  color: #d64545;
}

.info-block .icon.violet {
  /* background: #f1ebff; */
  color: #7a4ce0;
}

.info-block .icon.teal {
  /* background: #e8fbfb; */
  color: #1597a3;
}

.info-block .icon.pink {
  /* background: #ffeaf3; */
  color: #d94f8a;
}


/* new design - end */







.current-menu-item a {
	color: #ffca05!important;
}

.woocommerce-error {
	display: none;
}

/** 
 * New main page - start
 */

section p, .info-content p {
  font-family: 'Segoe UI', sans-serif!important;
}

/* Titles */
section.quests .title {
  font-size: 42px;
  margin-bottom: 8px;
}

section.quests .subtitle {
  opacity: 0.75;
  margin-bottom: 50px;
}

/* Cards layout */
section.quests .cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
section.quests .card {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	
  display: flex;
  flex-direction: column;
}

section.quests .card-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

section.quests .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

section.quests .card:hover {
  transform: translateY(-6px);
}

/* Card variants */
section.quests .card-rome {
  border: 2px solid rgba(255,140,0,0.4);
  box-shadow: 0 0 40px rgba(255,140,0,0.35);
  background: url('https://looksart.eu/wp-content/uploads/2026/01/roma-tour.jpg');
  background-size: cover;
  background-position: center;
}

section.quests .card-paris {
  border: 2px solid rgba(80,150,255,0.4);
  box-shadow: 0 0 45px rgba(80,150,255,0.45);
  background: url('https://looksart.eu/wp-content/uploads/2026/01/colliseum-tour-image.jpg');
  background-size: cover;
  background-position: center;
}

/* Image */
section.quests .card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

section.quests .card-image.rome {
  background-image: url("https://images.unsplash.com/photo-1529260830199-42c24126f198");
}

section.quests .card-image.paris {
  background-image: url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34");
}

/* Content */
section.quests .card-content {
  height: 100%;
}

section.quests h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

/* Rating */
section.quests .rating {
  color: gold;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* Price & button */
section.quests .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.quests .price {
  font-size: 22px;
  font-weight: 600;
}

section.quests .buy {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.25);
}

section.quests .buy-orange {
  background: linear-gradient(135deg, #ff8c00, #ff3c00);
}

section.quests .buy-blue {
  background: linear-gradient(135deg, #4f9cff, #2b6bff);
}

/* Footer */
section.quests .footer-text {
  margin-top: 40px;
  opacity: 0.7;
}



/* app download */
section.app-download {
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

/* Title */
section.app-download .app-title {
  font-size: 42px;
  margin-bottom: 12px;
}

section.app-download .app-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 60px;
}

/* Main layout */
section.app-download .app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* Phone */
section.app-download .app-phone {
	width: 40%;	
}

section.app-download .app-phone img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}

/* Family */
section.app-download .app-family {
	width: 40%;
}

section.app-download .app-family img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Stores */
section.app-download .app-stores {
	margin-top: -40vh;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

section.app-download .store-btn img {
  width: 120px;
	height: 41px;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

section.app-download .store-btn:hover img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 16px 30px rgba(255,200,120,0.6));
}

/* Floating phone animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  section.app-download .app-content {
    gap: 40px;
  }

  section.app-download .app-title {
    font-size: 32px;
  }

  section.app-download .app-phone img {
    max-width: 260px;
  }

  section.app-download .app-family img {
    max-width: 280px;
  }
}



/** 
 * New main page - end
 */
















.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
	color: #7e7e7e!important;
}

.wcstripe-payment-element.StripeElement {
	background: white;
    padding: 10px;
    border-radius: 10px;
}

.how-it-works__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  color: white;
}

.how-it-works__btn span {
	font-size: 34px;
	font-weight: bold;
}

.how-it-works span {
	color: red;
}

.how-it-works:hover span {
  text-decoration: underline;
	cursor: pointer;
}

.youtube-icon {
  width: 20px;
  height: 20px;
  fill: #ff0000;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.video-modal__content {
  position: relative;
  width: 90vw;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1050;
}

/* 16:9 */
.video-modal__iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-modal__iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  z-index: 1051;
}

button#openVideo:hover {
	background-color: transparent;
}


#nextBtn {
	cursor: pointer;
}

.p-Grid.p-CardForm {
	color: white!important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card__content {
  padding: 20px;
}

.blog-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-card__title a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.blog-card__title a:hover {
  color: #0073e6;
}

.blog-card__excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 📱 Мобильная адаптация */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card__image img {
    height: 180px;
  }
}





details {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

details[open] summary {
  color: white;
}

details p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: lightgray;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}


#explore-button {
	width: 100%;
	max-width: 350px;
}

.buy-button {
	display:inline-block;
	padding:12px 24px;
	border-radius:8px;
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	transition:all .3s ease;
	font-size:16px;
	background: radial-gradient(at center center, #1D3C99CC 20%, #33A4C4 100%);
	min-width: 200px;
	max-width: 350px;
	text-align: center;
}

.buy-button:hover {
	color: white;
}

p.download {
	font-size: 14px;
    text-align: center;
}

div.download {
	text-align: center;
}

.copy-status {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: green;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-status.visible {
  opacity: 1;
}


.purchase-card {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.title {
  font-size: 18px;
  margin-bottom: 16px;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.item-info {
  flex: 1;
}

.item-name {
  font-weight: bold;
  margin-bottom: 4px;
}

.item-name span {
  font-weight: normal;
}

.item-price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.item-meta {
  font-size: 13px;
  color: #666;
}

.total {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.payment-success {
  margin: 12px 0;
  text-align: center;
  font-size: 14px;
}

.pin-code {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.pin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.pin code {
  font-size: 16px;
  letter-spacing: 2px;
	max-width: 100%;
	word-wrap: break-word;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}


div#page, main#content {
	background: transparent;
	color: white;
}

.woocommerce div.product .product_title {
	padding: 10px!important;
}

nav.woocommerce-breadcrumb {
	padding: 10px!important;
}

.tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      background: #f5f5f5;
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 15px;
      color: #000;
      white-space: nowrap;
    }

.card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #2C2A2A;
	color: #E8E8E8;
      border-radius: 8px;
      padding: 5px 10px;
      /* margin-bottom: 16px; */
    }

    .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      /* height: 48px; */
      border-radius: 50%;
      color: #E8E8E8;
      font-size: 20px;
      flex-shrink: 0;
    }

    .icon.blue { background: #1e88e5; }   /* для distance */
    .icon.green { background: #388e3c; }  /* для duration */

    .card-content {
		font-size: 12px;
      display: flex;
      flex-direction: column;
    }

    .card-content strong {
      font-weight: 600;
      color: #E8E8E8;
    }

    .card-content span {
      color: #E8E8E8;
      margin-top: 4px;
		font-size: 14px;
    }

.payback {
	color: cyan;
	text-align: center;
}



#primary {
	background: transparent;
}

h1.product_title.entry-title {
    color: white;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a, nav.woocommerce-breadcrumb {
	color: lightgray!important;
}

p.product.woocommerce.add_to_cart_inline {
	border: none!important;
}

span.woocommerce-Price-amount.amount {
    color: white;
}

.info-block {
      display: flex;
      flex-direction: column;
      gap: 5px;
      max-width: 400px;
	color: white;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .info-item i {
      font-size: 20px;
      color: white;
      min-width: 24px;
      margin-top: 3px;
    }

    .info-content strong {
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .info-content p {
      margin: 0;
      line-height: 1.4;
    }


.hfe-nav-menu-icon {
	fill: white;
}

@media (max-width: 1024px) {
	a.hfe-menu-item {
		color: black!important;
	}
}

#header-looks {
	position: absolute;	
	top: -240px;
    left: 250px;
}

@media (max-width:760px) {
	#header-looks {
		position: relative !important;
        top: auto !important;
        left: auto !important;
	}
}

#mobile-header {
	display: none;
}

#pc-header {
	display: flex;
}

@media (max-width:760px) {
	#mobile-header {
		display: flex;
	}

	#pc-header {
		display: none;
	}
}

/*
 * Styles for quest cards
 */

:root {
    --bg:#0d6efd;
    --card:#ffffff;
    --muted:#6b7280;
    --shadow: 0 12px 24px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
    --radius: 18px;
    --t: 420ms cubic-bezier(.2,.7,.2,1);
  }

.wrap{
    width:min(1100px, 94vw); display:grid; 
	grid-template-columns:1fr auto 1fr;
    align-items:center; gap:3vw;
  }


.wrap .side {
	order: 3;
	text-align: right;
}

 .wrap .side a {
    color: #1270fc; font-weight:700; font-size:clamp(18px,2.2vw,28px); opacity:.9; user-select:none;
  }
 .wrap .action{ text-align:left; order: 1; }
 .wrap .btn{
    appearance:none; border:0; border-radius:999px; padding:14px 22px; font-weight:700;
    background:#fff; color:#0d6efd; cursor:pointer; box-shadow:var(--shadow);
    transition: transform .15s ease, box-shadow .15s ease; font-size:clamp(14px,1.5vw,16px);
  }
 .wrap .btn:hover{ transform:translateY(-1px) }
 .wrap .btn:active{ transform:translateY(0); box-shadow:0 6px 14px rgba(0,0,0,.12) }

  /* Стек карточек */
 .wrap .stage{
    position:relative;
	width:min(480px, 80vw);
	/* height:clamp(440px, 58vh, 560px); */
    perspective:1200px;
	margin: auto;
	 order: 2;
  }
 .wrap .card {
	 padding: 0;
    position:absolute; inset:auto 0 0 0; margin:auto; width:100%;
    background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
    transform-origin:50% 85%; /* естественный поворот у низа */
    overflow:hidden; display:flex; flex-direction:column;
    transition: transform var(--t), opacity var(--t), filter var(--t);
	 gap: 8px!important;
	 
	 touch-action: pan-y; /* разрешаем вертикальную прокрутку, но даём возможность захватить горизонтальный свайп */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  cursor: grab;
  transition: transform .25s cubic-bezier(.2,.9,.3,1), opacity .2s;
  will-change: transform;
  }

.wrap .card.dragging {
  transition: none !important; /* во время перетаскивания без перехода */
  cursor: grabbing;
}

 .wrap .card__media{
    height: 30vh;
	 min-height: 300px;
	 background:#eef2ff center/cover no-repeat;
	 width: 100%;
  }
 .wrap .card__body{ padding:0px 22px 18px 22px; display:flex; flex-direction:column; gap:12px }
 .wrap .title{ color: black; font-size:clamp(20px, 2.4vw, 28px); line-height:1.15; font-weight:800; }
 .wrap .rating{ color:#f59e0b; font-weight:600; font-size:14px }
 .wrap .muted{ color:var(--muted) }
 .wrap .link{ color:#0f766e; font-weight:700; text-decoration:none }
 .wrap .link:hover{ text-decoration:underline }

  /* Позиции в стеке — управляются через data-pos (0=top,1=mid,2=back) */
 .wrap .card[data-pos="0"]{ z-index:30; transform:translateY(0) rotate(0deg) scale(1) }
 .wrap .card[data-pos="1"]{ z-index:20; transform:translateY(18px) rotate(-3deg) scale(.985); filter:saturate(.98) }
 .wrap .card[data-pos="2"]{ z-index:10; transform:translateY(36px) rotate(3deg) scale(.97); filter:saturate(.94) }

  /* входящая карточка снизу */
 .wrap .card.incoming{
    z-index:5; transform:translateY(70px) scale(.94) rotate(-2deg);
    opacity:0;
  }
 .wrap .card.incoming.ready{ opacity:1; transform:translateY(36px) scale(.97) rotate(3deg) }

  /* жест “ухода” верхней карты */
 .wrap .card.swipe-out{
    transform:translate(260px,-30px) rotate(8deg) scale(1.02);
    opacity:0;
  }

@media (max-width: 1024px) {
	.wrap {
		grid-template-columns: 1fr 1fr;
	}
	
	.wrap .stage {
		order: 1;	
	}
	
	.wrap .side {
		text-align: center;
		order: 2;
	}
	
	.wrap .action {
		text-align: center;
		margin-top: 20px;
		order: 2;
	}
}

  @media (max-width:760px){
    .wrap{ grid-template-columns:1fr; gap:18px; width: auto; }
   .wrap .side{ order:3; text-align:center }
   .wrap .action{ order:2; text-align:center }
   .wrap .stage{ order:1; height: 80vh; margin-bottom: 40px; }
	  .wrap .action { margin-top: 35px; }
	  .wrap .card__media { height: 35vh; }
  }




/*
 * Styles for our solution
 */

.solution .h1 {font-size:clamp(28px,3.2vw,40px); margin:0 0 8px; font-weight:800; color: white}
.solution .lead {margin:0 0 28px; color:var(--muted); font-size:clamp(16px,1.4vw,18px); color: white}

/* Двухколоночный блок */
.solution .content {
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:24px;
  align-items:stretch;           /* важно: обе колонки растягиваются по одной высоте */
}

.solution .visual video{
  width:100%;
  height:100%;
  object-fit:cover;   /* обрезаем, чтобы заполнить блок */
  display:block;
}

/* Левая картинка: занимает всю высоту ряда, обрезка по контейнеру */
.solution .visual{
  border-radius: 16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  height:100%;                   /* тянется под высоту правой колонки */
  background:#111;
}

.solution .visual img{
  width:100%;
  height:100%;                   /* на ту же высоту, что контейнер */
  object-fit:cover;              /* заполняем и обрезаем как на макете */
  display:block;
}

/* Плашки справа */
.solution .bullets {
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.solution .note {
  padding:22px 24px;
  border-radius:18px;
  color:#0b0b0b;
  box-shadow:var(--shadow);
}
.solution .note h3{
  margin:0 0 10px;
  font-size:clamp(16px,1.5vw,18px);
  font-weight:800;
  letter-spacing:.2px;
}
.solution .note p {
  margin:0;
  color:#1f2937;
  font-size:clamp(14px,1.35vw,16px);
}

/* Цвета как в макете */
.solution .note.lime{ background:#CDFB79; }
.solution .note.cyan{ background:#8FF0FF; }
.solution .note.purple{ background:#B8B0FF; }

/* Адаптив */
@media (max-width: 860px){
  .solution .content{ grid-template-columns: 1fr; }
}


/*
 * Custom styles
 */

button.orange {
	background: #F2952C;
	color: white;
	border: none;
}

button.quest {
	background: white;
	border: none;
	color: black;
}

.explore-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 8px 16px;
  background-color: #2C2A2A;
	color: white;
  font-family: system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
}

.explore-tag .icon {
  font-size: 24px;
}

.explore-tag .icon-img {
  width: 24px;
  height: 24px;
}

.sound-familiar-container {
    color: black!important;
}

.sound-familiar-container h2 {
	margin-bottom: 20px;
}

.sound-familiar-container .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.sound-familiar-container .item {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.sound-familiar-container p {
  margin-block-end: 0;
}

.number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background: #e4ddff;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.emoji-card {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  color: white;
  max-width: 700px;
  margin: 20px auto;
}

.emoji-img {
    width: 56px !important;
    border-radius: 8px !important;
    background-color: white;
    padding: 8px;
    margin-right: 16px !important;
}



.lang-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.lang-trigger {
  cursor: pointer;
  font-weight: bold;
  user-select: none;
	color: white;
}

.lang-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 6px 0 0 0;
  padding: 6px 0;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.lang-list li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.lang-list li a:hover,
.lang-list li a.active {
  background-color: #ff6b6b;
  color: #fff;
  border-radius: 6px;
}

.lang-dropdown.open .lang-list {
  display: block;
}

/* Мобилки */
@media (max-width: 768px) {
  .lang-list {
    right: auto;
    left: 0;
  }
}




.archive .page-title,
.blog .page-title,
.page-header {
  display: none;
}




/**
 *  Cookie
**/
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #0073aa;
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  color: #ddd;
  border: 1px solid #555;
}



.comments-area a,.page-content a{ /* text-decoration:underline */ }.alignright{float:right;margin-left:1rem}.alignleft{float:left;margin-right:1rem}.aligncenter{clear:both;display:block;margin-inline:auto}.alignwide{margin-inline:auto}.alignfull{margin-inline:calc(50% - 50vw);max-width:100vw}.alignfull,.alignfull img{width:100vw}.wp-caption{margin-block-end:1.25rem;max-width:100%}.wp-caption.alignleft{margin:5px 20px 20px 0}.wp-caption.alignright{margin:5px 0 20px 20px}.wp-caption img{display:block;margin-inline:auto}.wp-caption-text{margin:0}.gallery-caption{display:block;font-size:.8125rem;line-height:1.5;margin:0;padding:.75rem}.pagination{display:flex;justify-content:space-between;margin:20px auto}.sticky{display:block;position:relative}.bypostauthor{font-size:inherit}.hide{display:none!important}.post-password-form{margin:50px auto;max-width:500px}.post-password-form p{align-items:flex-end;display:flex;width:100%}.post-password-form [type=submit]{margin-inline-start:3px}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#eee;clip:auto!important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000}.post .entry-title a{text-decoration:none}.post .wp-post-image{max-height:500px;-o-object-fit:cover;object-fit:cover;width:100%}@media(max-width:991px){.post .wp-post-image{max-height:400px}}@media(max-width:575px){.post .wp-post-image{max-height:300px}}#comments .comment-list{font-size:.9em;list-style:none;margin:0;padding:0}#comments .comment,#comments .pingback{position:relative}#comments .comment .comment-body,#comments .pingback .comment-body{border-block-end:1px solid #ccc;display:flex;flex-direction:column;padding-block-end:30px;padding-block-start:30px;padding-inline-end:0;padding-inline-start:60px}#comments .comment .avatar,#comments .pingback .avatar{border-radius:50%;left:0;margin-inline-end:10px;position:absolute}body.rtl #comments .comment .avatar,body.rtl #comments .pingback .avatar,html[dir=rtl] #comments .comment .avatar,html[dir=rtl] #comments .pingback .avatar{left:auto;right:0}#comments .comment-meta{display:flex;justify-content:space-between;margin-block-end:.9rem}#comments .comment-metadata,#comments .reply{font-size:11px;line-height:1}#comments .children{list-style:none;margin:0;padding-inline-start:30px;position:relative}#comments .children li:last-child{padding-block-end:0}#comments ol.comment-list .children:before{content:"↪";display:inline-block;font-size:1em;font-weight:400;left:0;line-height:100%;position:absolute;top:45px;width:auto}body.rtl #comments ol.comment-list .children:before,html[dir=rtl] #comments ol.comment-list .children:before{content:"↩";left:auto;right:0}@media(min-width:768px){#comments .comment-author,#comments .comment-metadata{line-height:1}}@media(max-width:767px){#comments .comment .comment-body{padding:30px 0}#comments .children{padding-inline-start:20px}#comments .comment .avatar{float:left;position:inherit}body.rtl #comments .comment .avatar,html[dir=rtl] #comments .comment .avatar{float:right}}.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{margin-inline-end:auto;margin-inline-start:auto;width:100%}@media(max-width:575px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{padding-inline-end:10px;padding-inline-start:10px}}@media(min-width:576px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:500px}.site-footer.footer-full-width .footer-inner,.site-header.header-full-width .header-inner{max-width:100%}}@media(min-width:768px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:600px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}@media(min-width:992px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:800px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}@media(min-width:1200px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:1140px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}.site-header+.elementor{min-height:calc(100vh - 320px)}
