.review-step4 {
  padding: 173px 175px 80px 175px;  
}

.review-step4 .review-step4-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.review-step4 .review-step4-left {
  width: 48%;
}

.review-step4 .product-preview-image {
  width: 100%;
  padding-bottom: 91%;
  position: relative;
  flex-shrink: 0;
  border-radius: 24px;
  margin-bottom: 36px;
  overflow: hidden;
}

.review-step4 .product-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.review-step4 .product-preview-name {
  font-family: Buyan;
  font-weight: 700;
  font-size: 35px;
  line-height: 105%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.review-step4 .review-step4-right {
  width: 52%;
}

.review-step4 .review-form-title {
  font-family: Buyan;
  font-weight: 700;
  font-size: 55px;
  line-height: 128%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.review-step4 .form-group {
  margin-bottom: 25px;
}

.review-step4 .form-group label {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #FFFFFF;
  margin-bottom: 10px;
  display: block;
}

.review-step4 .form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #9E9E9E;
  border-radius: 0;
  outline: none;
}

.review-step4 .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.review-step4 .form-control:focus {
  border-bottom-color: #FFCC8F;
}

.review-step4 .upload-label {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;  
  color: #FFFFFF;
  margin-bottom: 12px;
  display: block;
}

.review-step4 .upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}

.review-step4 .upload-item {
  aspect-ratio: 1;
  background: #D9D9D9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  overflow: hidden;
  position: relative;
}

.review-step4 .upload-item:hover {
  opacity: 0.8;
}

.review-step4 .upload-item img,
.review-step4 .upload-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.review-step4 .upload-item svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.review-step4 .upload-item.has-file svg {
  display: none;
}

.review-step4 .form-group textarea {
  height: 35px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #B6B6B6;
  resize: auto;
}

.review-step4 .form-group textarea::placeholder {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #B6B6B6;
}

.review-step4 .next-step-btn {
  background: linear-gradient(263.56deg, #FFE9C8 -4.53%, #FFD9AD 18.44%, #FFDDB5 51.46%, #FFDDB5 76.6%, #FFCC8F 111.92%), radial-gradient(55.13% 55.13% at 50% 2.23%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0px 8.8px 0px 0px #D8A86E;
  width: 100%;
  height: 95px;
  border-radius: 24px;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 18px;
  color: #584D3E;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.1s ease-in, box-shadow 0.25s ease-in;
  border: none;
  cursor: pointer;
}

.review-step4 .next-step-btn:before {
  content: '';
  background: radial-gradient(55.13% 55.13% at 50% 2.23%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 24px;
}

.review-step4 .next-step-btn:hover {
  box-shadow: 0px 5px 0px 0px #D8A86E;
}

.review-step4 .next-step-btn:active {
  box-shadow: 0px 4px 0px 0px #D8A86E;
}

.review-step4 .review-form-title-tablet {
  display: none;
}

@media screen and (max-width: 1275px) {
  .review-step4 {
    padding: 173px 44px 80px 46px;  
  }
}

@media screen and (max-width: 1200px) {
  .review-step4 {
    padding: 266px 44px 265px 46px;
  }
}

@media screen and (max-width: 900px) {
  .review-step4 .next-step-btn {
    height: 78px;
    font-size: 16px;
    border-radius: 20px;
  }

  .review-step4 .review-form-title {
    display: none;
    font-size: 50px;
    margin-bottom: 30px;
  }

  .review-step4 .review-form-title-tablet {
    display: block;
  }

  .review-step4 .review-step4-left {
    width: 45%;
  }

  .review-step4 .product-preview-image {
    padding-bottom: 89%;
    border-radius: 20px;
    margin-bottom: 25px;
  }

  .review-step4 .product-preview-name {
    font-size: 30px;
  }

  .review-step4 .form-group {
    margin-bottom: 22px;
  }

  .review-step4 .form-group textarea {
    height: 30px;
    font-size: 16px;
  }

  .review-step4 .form-group textarea::placeholder {
    font-size: 16px;
  }

  .review-step4 .form-group label {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .review-step4 .upload-grid {
    gap: 7.96px;
    margin-bottom: 20px;
  }

  .review-step4 .review-step4-content {
    gap: 25px;
  }

  .review-step4 .upload-item svg {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 670px) {
  .review-step4 {
    padding: 76px 14px 76px 14px;
  }

  .review-step4 .next-step-btn {
    height: 68px;
    font-size: 14px;
    border-radius: 18px;
  }

  .review-step4 .review-form-title {
    font-size: 40px;
    margin-bottom: 25px;
  }

  .review-step4 .review-step4-content {
    /* flex-direction: column; */
    margin-bottom: 23px;
  }

  .review-step4 .form-group textarea {
    font-size: 12px;
  }

  .review-step4 .form-group textarea::placeholder {
    font-size: 12px;
  }

  .review-step4 .form-group label {
    font-size: 23px;
  }

  .review-step4 .upload-item svg {
    width: 23px;
    height: 23px;
  }
}

@media screen and (max-width: 515px) {
  .review-step4 .review-step4-content {
    flex-direction: column;
  }

  .review-step4 .review-step4-left {
    width: 100%;
  }

  .review-step4 .review-step4-right {
    width: 100%;
  }
}
