:root {
  --ink: #2f3334;
  --muted: #656769;
  --paper: #f2f2f4;
  --white: #ffffff;
  --yellow: #ffe100;
  --gold: #f9b222;
  --orange: #f5a300;
  --red: #c9463f;
  --footer: #2c3030;
  --section-max: 3580px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 76px;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(47, 51, 52, 0.08);
  box-shadow: 0 16px 38px rgba(44, 50, 53, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e6172d;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

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

.nav-container {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-block;
  padding: 8px 16px;
  color: #34383a;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.site-nav a.active {
  color: #fff;
  background: #2a9d8f;
}

.site-nav a.active:hover {
  background: #238b80;
}

.lang-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-toggle svg {
  width: 18px;
  height: 18px;
  color: #34383a;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 7px auto;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  line-height: 0;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero::after {
  content: none;
}

.hero-shape {
  display: none;
  position: absolute;
  pointer-events: none;
}

.shape-a {
  left: -8.4%;
  top: 31.8%;
  width: 30%;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
}

.shape-b {
  left: 13.5%;
  top: 5.2%;
  width: 9.8%;
  aspect-ratio: 1;
  background: #fff100;
  border-radius: 50%;
}

.shape-c {
  left: 25.1%;
  top: -15.1%;
  width: 44.8%;
  aspect-ratio: 1;
  background: #f7ad20;
  border-radius: 50%;
}

.shape-d {
  right: -12.2%;
  top: -25%;
  width: 54%;
  aspect-ratio: 1;
  background: #ffdd37;
  border-radius: 50%;
}

.shape-e {
  right: -7.5%;
  top: 31.6%;
  width: 32.4%;
  aspect-ratio: 1;
  background: #eceff5;
  border-radius: 50%;
}

.shape-f {
  right: 8.7%;
  bottom: -12.6%;
  width: 38.5%;
  aspect-ratio: 1;
  background: #ffdd35;
  border-radius: 50%;
}

.hero-search {
  position: absolute;
  left: 50%;
  top: 16%;
  z-index: 3;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 124px;
  align-items: center;
  width: min(34.9vw, 1434px);
  min-width: 520px;
  height: 7.6vh;
  min-height: 58px;
  max-height: 106px;
  padding: 0 0 0 28px;
  background: var(--white);
  border: 7px solid #282d31;
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 10px 0 0;
  color: var(--red);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  caret-color: var(--red);
}

.hero-search input::placeholder {
  color: var(--red);
  opacity: 1;
}

.hero-search input::-webkit-search-cancel-button {
  display: none;
}

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

.search-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: url('/assets/img/index2/searchicon.png') center / contain no-repeat;
}

.gift-button {
  position: absolute;
  right: -118px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  color: #ffe24b;
  background: #282d31;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.gift-button span {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin: 0;
  color: transparent;
  background: url('/assets/img/index2/gifticon.png') center / contain no-repeat;
}

.gift-button:hover {
  background: #1f2327;
  /* transform: translateY(-50%) scale(1.05); */
}

.hero-stage {
  position: absolute;
  left: 50%;
  bottom: 21.8%;
  z-index: 2;
  width: min(43vw, 1780px);
  min-width: 610px;
  transform: translateX(-50%);
}

.hero-stage img {
  width: 100%;
}

.section-inner {
  width: 100%;
  margin: 0 auto;
}

.about {
  position: relative;
  overflow: hidden;
  min-height: clamp(760px, 38vw, 1000px);
  padding: clamp(72px, 4.55vw, 188px) 0 0;
  background: #f3f3f5;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 39px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.align-left {
  text-align: left;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: clamp(52px, 3.92vw, 162px);
}

.feature-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(82px, 2.8vw, 116px);
  overflow: hidden;
  padding: clamp(16px, 0.53vw, 22px) clamp(18px, 0.68vw, 28px)
    clamp(16px, 0.48vw, 20px) clamp(22px, 1.45vw, 60px);
  color: #fff;
  border: 0;
  border-radius: 8px;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card::after {
  position: absolute;
  inset: -42% -7% auto auto;
  z-index: -1;
  width: 210px;
  height: 210px;
  content: '';
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.feature-card h2 {
  margin: 0;
  font-size: clamp(28px, 1.04vw, 43px);
  font-weight: 900;
  line-height: 1;
}

.feature-card p {
  margin: clamp(10px, 0.44vw, 18px) 0 0;
  font-size: clamp(10px, 0.31vw, 13px);
  font-weight: 800;
  line-height: 1.1;
}

.feature-icon {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: clamp(58px, 1.98vw, 82px);
  height: clamp(58px, 1.98vw, 82px);
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.feature-card:hover {
  box-shadow: 0 18px 34px rgba(47, 51, 52, 0.12);
  transform: translateY(-6px);
}

.card-curated {
  background: linear-gradient(120deg, #c91f58 0 78%, #ee82a3 78%);
}

.card-fresh {
  background: linear-gradient(120deg, #3275b7 0 78%, #52c7ee 78%);
}

.card-discover {
  background: linear-gradient(120deg, #ed4f10 0 78%, #f6a300 78%);
}

.card-thoughtful {
  background: linear-gradient(120deg, #8bc717 0 78%, #e8dd00 78%);
}

.page-in2 .feature-card {
  min-height: 83px;
  padding: 18px 26px 16px 24px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-in2 .feature-row {
  grid-template-columns: repeat(4, minmax(0, 400px));
  justify-content: center;
  gap: 13px;
  width: var(--in2-content-width);
  max-width: 1639px;
  margin-inline: auto;
}

.page-in2 .feature-card::after {
  display: none;
}

.page-in2 .feature-card h2 {
  font-size: clamp(24px, 1.44vw, 32px);
}

.page-in2 .feature-card p {
  font-size: clamp(8px, 0.49vw, 11px);
}

.page-in2 .feature-icon {
  display: block;
  width: clamp(40px, 3.2vw, 58px);
  height: clamp(40px, 3.2vw, 58px);
}

.page-in2 .card-curated {
  background-image: url('/assets/img/bc1.png');
}

.page-in2 .card-fresh {
  background-image: url('/assets/img/bc2.png');
}

.page-in2 .card-discover {
  background-image: url('/assets/img/bc3.png');
}

.page-in2 .card-thoughtful {
  background-image: url('/assets/img/bc4.png');
}

.icon-curated {
  background-image: url('/assets/img/site/icon-curated.png');
}

.icon-fresh {
  background-image: url('/assets/img/site/icon-fresh.png');
}

.icon-discover {
  background-image: url('/assets/img/site/icon-discover.png');
}

.icon-thoughtful {
  background-image: url('/assets/img/site/icon-thoughtful.png');
}

.about-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 30.5% 1fr;
  gap: clamp(64px, 4.16vw, 172px);
  align-items: center;
  margin-top: 50px;
}

.about-text h2 {
  margin: 0;
  font-family: MHeiGB;
  font-weight: normal;
  font-size: 32px;
  color: #2f3234;
  line-height: 1.18;
  text-transform: uppercase;
}

.about-text p {
  font-family: AlimamaFangYuanTiVF;
  font-weight: normal;
  font-size: 19px;
  color: #231815;
  line-height: 29px;
  word-break: break-word;
}

.about-image {
  margin: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.quote-mark {
  color: #303436;
  /* font-family: Georgia, serif; */
  font-size: 70px;
  font-weight: 700;
  line-height: 40px;
}
.about-text-mark {
  color: #303436;
  /* font-family: Georgia, serif; */
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
.quote-start {
  left: 0;
  top: -116px;
}

.quote-end {
  left: 29%;
  bottom: -76px;
}

.stores {
  position: relative;
  overflow: hidden;

  padding: 80px 0 0;
}

.stores::before {
  /* position: absolute;
  inset: 0 0 auto;
  height: 790px; */
}

.stores .section-inner {
  position: relative;
  z-index: 1;
  background-image: url('/assets/img/index2/session2.png');
  background-size: cover;
  padding: 30px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.04vw, 43px) clamp(16px, 0.87vw, 36px);
  margin-top: clamp(40px, 2.8vw, 116px);
}

.media-tile {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.media-tile:hover > img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.store-tile {
  aspect-ratio: 1.97;
}

.tile-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: clamp(28px, 18%, 46px);
  padding: 7px 12px;
  color: var(--white, #fff);
  background: rgba(64, 184, 201, 0.78);
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.tile-caption strong {
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 700;
}

.tile-caption em {
  font-style: normal;
  font-size: clamp(8px, 0.55vw, 10px);
  opacity: 0.85;
  font-weight: 400;
}

.tile-arrow {
  position: absolute;
  right: 16px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #6a6f72;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.tile-arrow:hover {
  color: #fff;
  background: #35b3c4;
  transform: translate(3px, -3px);
}

.tile-arrow:hover img {
  filter: brightness(0) invert(1);
}

.page-in2 .media-tile.store-tile .tile-arrow:hover {
  transform: none;
}

.news {
  /* min-height: clamp(720px, 53.57vw, 2215px); */
  padding: 0 0 clamp(80px, 7.84vw, 324px);
  background: #f2f2f4;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.04vw, 43px) clamp(18px, 1.14vw, 47px);
  margin-top: 0;
}

.news-heading {
  margin-top: 123px;
}

.news-tile {
  aspect-ratio: 1.75;
}

.tile-news-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 12px 14px;
  color: var(--white, #fff);
  background: rgba(223, 48, 120, 0.78);
  pointer-events: none;
}

.tile-news-caption time {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 900;
  line-height: 1;
}

.tile-news-caption strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(0.55rem, 0.7vw, 0.72rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px 20px;
  text-align: center;
}

.empty-state svg {
  margin-bottom: 8px;
  opacity: 0.5;
}

.empty-state p {
  margin: 0;
  color: #666;
  font-size: 1rem;
  font-weight: 600;
}

.empty-state span {
  color: #999;
  font-size: 0.85rem;
}

.more-button {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(42px, 2.42vw, 100px) auto 0;
  padding: 0;
  color: #2f3334;
  background: transparent;
  border: 0;
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.more-button span:last-child {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #4f5253;
  border-radius: 50%;
  font-size: 14px;
}

.footer {
  padding: clamp(54px, 2.85vw, 118px) 0 clamp(54px, 2.8vw, 116px);
  color: rgba(255, 255, 255, 0.9);
  background: var(--footer);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(290px, 0.7fr) minmax(
      420px,
      0.9fr
    );
  gap: 88px;
  width: min(86.7vw, var(--section-max));
  margin: 0 auto;
}

.footer-brand strong {
  display: block;
  margin-top: 34px;
  color: #fff;
  font-size: clamp(2.75rem, 3.8vw, 4.94rem);
  font-weight: 900;
  line-height: 1;
}

.footer p {
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: clamp(0.5rem, 0.9vw, 1.19rem);
  line-height: 2.04;
}

.footer-brand p {
  max-width: 1460px;
  margin-top: 62px;
}

.footer-links {
  display: grid;
  gap: 58px;
}

.footer h2,
.qr-grid figcaption {
  margin: 0 0 30px;
  color: #fff;
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: clamp(0.63rem, 1vw, 1.38rem);
  font-weight: 400;
  line-height: 1.15;
}

.footer-links p {
  margin: 0;
}

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

.qr-grid figure {
  margin: 0;
  text-align: center;
}

.qr-grid img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.footer.lanhu-footer {
  width: 100%;
  min-height: clamp(238px, 18.5vw, 766px);
  padding: clamp(26px, 1.8vw, 52px) 0 clamp(26px, 1.8vw, 52px);
  color: rgba(255, 255, 255, 0.92);
  background: #2f4058;
}

.lanhu-footer-inner {
  --lanhu-footer-title-row: clamp(18px, 1.2vw, 50px);
  --lanhu-footer-title-gap: clamp(8px, 0.6vw, 18px);
  --lanhu-footer-qr-size: clamp(42px, 3vw, 124px);
  --lanhu-footer-row-gap: clamp(20px, 1.5vw, 48px);
  --lanhu-footer-main-gap: clamp(24px, 2.5vw, 44px);
  --lanhu-footer-qr-column-gap: clamp(24px, 3.2vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content max-content;
  align-items: end;
  column-gap: var(--lanhu-footer-main-gap);
  width: min(87.8vw, 3588px);
  min-height: clamp(168px, 9.5vw, 393px);
  margin: 0 auto;
}

.lanhu-footer-brand {
  align-self: end;
}

.lanhu-footer-brand strong {
  display: block;
  margin: 0 0 clamp(12px, 1vw, 24px);
  color: #eef4ff;
  font-size: clamp(2rem, 2.5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
}

.lanhu-footer-brand p,
.lanhu-footer-contact p {
  margin: 0;
  color: rgba(238, 244, 255, 0.36);
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: clamp(0.75rem, 0.85vw, 0.95rem);
  line-height: 1.5;
}

.lanhu-footer-brand p {
  max-width: 900px;
  margin-top: 24px;
}

.lanhu-footer-contact {
  align-self: end;
  display: grid;
  grid-template-rows: repeat(
    2,
    calc(
      var(--lanhu-footer-title-row) + var(--lanhu-footer-title-gap) +
        var(--lanhu-footer-qr-size)
    )
  );
  gap: var(--lanhu-footer-row-gap);
}

.lanhu-footer-contact section {
  display: grid;
  grid-template-rows: var(--lanhu-footer-title-row) auto;
  align-content: start;
  row-gap: var(--lanhu-footer-title-gap);
}

.lanhu-footer-contact h2,
.lanhu-footer-qr figcaption {
  margin: 0;
  color: #eef4ff;
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: clamp(0.75rem, 0.95vw, 1.19rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.lanhu-footer-qr {
  align-self: end;
  justify-self: end;
  display: grid;
  width: max-content;
  grid-template-columns: repeat(2, max-content);
  grid-auto-rows: calc(
    var(--lanhu-footer-title-row) + var(--lanhu-footer-title-gap) +
      var(--lanhu-footer-qr-size)
  );
  gap: var(--lanhu-footer-row-gap) var(--lanhu-footer-qr-column-gap);
}

.lanhu-footer-qr figure {
  display: grid;
  grid-template-rows: var(--lanhu-footer-title-row) var(--lanhu-footer-qr-size);
  justify-items: center;
  align-content: start;
  row-gap: var(--lanhu-footer-title-gap);
  margin: 0;
  text-align: center;
}

.lanhu-footer-qr figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: var(--lanhu-footer-title-row);
  margin: 0;
  font-size: clamp(0.69rem, 0.85vw, 1rem);
  white-space: nowrap;
}

.lanhu-footer-qr img {
  width: var(--lanhu-footer-qr-size);
  height: var(--lanhu-footer-qr-size);
  margin: 0 auto;
  opacity: 0.42;
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #2f3334;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 51, 52, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(31, 35, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-3px);
}

.lightbox {
  width: min(1100px, calc(100% - 40px));
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.74);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.lightbox p {
  margin: 18px 0 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: -18px;
  top: -18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #2f3334;
  background: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  z-index: 30;
  max-width: calc(100% - 40px);
  padding: 14px 20px;
  color: #fff;
  background: rgba(47, 51, 52, 0.92);
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1500px) {
  .footer-inner {
    width: min(calc(100% - 72px), 1280px);
  }

  .lanhu-footer-inner {
    width: min(calc(100% - 72px), 1280px);
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    column-gap: min(3.2vw, 60px);
  }

  .hero-search {
    width: 590px;
    grid-template-columns: 78px minmax(0, 1fr) 80px;
    height: 64px;
    border-width: 4px;
  }

  .hero-search input {
    font-size: 26px;
  }

  .search-icon {
    width: 42px;
    height: 42px;
  }

  .gift-button {
    right: -78px;
    width: 72px;
    height: 72px;
  }

  .gift-button span {
    width: 27px;
    height: 27px;
  }

  .feature-card {
    padding-left: 28px;
  }

  .feature-card h2 {
    font-size: 30px;
  }

  .feature-card p {
    font-size: 10px;
  }

  .about-copy {
    gap: 72px;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 0.75fr 0.9fr;
    gap: 52px;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 66px;
  }

  .site-header {
    height: 66px;
    padding: 0 22px;
  }

  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 66px;
    display: grid;
    gap: 0;
    padding: 14px 22px 22px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(47, 51, 52, 0.08);
    transform: translateY(-130%);
    transition: transform 0.2s ease;
  }

  .site-nav a {
    padding: 13px 16px;
    border-radius: 8px;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .hero {
    min-height: 0;
  }

  .hero-search {
    top: 22%;
    width: calc(100% - 120px);
    min-width: 0;
    max-width: 520px;
    grid-template-columns: 58px minmax(0, 1fr) 54px;
    padding-left: 18px;
  }

  .hero-search input {
    font-size: 20px;
  }

  .gift-button {
    right: -54px;
    width: 58px;
    height: 58px;
  }

  .search-icon {
    width: 34px;
    height: 34px;
  }

  .hero-stage {
    bottom: 14%;
    width: min(92vw, 620px);
    min-width: 0;
  }

  .footer-inner {
    width: min(calc(100% - 38px), 720px);
  }

  .section-title {
    font-size: 28px;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
  }

  .feature-card {
    min-height: 98px;
    padding: 18px 16px 16px 20px;
  }

  .page-in2 .feature-row {
    grid-template-columns: repeat(2, minmax(0, 400px));
    gap: 13px;
    width: var(--in2-content-width);
    max-width: 813px;
  }

  .page-in2 .feature-card {
    min-height: 83px;
    padding: 18px 26px 16px 24px;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 0px;
    margin-top: 74px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    margin-top: 24px;
    font-size: 16px;
  }

  .quote-mark {
    /* display: none; */
  }

  .store-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .news-tile.is-extra {
    display: none;
  }

  .news.is-expanded .news-tile.is-extra {
    display: block;
  }

  .more-button {
    margin-top: 44px;
  }

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

  .footer.lanhu-footer {
    min-height: 0;
    padding: 64px 0 72px;
  }

  .lanhu-footer-inner {
    --lanhu-footer-title-row: 38px;
    --lanhu-footer-title-gap: 14px;
    --lanhu-footer-qr-size: 78px;
    --lanhu-footer-row-gap: 32px;
    --lanhu-footer-qr-column-gap: 24px;
    width: min(calc(100% - 38px), 720px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .lanhu-footer-brand,
  .lanhu-footer-contact,
  .lanhu-footer-qr {
    align-self: auto;
  }

  .lanhu-footer-brand strong {
    margin-bottom: 28px;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    line-height: 0.9;
  }

  .lanhu-footer-brand p,
  .lanhu-footer-contact p {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    line-height: 1.5;
  }

  .lanhu-footer-contact {
    grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
    grid-template-rows: none;
    gap: 0 22px;
  }

  .lanhu-footer-contact section {
    min-width: 0;
  }

  .lanhu-footer-contact h2,
  .lanhu-footer-qr figcaption {
    margin-bottom: 0;
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  }

  .lanhu-footer-qr {
    max-width: 420px;
    width: 100%;
    justify-self: stretch;
    grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
    gap: var(--lanhu-footer-row-gap) var(--lanhu-footer-qr-column-gap);
  }

  .lanhu-footer-qr figure {
    grid-template-rows: var(--lanhu-footer-title-row) var(
        --lanhu-footer-qr-size
      );
    justify-items: start;
    row-gap: var(--lanhu-footer-title-gap);
    text-align: left;
  }

  .lanhu-footer-qr figcaption {
    justify-content: flex-start;
    min-height: var(--lanhu-footer-title-row);
    margin-bottom: 0;
    white-space: nowrap;
    text-align: left;
  }

  .lanhu-footer-qr img {
    width: var(--lanhu-footer-qr-size);
    height: var(--lanhu-footer-qr-size);
    margin: 0;
  }

  .footer {
    padding: 72px 0;
  }

  .footer-brand strong {
    margin-top: 0;
    font-size: clamp(1.8rem, 2.5vw, 3.31rem);
  }

  .footer-brand p {
    margin-top: 32px;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero-search {
    width: calc(100% - 112px);
    height: 54px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    border-width: 3px;
  }

  .hero-search input {
    font-size: 14px;
  }

  .search-icon {
    width: 27px;
    height: 27px;
  }

  .gift-button {
    right: -45px;
    width: 49px;
    height: 49px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .page-in2 .feature-row {
    grid-template-columns: minmax(0, 400px);
    gap: 13px;
    width: var(--in2-content-width);
    max-width: 400px;
  }

  .feature-card h2 {
    font-size: 28px;
  }

  .page-in2 .feature-card h2 {
    font-size: 28px;
  }

  .feature-card p {
    font-size: 10px;
  }

  .page-in2 .feature-card p {
    font-size: 10px;
  }

  .about-text h2 {
    font-size: 23px;
  }

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

  .footer.lanhu-footer {
    padding: 54px 0 62px;
  }

  .lanhu-footer-inner {
    --lanhu-footer-title-row: 34px;
    --lanhu-footer-title-gap: 10px;
    --lanhu-footer-qr-size: 68px;
    --lanhu-footer-row-gap: 28px;
    --lanhu-footer-qr-column-gap: 16px;
    width: min(calc(100% - 32px), 420px);
    gap: 38px;
  }

  .lanhu-footer-brand strong {
    font-size: clamp(1.75rem, 2.5vw, 3.19rem);
  }

  .lanhu-footer-contact {
    gap: 0 14px;
  }

  .lanhu-footer-contact h2 {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    line-height: 1.15;
  }

  .lanhu-footer-contact p {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    line-height: 1.8;
  }

  .lanhu-footer-qr {
    grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
    width: 100%;
    max-width: none;
    gap: var(--lanhu-footer-row-gap) 14px;
  }

  .lanhu-footer-qr figcaption {
    min-height: var(--lanhu-footer-title-row);
    font-size: clamp(0.69rem, 2vw, 0.88rem);
    line-height: 1.35;
  }

  .lanhu-footer-qr figure {
    grid-template-rows: var(--lanhu-footer-title-row) var(
        --lanhu-footer-qr-size
      );
    row-gap: var(--lanhu-footer-title-gap);
  }

  .lanhu-footer-qr img {
    width: var(--lanhu-footer-qr-size);
    height: var(--lanhu-footer-qr-size);
  }
}

.page-in2 .hero {
  height: auto;
  min-height: 0;
  background: #000;
}

.page-in2 {
  --in2-gutter: clamp(16px, 6.61vw, 127px);
  --in2-content-width: calc(100% - (var(--in2-gutter) * 2));
}

.page-in2 .hero-search {
  top: 25.6%;
  width: clamp(304px, 34.9vw, 1434px);
  min-width: 0;
  height: clamp(42px, 4.9vw, 106px);
  min-height: 0;
  max-height: none;
  grid-template-columns: clamp(38px, 4.1vw, 120px) minmax(0, 1fr);
  padding-left: clamp(10px, 1.45vw, 28px);
  padding-right: clamp(10px, 1.2vw, 24px);
  border-width: clamp(3px, 0.34vw, 7px);
}

.page-in2 .hero-search input {
  font-size: clamp(16px, 1.7vw, 42px);
}

.page-in2 .search-icon {
  width: clamp(26px, 3.1vw, 60px);
  height: clamp(26px, 3.1vw, 60px);
}

.page-in2 .gift-button {
  right: clamp(-118px, -5.9vw, -62px);
  width: clamp(43px, 4.5vw, 95px);
  height: clamp(43px, 4.5vw, 95px);
}

.page-in2 .gift-button span {
  width: clamp(18px, 1.9vw, 42px);
  height: clamp(18px, 1.9vw, 42px);
}

.page-in2 .hero-stage {
  bottom: 11.5%;
  width: clamp(410px, 48vw, 1780px);
  min-width: 0;
}

.page-in2 .about-copy {
  width: var(--in2-content-width);
  max-width: 1639px;
  margin-inline: auto;
}

.page-in2 .stores .section-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.page-in2 .store-grid {
  grid-template-columns: repeat(3, minmax(0, 540px));
  justify-content: center;
  gap: 8px;
  width: var(--in2-content-width);
  max-width: 1636px;
  margin-inline: auto;
}

.page-in2 .stores .section-title {
  width: var(--in2-content-width);
  max-width: 1636px;
  margin-inline: auto;
}

.page-in2 .store-tile > img {
  max-width: 540px;
}

.page-in2 .media-tile.store-tile .tile-arrow {
  top: clamp(5px, 2.6%, 14px);
  right: clamp(6px, 3%, 16px);
  width: clamp(16px, 6.6%, 30px);
  height: auto;
  aspect-ratio: 1;
}

.page-in2 .media-tile.store-tile .tile-arrow img {
  width: 40%;
  max-width: 12px;
  height: auto;
  object-fit: contain;
}

.page-in2 .news .section-inner {
  box-sizing: border-box;
  width: var(--in2-content-width);
  max-width: 1639px;
  margin-top: clamp(76px, 8.85vw, 170px);
  margin-inline: auto;
}

.page-in2 .news-grid {
  grid-template-columns: repeat(3, minmax(0, 541px));
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-inline: auto;
}

.page-in2 .news-tile {
  width: 100%;
  max-width: 541px;
  aspect-ratio: 541 / 339;
  cursor: pointer;
}

.page-in2 .news-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-in2 .news-tile.is-extra {
  display: none;
}

.page-in2 .news.is-expanded .news-tile.is-extra {
  display: block;
}

.page-in2 .news .more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 12px;
  margin: clamp(16px, 1.77vw, 34px) auto 0;
  color: #252a32;
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.page-in2 .news .more-button span:last-child {
  width: clamp(18px, 1.3vw, 25px);
  height: clamp(18px, 1.3vw, 25px);
  border: 1px solid currentColor;
}

.page-in2 .news .more-button span:last-child img {
  width: clamp(8px, 0.52vw, 10px);
  height: clamp(8px, 0.52vw, 10px);
}

.page-in2 .news-tile > img {
  display: block;
  width: 100%;
  height: 100%;
}

.page-in2 .news-tile:hover > img {
  filter: saturate(1.06);
  transform: scale(1.06);
}

.page-in2 .news-tile:hover::after {
  opacity: 1;
}

@media (max-width: 980px) {
  .page-in2 {
    --in2-gutter: clamp(18px, 6vw, 44px);
  }

  .page-in2 .hero {
    height: auto;
  }

  .page-in2 .hero-search {
    top: 24%;
    width: min(calc(100% - 104px), 460px);
    height: clamp(46px, 13.8vw, 62px);
    grid-template-columns: clamp(32px, 8.8vw, 44px) minmax(0, 1fr);
    padding-left: clamp(10px, 3.2vw, 18px);
    padding-right: clamp(10px, 3.2vw, 18px);
  }

  .page-in2 .hero-search input {
    font-size: clamp(14px, 4.1vw, 20px);
  }

  .page-in2 .search-icon {
    width: clamp(26px, 7.2vw, 34px);
    height: clamp(26px, 7.2vw, 34px);
  }

  .page-in2 .gift-button {
    position: absolute;
    right: calc(clamp(42px, 12vw, 54px) * -1 - 8px);
    top: 50%;
    width: clamp(42px, 12vw, 54px);
    height: clamp(42px, 12vw, 54px);
    margin-right: 0;
    transform: translateY(-50%);
  }

  .page-in2 .gift-button span {
    width: clamp(18px, 5.2vw, 25px);
    height: clamp(18px, 5.2vw, 25px);
  }

  .page-in2 .hero-stage {
    bottom: 13%;
    width: min(94vw, 620px);
  }

  .page-in2 .feature-row {
    grid-template-columns: repeat(2, minmax(0, 400px));
    max-width: 813px;
  }

  .page-in2 .news .section-inner {
    margin-top: clamp(56px, 12vw, 100px);
  }

  .page-in2 .store-grid,
  .page-in2 .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  .page-in2 {
    --in2-gutter: clamp(34px, 10vw, 42px);
  }

  .page-in2 .hero {
    height: auto;
  }

  .page-in2 .hero-search {
    top: 25%;
    width: min(calc(100% - 118px), 286px);
    height: 48px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding-left: 12px;
    padding-right: 12px;
    border-width: 3px;
  }

  .page-in2 .hero-search input {
    font-size: 12px;
    letter-spacing: 0;
  }

  .page-in2 .gift-button {
    right: -51px;
    width: 43px;
    height: 43px;
  }

  .page-in2 .gift-button:hover {
    /* transform: translateY(-50%); */
  }

  .page-in2 .gift-button span {
    width: 19px;
    height: 19px;
  }

  .page-in2 .search-icon {
    width: 26px;
    height: 26px;
  }

  .page-in2 .hero-stage {
    bottom: 14%;
    width: min(88vw, 370px);
  }

  .page-in2 .feature-card {
    padding-right: 22px;
  }

  .page-in2 .feature-icon {
    width: 34px;
    height: 34px;
  }

  .page-in2 .feature-row {
    grid-template-columns: minmax(0, 400px);
    max-width: 400px;
  }

  .page-in2 .news .section-inner {
    margin-top: clamp(42px, 13vw, 72px);
  }
}
