
.site-logo img {
  width: auto;
  height: 76px;
  max-height: none;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 28px 0 24px;
  color: #2d3c50;
  font-size: 0.84rem;
  font-weight: 750;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.site-nav a[aria-current='page'] {
  color: var(--blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.research-gate {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 20, 37, 0.88);
  backdrop-filter: blur(12px);
  transition: opacity 240ms ease;
}

.research-gate.is-closing {
  opacity: 0;
}

.research-gate[aria-hidden='true'] {
  display: none;
}

.gate-card {
  width: min(100%, 570px);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
}

.gate-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid #cfe0f7;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.1rem;
}

.gate-card h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.gate-card p {
  margin-bottom: 17px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.gate-card__check {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.gate-card__check i {
  margin-top: 5px;
  color: var(--success);
}

.gate-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 24px;
}

.gate-note {
  margin: 16px 0 0 !important;
  color: var(--ink-muted) !important;
  font-size: 0.72rem !important;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef5fb;
}

.hero__track {
  position: relative;
  min-height: 700px;
}

.hero__slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 700px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image--molecular {
  object-position: 58% center;
}

.hero__slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.25) 62%, rgba(255, 255, 255, 0) 100%);
  content: '';
}

.hero__slide--blends .hero__image {
  object-position: 72% center;
}

.hero__slide--products {
  background: linear-gradient(125deg, #f8fbff 0%, #e8f2ff 58%, #d9eaff 100%);
}

.hero__slide--products::after {
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.99) 0%, rgba(248, 251, 255, 0.96) 42%, rgba(232, 242, 255, 0.25) 66%, rgba(232, 242, 255, 0) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 700px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 655px);
  padding: 90px 0;
}

.hero__content .display-title {
  color: var(--navy);
}

.hero__content .display-title span {
  color: var(--blue);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: #45556a;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: #526277;
  font-size: 0.78rem;
  font-weight: 750;
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__assurance i {
  color: var(--success);
}

.hero-products {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(3vw, calc((100vw - var(--container)) / 2));
  width: min(43vw, 620px);
  height: 520px;
  transform: translateY(-50%);
}

.hero-product-card {
  position: absolute;
  display: flex;
  width: 200px;
  min-height: 350px;
  align-items: center;
  padding: 28px 22px 22px;
  border: 1px solid rgba(7, 89, 199, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(11, 27, 49, 0.13);
  flex-direction: column;
}

.hero-product-card--left {
  top: 118px;
  left: 0;
  transform: rotate(-4deg);
}
