.beautys-special-collection {
  padding: 72px 24px 44px;
  background: #fff;
  color: #000;
  font-family: "Josefin Sans", sans-serif;
}

.beautys-special-collection__inner {
  width: min(1539px, 100%);
  margin: 0 auto;
}

.beautys-special-collection__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 54px;
  text-align: center;
}

.beautys-special-collection__title {
  display: flex;
  gap: 17px;
  margin: 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.beautys-special-collection__title strong {
  font-weight: 500;
}

.beautys-special-collection__divider {
  display: block;
  width: 275px;
  height: 30px;
  margin-top: 37px;
}

.beautys-special-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.beautys-special-collection__viewport {
  overflow: hidden;
}

.beautys-special-collection__arrow {
  display: none;
}

.beautys-special-collection__card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 49 / 60;
  background: #f4e5e7;
  color: #fff;
  text-decoration: none;
}

.beautys-special-collection__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.beautys-special-collection__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgb(0 0 0 / 35%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.beautys-special-collection__label {
  border-bottom: 1px solid currentcolor;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: transform 300ms ease;
}

.beautys-special-collection__card:hover .beautys-special-collection__image,
.beautys-special-collection__card:focus-visible .beautys-special-collection__image {
  transform: scale(1.035);
}

.beautys-special-collection__card:hover .beautys-special-collection__overlay,
.beautys-special-collection__card:focus-visible .beautys-special-collection__overlay {
  opacity: 1;
}

.beautys-special-collection__card:hover .beautys-special-collection__label,
.beautys-special-collection__card:focus-visible .beautys-special-collection__label {
  transform: translateY(0);
}

.beautys-special-collection__card:focus-visible {
  outline: 3px solid #eba2ab;
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .beautys-special-collection {
    padding: 60px 20px 70px;
  }

  .beautys-special-collection__header {
    margin-bottom: 38px;
  }

  .beautys-special-collection__title {
    gap: 11px;
    font-size: 34px;
  }

  .beautys-special-collection__divider {
    width: 220px;
    margin-top: 30px;
  }

  .beautys-special-collection__grid {
    gap: 18px;
  }

  .beautys-special-collection__label {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .beautys-special-collection {
    padding: 32px 4px 24px;
  }

  .beautys-special-collection__header {
    margin-bottom: 24px;
  }

  .beautys-special-collection__title {
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 12px;
    font-size: 29px;
  }

  .beautys-special-collection__divider {
    width: 220px;
    margin-top: 16px;
  }

  .beautys-special-collection__carousel {
    position: relative;
  }

  .beautys-special-collection__viewport {
    width: 100%;
    touch-action: pan-y;
  }

  .beautys-special-collection__grid {
    display: flex;
    gap: 0;
    transition: none;
    will-change: transform;
  }

  .beautys-special-collection__card {
    flex: 0 0 100%;
    display: block;
    aspect-ratio: 49 / 60;
    overflow: hidden;
  }

  .beautys-special-collection__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 38px;
    padding: 0;
    border: 1px solid #555;
    border-radius: 0;
    background: #fff;
    color: #333;
    transform: translateY(-50%);
  }

  .beautys-special-collection__arrow--previous {
    left: 10px;
  }

  .beautys-special-collection__arrow--next {
    right: 10px;
  }

  .beautys-special-collection__arrow .material-icons {
    font-size: 28px;
  }

  .beautys-special-collection__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 24px;
    background: transparent;
    color: #fff;
    opacity: 1;
    pointer-events: none;
  }

  .beautys-special-collection__label {
    font-size: 22px;
    text-shadow: 0 1px 4px rgb(0 0 0 / 28%);
    transform: none;
  }
}
