.clothing-solution-page {
  background: #f7f5f8;
}

.clothing-solution-page main {
  overflow: hidden;
}

.clothing-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #e95c7b;
}

.clothing-hero__image,
.clothing-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clothing-hero__image {
  object-fit: cover;
  object-position: center;
}

.clothing-hero__shade {
  background:
    linear-gradient(90deg, rgba(139, 22, 61, .72) 0%, rgba(184, 36, 77, .5) 31%, rgba(218, 62, 98, .15) 54%, rgba(218, 62, 98, 0) 72%),
    linear-gradient(0deg, rgba(80, 16, 38, .08), rgba(80, 16, 38, 0) 56%);
}

.clothing-hero__inner {
  position: relative;
  z-index: 1;
}

.clothing-hero__copy {
  width: min(640px, 49%);
  padding: 72px 0 78px;
  text-shadow: 0 2px 22px rgba(92, 13, 43, .18);
}

.clothing-hero__eyebrow {
  margin: 0 0 17px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  opacity: .86;
}

.clothing-hero h1 {
  display: grid;
  gap: 10px;
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.clothing-hero h1 > span {
  font-size: clamp(50px, 4.1vw, 72px);
  letter-spacing: -.055em;
}

.clothing-hero h1 > small {
  font-size: clamp(32px, 2.6vw, 46px);
  font-weight: 800;
  letter-spacing: -.045em;
}

.clothing-hero__copy > p:not(.clothing-hero__eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.9;
}

.clothing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.clothing-hero__button {
  min-width: 142px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.clothing-hero__button:hover {
  transform: translateY(-3px);
}

.clothing-hero__button--light {
  color: #dc4773;
  background: #fff;
  box-shadow: 0 16px 36px rgba(103, 15, 48, .2);
}

.clothing-hero__button--light:hover {
  box-shadow: 0 20px 42px rgba(103, 15, 48, .28);
}

.clothing-hero__button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.clothing-hero__button--ghost:hover {
  background: rgba(255, 255, 255, .16);
}

.clothing-benefits {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 34px rgba(50, 36, 46, .06);
}

.clothing-benefits__grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.clothing-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  border-right: 1px solid #f0e7eb;
}

.clothing-benefit:last-child {
  border-right: 0;
}

.clothing-benefit__icon {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  transform-origin: 50% 55%;
}

.clothing-benefit > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.clothing-benefit strong {
  color: #2f2930;
  font-size: 16px;
  line-height: 1.45;
}

.clothing-benefit span {
  overflow: hidden;
  color: #8a8088;
  font-size: 12px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clothing-details {
  padding: 108px 0 116px;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 105, 145, .1), transparent 19%),
    radial-gradient(circle at 92% 24%, rgba(235, 92, 135, .08), transparent 21%),
    #f7f5f8;
}

.clothing-details__heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.clothing-details__heading > p {
  margin: 0 0 12px;
  color: #e44f79;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.clothing-details__heading h2 {
  margin: 0;
  color: #242128;
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.22;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.clothing-details__heading > span {
  display: block;
  max-width: 720px;
  margin: 17px auto 0;
  color: #77707a;
  font-size: 17px;
  line-height: 1.8;
}

.clothing-details__figure {
  width: min(100%, 850px);
  margin: 0 auto;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(232, 79, 120, .09);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(78, 49, 64, .09);
}

.clothing-details__figure img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .clothing-benefit:hover .clothing-benefit__icon {
    animation: clothing-icon-wiggle 560ms ease-in-out;
  }
}

@keyframes clothing-icon-wiggle {
  0%,
  100% {
    transform: translateX(0) rotate(0);
  }

  25% {
    transform: translateX(-1px) rotate(-9deg);
  }

  50% {
    transform: translateX(1px) rotate(7deg);
  }

  75% {
    transform: translateX(-1px) rotate(-4deg);
  }
}

@media (max-width: 1199px) {
  .clothing-hero {
    min-height: 520px;
  }

  .clothing-hero__copy {
    width: min(590px, 54%);
  }

  .clothing-benefit {
    padding-inline: 14px;
  }
}

@media (max-width: 767px) {
  .clothing-hero {
    min-height: 650px;
    align-items: flex-start;
  }

  .clothing-hero__image {
    object-position: 67% center;
  }

  .clothing-hero__shade {
    background:
      linear-gradient(180deg, rgba(145, 22, 62, .82) 0%, rgba(184, 38, 79, .62) 55%, rgba(215, 60, 96, .18) 100%),
      linear-gradient(90deg, rgba(130, 18, 55, .48), rgba(130, 18, 55, 0));
  }

  .clothing-hero__copy {
    width: 100%;
    max-width: 500px;
    padding: 56px 0 270px;
  }

  .clothing-hero h1 > span {
    font-size: clamp(40px, 10.8vw, 48px);
  }

  .clothing-hero h1 > small {
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.25;
  }

  .clothing-hero__copy > p:not(.clothing-hero__eyebrow) {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.75;
  }

  .clothing-hero__actions {
    margin-top: 25px;
  }

  .clothing-hero__button {
    min-width: 128px;
    min-height: 46px;
    padding-inline: 22px;
  }

  .clothing-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 0;
  }

  .clothing-benefit {
    justify-content: flex-start;
    padding: 14px 8px;
    border-right: 0;
  }

  .clothing-benefit:nth-child(odd) {
    border-right: 1px solid #f0e7eb;
  }

  .clothing-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid #f0e7eb;
  }

  .clothing-benefit__icon {
    width: 23px;
    height: 23px;
  }

  .clothing-benefit strong {
    font-size: 14px;
  }

  .clothing-benefit span {
    font-size: 10px;
  }

  .clothing-details {
    padding: 76px 0 82px;
  }

  .clothing-details__heading {
    margin-bottom: 32px;
  }

  .clothing-details__heading h2 {
    font-size: 34px;
  }

  .clothing-details__heading > span {
    font-size: 15px;
  }

  .clothing-details__figure {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 8px;
    border-radius: 20px;
  }

  .clothing-details__figure img {
    border-radius: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clothing-hero__button {
    transition: none;
  }

  .clothing-benefit:hover .clothing-benefit__icon {
    animation: none;
  }
}
