
.hero-product-card--centre {
  z-index: 2;
  top: 32px;
  left: 50%;
  min-height: 390px;
  transform: translateX(-50%);
}

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

.hero-product-card__tag {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-card .vial {
  margin: 18px auto 34px;
  transform: scale(0.92);
}

.hero-product-image {
  width: 150px;
  height: 220px;
  margin: -6px auto 18px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 54%;
}

.hero-product-card strong,
.hero-product-card > span:last-child {
  display: block;
  width: 100%;
  line-height: 1.35;
  text-align: left;
}

.hero-product-card strong {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.76rem;
}

.hero-product-card > span:last-child {
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero__controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-arrows,
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(16, 32, 53, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 32, 53, 0.08);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.carousel-dot {
  position: relative;
  width: 24px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease;
}

.carousel-dot::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 32, 53, 0.24);
  content: '';
  transform: translateY(-50%);
  transition: background-color 180ms ease;
}

.carousel-dot.is-active {
  width: 42px;
  background: transparent;
}

.carousel-dot.is-active::before {
  background: var(--blue);
}

.trust-bar {
  position: relative;
  z-index: 3;
  background: var(--blue);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  min-height: 112px;
  align-items: center;
  padding: 24px 32px;
  border: 0;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.trust-item:first-child {
  border: 0;
}

.trust-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.trust-item strong,
.trust-item span {
  display: block;
  line-height: 1.3;
}

.trust-item strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.86rem;
}

.trust-item span {
  color: #deebff;
  font-size: 0.7rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  box-shadow: 0 22px 48px rgba(16, 32, 53, 0.2);
  transform: translateY(-5px);
}

.category-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 19, 36, 0.03) 20%, rgba(5, 19, 36, 0.88) 100%);
  content: '';
}

.category-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover .category-card__image {
  transform: scale(1.045);
}

.category-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px;
}

.category-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(8, 23, 42, 0.45);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.category-card h3 {
  margin-bottom: 6px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.category-card p {
  max-width: 280px;
  margin: 0 0 19px;
  color: #d5dfeb;
  font-size: 0.79rem;
}

.category-card__shop {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.category-card__shop i {
  transition: transform 180ms ease;
}

.category-card:hover .category-card__shop i {
  transform: translateX(4px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  flex-direction: column;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: #b6cbe5;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.product-card__visual {
  position: relative;
  display: grid;
  min-height: 245px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #f2f6fa;
}

