:root {
  --ink: #172017;
  --green: #87964c;
  --deep: #324128;
  --pink: #e94676;
  --blush: #f7c9d4;
  --cream: #fffaf2;
  --warm: #f2eadc;
  --gold: #d5b55b;
  --line: rgba(23, 32, 23, 0.13);
  --shadow: 0 28px 80px rgba(49, 50, 31, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    "Avenir Next", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
}
.shell {
  width: min(1320px, calc(100% - 72px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 200;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 9px;
}
.skip:focus {
  top: 16px;
}
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.announcement {
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--deep);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  height: 82px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font:
    500 22px Georgia,
    serif;
  letter-spacing: 0.13em;
}
.brand-copy small {
  margin-top: 7px;
  font:
    12px Georgia,
    "Songti SC",
    serif;
  letter-spacing: 0.22em;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 42px);
  font-size: 13px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
  padding: 10px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--pink);
  transition: 0.25s;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang-switch button {
  min-width: 39px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--deep);
  color: #fff;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}
.menu-button i {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}
.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, #fff8 0 9%, transparent 10%),
    linear-gradient(125deg, #f6d7dd 0, #fff1df 46%, #dfe6a8 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding-block: 60px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1,
.page-hero h1,
.section-title,
.editorial h2,
.feature-card h2 {
  margin: 0;
  font:
    400 clamp(50px, 6vw, 88px) / 1.02 Georgia,
    "Songti SC",
    serif;
  letter-spacing: -0.055em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 32px;
  font-size: clamp(16px, 1.4vw, 20px);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 12px 20px 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.button.primary {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
}
.button.soft {
  border-color: transparent;
  background: #fff;
}
.button[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}
.hero-art {
  position: relative;
  min-height: 590px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-photo.main {
  right: 0;
  top: 0;
  width: 64%;
  height: 100%;
  background: #dde3c8;
}
.hero-photo.main img {
  height: 142%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-13%);
}
.hero-photo.secondary {
  left: 0;
  bottom: 36px;
  width: 44%;
  height: 54%;
  border: 10px solid var(--cream);
  background: #a77459;
}
.hero-photo.secondary img {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero-seal {
  position: absolute;
  left: 27%;
  top: 18px;
  width: 112px;
  height: 112px;
  padding: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 35px #45512644;
  transform: rotate(-7deg);
}
.hero-note {
  position: absolute;
  right: -8px;
  bottom: 32px;
  max-width: 225px;
  padding: 18px 21px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 40px #4b463422;
  font:
    16px/1.35 Georgia,
    "Songti SC",
    serif;
}
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 17px 0;
  animation: ticker 28s linear infinite;
  font:
    17px Georgia,
    serif;
  letter-spacing: 0.06em;
}
.ticker-track span::after {
  content: "✿";
  margin-left: 38px;
  color: var(--pink);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 110px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}
.section-title {
  font-size: clamp(40px, 4.6vw, 67px);
}
.section-head > p {
  margin: 0;
  color: #5f655b;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 18px;
}
.collection-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
}
.collection-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.collection-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.collection-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.collection-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}
.collection-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.collection-card:nth-child(2) img {
  object-position: center 28%;
}
.collection-card:nth-child(3) img {
  object-position: center 48%;
}
.collection-card:nth-child(4) img {
  object-position: center 54%;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #fffdf0 0,
    #fffef0c9 22%,
    transparent 53%,
    #142014c9 100%
  );
}
.collection-card div {
  position: absolute;
  z-index: 2;
  inset: 25px;
  display: flex;
  flex-direction: column;
}
.collection-card small {
  font-weight: 800;
  letter-spacing: 0.15em;
}
.collection-card h3 {
  margin: 12px 0 2px;
  font:
    400 31px/1.1 Georgia,
    "Songti SC",
    serif;
}
.collection-card p {
  margin: 0;
}
.collection-card .text-link {
  margin-top: auto;
  color: #fff;
}
.collection-card:hover img {
  transform: scale(1.04);
}
.text-link {
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.brand-story {
  background: var(--warm);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.story-image,
.story-panel {
  min-height: 680px;
  border-radius: 30px;
  overflow: hidden;
}
.story-image {
  position: relative;
}
.story-image > img {
  height: 100%;
  object-fit: cover;
  object-position: center 83%;
}
.story-image .seal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 126px;
  height: 126px;
  padding: 12px;
  border-radius: 50%;
  background: var(--green);
  object-fit: contain;
  object-position: center;
}
.story-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: var(--deep);
  color: #fff;
}
.story-panel .section-title {
  color: #f7dda0;
}
.story-panel > p:not(.eyebrow) {
  color: #ffffffe0;
}
.story-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.story-path span {
  padding: 8px 12px;
  border: 1px solid #fff4;
  border-radius: 999px;
  font-size: 12px;
}
.route-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  overflow: hidden;
  padding: 54px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 18%, #ffffffc9 0 7%, transparent 8%),
    linear-gradient(145deg, #dfe5a6, #9eaa61 58%, #66733f);
  color: #fff;
  text-align: center;
}
.route-visual span {
  position: relative;
  z-index: 2;
  font:
    400 clamp(38px, 5vw, 70px) / 1 Georgia,
    "Songti SC",
    serif;
}
.route-visual i {
  position: relative;
  z-index: 2;
  color: #fffbd6;
  font:
    34px Georgia,
    serif;
  letter-spacing: 0.25em;
}
.route-visual img {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 110px;
  height: 110px;
  padding: 10px;
  border-radius: 50%;
  background: #9a914a;
  object-fit: contain;
}
.source-note {
  max-width: 900px;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #73796f;
  font-size: 11px;
}
.link-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}
.feature-card:nth-child(1) {
  background: #dfe5a6;
}
.feature-card:nth-child(2) {
  background: #f7c2d0;
}
.feature-card:nth-child(3) {
  background: #f3e3c6;
}
.feature-card .eyebrow {
  color: #5d624c;
}
.feature-card h2 {
  font-size: 38px;
}
.feature-card p {
  max-width: 330px;
}
.feature-card .text-link {
  position: absolute;
  left: 32px;
  bottom: 32px;
}
.feature-card .number {
  position: absolute;
  right: 22px;
  bottom: 0;
  font:
    110px/1 Georgia,
    serif;
  color: #fff8;
}
.site-footer {
  padding: 64px 0 24px;
  background: #172017;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 48px;
}
.footer-brand p {
  max-width: 390px;
  color: #ffffffa8;
}
.footer-brand .brand img {
  width: 64px;
  height: 64px;
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}
.footer-links h2 {
  margin: 0 0 10px;
  color: #f3d591;
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.footer-links a {
  width: max-content;
  color: #ffffffc9;
  font-size: 13px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.socials a {
  padding: 8px 11px;
  border: 1px solid #ffffff2b;
  border-radius: 999px;
  font-size: 11px;
}
.socials a[aria-disabled="true"] {
  opacity: 0.42;
  cursor: not-allowed;
}
.footer-note {
  margin-top: 12px;
  color: #ffffff70;
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid #ffffff1f;
  color: #ffffff72;
  font-size: 11px;
}
.footer-bottom div {
  display: flex;
  gap: 18px;
}
.page-hero {
  padding: 100px 0 72px;
  background: linear-gradient(120deg, #f7c9d4, #fff0dc 58%, #dfe5a6);
}
.page-hero .shell {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(50px, 7vw, 96px);
}
.page-hero p {
  margin: 0;
  max-width: 520px;
}
.menu-nav {
  position: sticky;
  top: 82px;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fffaf2ee;
  backdrop-filter: blur(14px);
}
.menu-nav .shell {
  display: flex;
  gap: 9px;
  overflow: auto;
  padding-block: 12px;
}
.menu-nav a {
  flex: none;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.editorial {
  scroll-margin-top: 150px;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.editorial:nth-child(even) .editorial-media {
  order: 2;
}
.editorial-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: #ddd;
}
.editorial-media img {
  height: 100%;
  object-fit: cover;
}
.gelato-media .product-mark {
  position: absolute;
  left: 50%;
  top: 76%;
  z-index: 2;
  width: 72px;
  height: 72px;
  padding: 5px;
  border-radius: 50%;
  background: #9a914a;
  object-fit: contain;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px #423a2626;
}
.editorial-media.poster img {
  height: 145%;
  object-fit: contain;
  transform: translateY(-14%);
}
.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 6vw, 75px);
  border-radius: 30px;
  background: #fff;
}
.editorial h2 {
  font-size: clamp(42px, 5vw, 66px);
}
.editorial-content > p {
  color: #5e645b;
}
.flavour-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 28px;
}
.flavour-notes span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--warm);
  font-size: 12px;
  font-weight: 700;
}
.status-note {
  padding: 18px 20px;
  border-left: 3px solid var(--pink);
  background: #fae8ed;
  font-size: 13px;
}
.content-section {
  padding: 90px 0;
}
.content-narrow {
  width: min(860px, calc(100% - 40px));
  margin: auto;
}
.content-narrow h2 {
  margin: 52px 0 12px;
  font:
    36px Georgia,
    "Songti SC",
    serif;
}
.content-narrow h2:first-child {
  margin-top: 0;
}
.content-narrow p,
.content-narrow li {
  color: #4f564d;
}
.content-narrow a {
  text-decoration: underline;
}
.store-list {
  display: grid;
  gap: 18px;
}
.store-empty,
.store-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}
.store-empty > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fae3e9;
  color: var(--pink);
  font-size: 30px;
}
.store-empty h2,
.store-card h2 {
  margin: 0 0 9px;
  font:
    40px Georgia,
    "Songti SC",
    serif;
}
.store-empty p,
.store-card p {
  margin: 4px 0;
  color: #5d635a;
}
.process-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card,
.value-card {
  padding: 30px;
  border-radius: 25px;
  background: #fff;
}
.process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.process-card h2,
.value-card h2 {
  font:
    30px Georgia,
    "Songti SC",
    serif;
  margin: 0 0 10px;
}
.inquiry {
  padding: 70px 0;
  background: var(--deep);
  color: #fff;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
  align-items: center;
}
.inquiry .section-title {
  color: #f4d998;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .shell {
    width: min(100% - 36px, 820px);
  }
  .nav {
    grid-template-columns: 1fr auto auto;
  }
  .menu-button {
    display: block;
    order: 2;
  }
  .nav-actions {
    order: 3;
  }
  .nav-links {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 20px 30px 34px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-135%);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 48px;
  }
  .hero-art {
    min-height: 520px;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .collection-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }
  .section-head,
  .page-hero .shell {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .link-panels,
  .process-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .editorial:nth-child(even) .editorial-media {
    order: 0;
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .menu-nav {
    top: 82px;
  }
}
@media (max-width: 680px) {
  .announcement {
    height: 28px;
    font-size: 8px;
  }
  .shell {
    width: calc(100% - 28px);
  }
  .nav {
    height: 72px;
    gap: 5px;
  }
  .nav-links {
    top: 72px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand-copy strong {
    font-size: 18px;
  }
  .brand-copy small {
    font-size: 9px;
  }
  .lang-switch button {
    min-width: 34px;
    height: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 40px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-copy > p:not(.eyebrow) {
    margin: 19px 0 24px;
  }
  .hero-art {
    min-height: 430px;
  }
  .hero-photo.main {
    width: 70%;
  }
  .hero-photo.secondary {
    width: 46%;
    height: 50%;
    border-width: 6px;
  }
  .hero-seal {
    left: 23%;
    width: 82px;
    height: 82px;
  }
  .hero-note {
    right: 0;
    bottom: 18px;
    max-width: 185px;
    font-size: 13px;
  }
  .ticker-track {
    font-size: 14px;
  }
  .section {
    padding: 72px 0;
  }
  .section-head {
    gap: 15px;
    margin-bottom: 28px;
  }
  .section-title {
    font-size: 40px;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .collection-card {
    min-height: 330px;
  }
  .story-image,
  .story-panel {
    min-height: 500px;
  }
  .story-panel {
    padding: 34px 27px;
  }
  .link-panels,
  .process-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 290px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: grid;
  }
  .footer-bottom div {
    flex-wrap: wrap;
  }
  .page-hero {
    padding: 68px 0 48px;
  }
  .page-hero h1 {
    font-size: 53px;
  }
  .menu-nav {
    top: 72px;
  }
  .editorial {
    padding: 55px 0;
  }
  .editorial-media {
    min-height: 410px;
  }
  .route-visual {
    min-height: 430px;
    padding: 36px 24px;
  }
  .route-visual img {
    width: 82px;
    height: 82px;
  }
  .gelato-media .product-mark {
    top: 78%;
    width: 62px;
    height: 62px;
  }
  .editorial-content {
    padding: 31px 25px;
  }
  .editorial h2 {
    font-size: 43px;
  }
  .store-empty,
  .store-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .store-empty h2,
  .store-card h2 {
    font-size: 32px;
  }
  .content-section {
    padding: 66px 0;
  }
  .inquiry {
    padding: 58px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .collection-card img,
  .nav-links {
    transition: none;
  }
}
.language {
  position: relative;
}
.lang-trigger {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.lang-trigger i {
  font-style: normal;
  font-size: 12px;
}
.lang-menu {
  position: absolute;
  right: 0;
  top: 52px;
  width: 205px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  text-align: left;
  font-weight: 700;
}
.lang-menu button:hover,
.lang-menu button[aria-pressed="true"] {
  background: #fae8ed;
  color: #c82454;
}
.lang-menu small {
  font-weight: 500;
  opacity: 0.55;
}
@media (max-width: 680px) {
  .lang-trigger {
    height: 40px;
    padding: 0 11px;
  }
  .lang-trigger b {
    max-width: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .lang-menu {
    position: absolute;
    left: auto;
    right: 0;
    top: 48px;
    bottom: auto;
    width: 205px;
    padding: 8px;
    border-radius: 18px;
  }
  .lang-menu button {
    padding: 12px;
    font-size: 13px;
  }
}
