.page-title span::before {
  background-image: url(../images/common/icon-white-car.svg);
}

.steps {
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.step {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.step__div {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10px;
  display: flex;
  align-items: flex-start;
}

.step__div::before,
.step__div::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #303030;
  flex: 1;
  position: relative;
}

.step__div::before {
  left: 1px;
}

.step__div::after {
  right: 1px;
}

.step__div img {
  height: 100%;
  width: auto;
  object-fit: cover;
  position: relative;
  margin-top: 0;
  margin-bottom: auto;
  display: block;
}

.step__title {
  display: flex;
  gap: 8px;
  align-items: center;
}

.step__title-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e59900;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.step__title-number small {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.step__title-number b {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
}

.step__title-text {
  font-size: 18px;
  font-weight: 700;
}

.step__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 12px auto 24px;
}

.shop__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 32px auto 0;
}

.shop__item {
  width: 100%;
  overflow: hidden;
}

.shop__header {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  cursor: pointer;
  user-select: none;
  min-height: 56px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #1c085d;
}

.shop__header-text {
  width: calc(100% - 78px);
  flex-shrink: 0;
  font-weight: 500;
}

.toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.shop__item.active .toggle-icon {
  transform: rotate(0deg);
}

.shop__item.active .toggle-icon::before {
  background-image: url(../images/common/icon-minus.svg);
}

.toggle-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/common/icon-plus.svg);
  filter: brightness(10);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
  letter-spacing: 0;
}

.shop__info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.shop__info-wrapper {
  background: #f6f6f6;
  padding: 32px 20px;
  margin-top: 16px;
}

.shop__image {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.shop__title {
  font-size: 18px;
  line-height: 1;
  margin: 16px 0 8px;
  color: #1c085d;
}

.shop__text {
  flex: 1;
  line-height: 2;
  font-size: 16px;
  color: #1c085d;
}

.shop__link {
  line-height: 2;
  font-size: 16px;
  color: #1c085d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop__links-header {
  line-height: 2;
  font-size: 16px;
  color: #1c085d;
}

.shop__links-wrapper {
  display: flex;
  max-width: 284px;
  justify-content: space-between;
}

.shop__links-wrapper .shop__link {
  line-height: 1.75;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1010;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal__content {
  position: relative;
  width: 90%;
  height: auto;
  max-height: 80vh;
  max-width: 600px;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal__close:hover {
  color: #ccc;
}

.modal__video-wrapper video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
}

@media (min-width: 768px) {
  .steps {
    margin: 80px auto 0;
    gap: 94px;
  }

  .step {
    max-width: 828px;
  }

  /* 
  .step:nth-child(3) {
    max-width: 900px;
    position: relative;
    right: 36px;
  } */

  @media (max-width: 1144px) {
    .step:nth-child(3) {
      right: 0;
    }
  }

  .step:nth-child(3) .step__image {
    max-width: 403px;
  }

  .step__wrapper {
    display: flex;
    gap: 45px;
  }

  .step__image {
    width: calc(100% - 425px);
    max-height: fit-content;
    margin: 0;
  }

  .step__title-text {
    font-size: 20px;
    line-height: 1.5;
  }

  .step__text {
    line-height: 2;
  }

  .step__div {
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 16px;
    display: flex;
  }

  .step:nth-child(3) .step__div {
    justify-content: right;
  }

  .step__div::before,
  .step__div::after {
    display: none;
  }

  .step__div img {
    height: 100%;
    width: auto;
    margin-top: 0px;
  }

  .shop__container {
    gap: 40px;
    margin: 40px auto 0;
  }

  .shop__header {
    padding: 30px 20px;
    min-height: 80px;
  }

  .shop__header-text {
    width: calc(100% - 78px);
    flex-shrink: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
  }

  .toggle-icon {
    width: 24px;
    height: 24px;
  }

  .shop__info-wrapper {
    padding: 30px;
    margin-top: 8px;
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .shop__image {
    width: 230px;
    height: 160px;
    object-fit: cover;
  }

  .shop__info-content {
    max-height: fit-content;
  }

  .shop__title {
    margin: 0 0 8px;
  }
}