@font-face {
  font-family: "Viaoda Libre";
  src: url("assets/fonts/ViaodaLibre-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat IZMI";
  src: url("assets/fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --porcelain: #fffefd;
  --porcelain-2: #f6f1eb;
  --sky: #90c4e5;
  --sea: #4c96b2;
  --black: #111111;
  --tube: #161616;
  --taupe: #9b7d5f;
  --mist: #d8cec3;
  --cream: #e7d6c2;
  --amber: #c79a4b;
  --line: rgba(17, 17, 17, 0.14);
  --max: 1180px;
  --page-pad: clamp(18px, 5vw, 110px);
  --ui: "Montserrat IZMI", "Montserrat", system-ui, sans-serif;
  --display: "Viaoda Libre", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--black);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: clip;
  -webkit-tap-highlight-color: rgba(199, 154, 75, 0.18);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  font: inherit;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

section[id],
main[id] {
  scroll-margin-top: 82px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: var(--porcelain);
  color: var(--black);
  font-size: 12px;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(clamp(20px, 5vw, 72px), env(safe-area-inset-right)) 0 max(clamp(20px, 5vw, 72px), env(safe-area-inset-left));
  color: var(--porcelain);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 254, 253, 0.92);
  border-bottom: 1px solid var(--line);
  color: var(--black);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 66px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  display: none;
  place-items: center;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  margin: 4px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.menu-active .menu-button span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: clamp(660px, 52vw, 820px);
  display: flex;
  align-items: center;
  padding: 116px var(--page-pad) 74px;
  overflow: hidden;
}

.section-sky {
  background:
    linear-gradient(90deg, rgba(24, 100, 150, 0.38), rgba(31, 120, 177, 0.14) 38%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(13, 67, 108, 0.16), rgba(13, 67, 108, 0) 42%),
    url("assets/images/hero-cashmere-generated-v2.png") center center / cover no-repeat;
  color: var(--porcelain);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(610px, 48vw);
  text-shadow: 0 1px 22px rgba(25, 97, 136, 0.2);
}

.micro,
.section-label {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2,
.about h2,
.choose h2,
.details h2,
.wildberries h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(40px, 4.2vw, 68px);
  text-wrap: balance;
}

.hero-text {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 15px;
  color: rgba(255, 254, 253, 0.94);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.text-link,
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 48px;
  font-size: 12px;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

button.text-link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.text-link::after,
.button-link::after {
  content: "";
  width: 46px;
  height: 10px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='46' height='10' viewBox='0 0 46 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5H44M44 5L38.5 1M44 5L38.5 9' stroke='black'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.button-link:hover::after {
  transform: translateX(6px);
}

.light.secondary {
  color: rgba(255, 254, 253, 0.76);
}

.dark {
  color: #2f3447;
}

.about {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 44px 0 48px;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(520px, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 54px;
  border-bottom: 0;
}

.section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #30364a;
}

.about h2 {
  font-size: clamp(30px, 3.2vw, 50px);
  color: var(--tube);
  text-wrap: balance;
}

.about-copy {
  grid-column: 2;
}

.about-copy p,
.details-copy p,
.scent-details p {
  margin: 22px 0 0;
  color: #555965;
  font-size: 15px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 228px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-item strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.feature-item p {
  margin: 0;
  color: #6e7280;
  font-size: 14px;
}

.line-icon {
  width: 58px;
  height: 58px;
  color: #393b42;
}

.flower {
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, currentColor 19% 21%, transparent 22%),
    conic-gradient(from 0deg, transparent 0 8%, currentColor 8% 10%, transparent 10% 20%, currentColor 20% 22%, transparent 22% 32%, currentColor 32% 34%, transparent 34% 44%, currentColor 44% 46%, transparent 46% 56%, currentColor 56% 58%, transparent 58% 68%, currentColor 68% 70%, transparent 70% 80%, currentColor 80% 82%, transparent 82% 100%);
}

.drop {
  border: 2px solid currentColor;
  border-radius: 55% 55% 60% 60%;
  transform: rotate(45deg);
}

.bottle {
  position: relative;
  width: 46px;
  height: 58px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.bottle::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -18px;
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 2px 2px;
}

.collection {
  padding: 34px max(22px, calc((100vw - var(--max)) / 2)) clamp(44px, 3.8vw, 54px);
  background: var(--porcelain);
}

.section-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 0;
  border-bottom: 0;
}

.carousel-hint {
  display: none;
  align-items: center;
  gap: 16px;
  color: #30364a;
  font-size: 18px;
  line-height: 1;
}

.section-heading h2,
.choose h2,
.details h2,
.wildberries h2 {
  font-size: clamp(32px, 3.6vw, 54px);
}

.choose h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.section-heading h2 {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 450;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #30364a;
}

.scent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
}

.scent-card {
  min-height: clamp(430px, 34vw, 500px);
  display: grid;
  grid-template-rows: 318px auto auto;
  align-items: end;
  padding: 0 clamp(26px, 3.8vw, 72px);
  background: transparent;
  border-left: 1px solid rgba(17, 17, 17, 0.18);
}

.scent-card:first-child {
  border-left: 0;
}

.scent-visual {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 318px;
  overflow: hidden;
  cursor: pointer;
}

.scent-product,
.scent-atmosphere {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity 260ms ease, transform 320ms ease;
  pointer-events: none;
}

.scent-product {
  width: min(198px, 94%);
  height: auto;
  max-height: 306px;
  object-fit: contain;
  z-index: 2;
}

.scent-atmosphere {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  z-index: 1;
}

.scent-visual:hover .scent-atmosphere,
.scent-visual:focus-within .scent-atmosphere,
.scent-visual.is-touch-preview .scent-atmosphere {
  opacity: 1;
  transform: scale(1);
}

.scent-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 1.75vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.scent-card p {
  margin: 10px 0 0;
  color: #434650;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.scent-meta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.34);
  color: #30333c;
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.scent-meta a {
  color: var(--taupe);
  font-weight: 450;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.choose {
  min-height: 0;
  height: clamp(500px, 40vw, 620px);
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  background: var(--porcelain);
}

.choose-media {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.choose-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.8vw, 48px);
  min-width: 0;
  background: var(--porcelain);
}

.scent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

.scent-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(155, 125, 95, 0.34);
  border-radius: 999px;
  background: var(--porcelain);
  color: #4f473f;
  font-size: 11px;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.scent-tab:hover,
.scent-tab.is-selected {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--porcelain);
}

.scent-details {
  padding-top: 20px;
  border-top: 0;
}

.scent-details > p {
  margin-top: 0;
}

.scent-details h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.scent-details dl {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.scent-details div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 0;
}

.scent-details dt {
  font-size: 11px;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
}

.scent-details dd {
  margin: 0;
  color: #3e414a;
}

.details {
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(44px, 8vw, 108px);
  background: var(--porcelain);
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-line {
  display: grid;
  grid-template-columns: 56px minmax(140px, 0.55fr) 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.detail-line span {
  color: var(--taupe);
  font-size: 11px;
  font-weight: 450;
}

.detail-line strong {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.detail-line p {
  margin: 0;
  color: #61656f;
}

.wildberries {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 410px);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  position: relative;
  padding: clamp(46px, 4.8vw, 72px) max(22px, calc((100vw - var(--max)) / 2));
  background: var(--porcelain);
  color: var(--black);
  border-bottom: 1px solid var(--line);
  overflow: clip;
}

.wb-scene {
  display: none;
}

.wb-stone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.wb-bottle {
  position: absolute;
  z-index: 2;
  top: clamp(38px, 4vw, 58px);
  height: clamp(230px, 15.5vw, 300px);
  width: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 20px rgba(54, 45, 36, 0.12));
}

.wb-bottle-1 {
  left: 54%;
}

.wb-bottle-2 {
  left: 69%;
}

.wb-bottle-3 {
  left: 84%;
}

.wb-copy {
  position: relative;
  z-index: 1;
  width: auto;
  margin-left: 0;
  margin-top: 0;
  display: contents;
}

.wb-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.button-link {
  margin-top: 0;
  min-width: 0;
  min-height: 58px;
  justify-content: space-between;
  padding: 0 28px;
  background: var(--taupe);
  border: 1px solid var(--taupe);
  color: var(--porcelain);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.07em;
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

html.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-modal[hidden] {
  display: none;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: 92px 22px 32px;
}

.about-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(10px);
}

.about-modal__panel {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  max-height: min(720px, calc(100svh - 124px));
  overflow: auto;
  padding: clamp(30px, 5vw, 58px);
  background: var(--porcelain);
  color: var(--black);
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.18);
}

.about-modal__panel h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.about-modal__text {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin-top: 28px;
  color: #555965;
  font-size: 15px;
}

.about-modal__text p {
  margin: 0;
}

.about-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.about-modal__close::before,
.about-modal__close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 21px;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.about-modal__close::before {
  transform: rotate(45deg);
}

.about-modal__close::after {
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 22px 28px;
    background: rgba(255, 254, 253, 0.99);
    color: var(--black);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
    transform: translateY(-130%);
    transition: transform 240ms ease;
  }

  .site-header.menu-active .nav {
    transform: translateY(0);
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .about,
  .choose,
  .wildberries {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 840px;
    align-items: start;
    padding-top: 118px;
    background-position: 60% 50%;
  }

  .hero-copy {
    width: min(610px, 78vw);
  }

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

  .scent-grid {
    gap: 30px;
  }

  .scent-card {
    min-height: 0;
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 0 30px;
    border-left: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  }

  .scent-card:last-child {
    border-bottom: 0;
  }

  .scent-visual {
    height: 320px;
  }

  .scent-product {
    width: min(198px, 56vw);
  }

  .about-copy {
    grid-column: 1;
  }

  .choose {
    height: auto;
  }

  .choose-media {
    height: 440px;
    max-height: 520px;
  }

  .wildberries {
    min-height: 0;
    gap: 30px;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
    background: var(--porcelain);
  }

  .wb-copy {
    width: auto;
    margin-left: 0;
  }

  .wb-stone {
    object-position: left center;
  }

  .wb-bottle {
    top: 150px;
    height: 190px;
  }

  .wb-bottle-1 {
    left: 50%;
  }

  .wb-bottle-2 {
    left: 68%;
  }

  .wb-bottle-3 {
    left: 86%;
  }

}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .nav {
    inset: 68px 0 auto 0;
  }

  .hero {
    min-height: 100svh;
    padding: 84px 18px 28px;
    background:
      linear-gradient(180deg, rgba(19, 84, 132, 0.4), rgba(31, 120, 177, 0.16) 46%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(90deg, rgba(17, 88, 139, 0.28), rgba(17, 88, 139, 0) 68%),
      url("assets/images/hero-cashmere-mobile-v1.png") center center / cover no-repeat;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(34px, 10vw, 42px);
    overflow-wrap: break-word;
  }

  .hero-text {
    font-size: 14px;
    max-width: 310px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .about,
  .collection {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .about {
    width: calc(100% - 36px);
  }

  .section-heading h2,
  .choose h2,
  .wildberries h2,
  .about h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .section-heading h2 {
    font-size: 11px;
  }

  .collection {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about {
    padding-top: 44px;
    padding-bottom: 46px;
    row-gap: 42px;
  }

  .scent-grid {
    --scent-slide-gap: clamp(34px, 12vw, 54px);
    margin-top: 38px;
    display: flex;
    gap: var(--scent-slide-gap);
    margin-right: 0;
    padding-right: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-hint {
    display: inline-flex;
  }

  .scent-grid::-webkit-scrollbar {
    display: none;
  }

  .scent-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .scent-visual {
    height: 290px;
  }

  .scent-product {
    width: min(168px, 50vw);
  }

  .scent-card h3 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .scent-card p,
  .scent-meta {
    font-size: 14px;
  }

  .scent-card p {
    white-space: normal;
  }

  .choose {
    min-height: 0;
    height: auto;
  }

  .choose-media {
    height: 360px;
    min-height: 0;
  }

  .choose-panel {
    padding: 40px 18px 50px;
  }

  .scent-tabs {
    display: grid;
  }

  .scent-tab {
    width: 100%;
  }

  .scent-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button-link {
    min-width: 0;
    width: 100%;
  }

  .wildberries {
    min-height: 0;
    padding: 46px 18px;
  }

  .wb-copy {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .wb-copy h2 {
    max-width: 340px;
  }

  .button-link {
    min-height: 58px;
    padding: 0 22px;
    font-size: 12px;
  }

  .wb-bottle {
    top: 310px;
    height: 120px;
  }

  .wb-bottle-1 {
    left: 28%;
  }

  .wb-bottle-2 {
    left: 55%;
  }

  .wb-bottle-3 {
    left: 82%;
  }

  .about-modal {
    padding: 80px 14px 20px;
  }

  .about-modal__panel {
    padding: 34px 20px 28px;
  }

  .about-modal__text {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 33px;
  }

  .hero-text {
    max-width: 286px;
  }

  .hero-actions {
    gap: 6px;
  }

  .text-link,
  .button-link {
    gap: 16px;
  }

  .scent-visual {
    height: 260px;
  }

  .scent-product {
    width: min(150px, 48vw);
  }

  .wildberries {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (min-width: 1600px) {
  .hero-copy {
    margin-left: clamp(0px, 2vw, 52px);
  }

  .choose {
    min-height: 820px;
  }

  .choose-media {
    height: 820px;
  }
}

.collection .scent-meta a {
  color: var(--taupe);
}

.wildberries {
  border-top: 0;
}

.wildberries .button-link {
  justify-self: end;
  width: auto;
  min-width: 0;
  min-height: 48px;
  justify-content: flex-start;
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--black);
  transition: color 180ms ease;
}

.wildberries .button-link:hover,
.wildberries .button-link:focus-visible {
  background: transparent;
  color: var(--taupe);
}

@media (max-width: 640px) {
  .wildberries .button-link {
    justify-self: start;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  html.js-enabled .reveal,
  html.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
