#haggle-section {
  margin: 120px auto;
}

.haggle {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  padding: 0 40px;
  margin: 0 auto;
}

.haggle:hover {
  text-decoration: none;
}

.haggle .haggle-wrap {
  position: relative;
  display: flex;
  max-width: 1744px;
  width: 100%;
  height: 712px;
  margin: auto 0;
  border-radius: 80px;
  background-color: #ffd05a;
}

.haggle .haggle-wrap > div {
  flex: 1
}

.haggle .haggle-wrap .info {
  display: flex;
  padding: 120px;
  padding-right: 0;
  flex-direction: column;
  justify-content: space-between
}

.haggle .haggle-wrap .info .desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.haggle .haggle-wrap .info .desc .white {
  max-width: 725px;
  padding: 30px;
  border-radius: 32px;
  background-color: var(--white);
  font-size: 70px;
  font-weight: 600;
  color: var(--sm-text-color);
  transform: rotate(-3deg);
}

.haggle .haggle-wrap .info .desc .yellow {
  max-width: 420px;
  padding: 25px;
  background-color: #ffe49d;
  border-radius: 24px;
  color: var(--sm-text-color);
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  transform: rotate(3deg) translate(70px, -20px);
}

.haggle .haggle-wrap .info .actions {
  display: flex;
  gap: 32px;
}

.haggle .haggle-wrap .info .actions .btn {
  height: 72px;
  width: 160px;
  background-color: var(--sm-btn-color);
  color: var(--white);
}

.haggle .haggle-wrap .info .actions .btn:focus,
.haggle .haggle-wrap .info .actions .btn:hover {
  background-color: var(--hover-btn);
}

.haggle .haggle-wrap .info .actions .btn:focus {
  outline: 4px solid var(--shade);
}

.haggle .haggle-wrap .info .actions .action-text {
  max-width: 424px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.haggle .bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 80px;
  overflow: hidden;
}

.haggle .haggle-wrap svg {
  position: absolute;
  width: 100%;
  height: 100%;
  stroke-width: 40px;
  stroke: #f5b000;
}

.haggle .haggle-wrap svg.mobile-bg {
  display: none;
}

.haggle .haggle-wrap .info {
  position: relative;
  display: flex;
  z-index: 1;
}

.haggle .haggle-wrap .images {
  position: relative;
  padding: 120px;
  padding-left: 0;
  z-index: 1;
}

.haggle .haggle-wrap .images .haggle-1 {
  position: absolute;
  bottom: 0;
  transform: translate(200px,-10px);
  rotate: 16deg;
}

.haggle .haggle-wrap .images .haggle-2 {
  position: absolute;
  top: 0;
  transform: translate(0, -20px);
}

.haggle .haggle-wrap .images .haggle-3 {
  position: absolute;
  right: 0;
  transform: translate(-15px, 85px);
  z-index: -1;
  rotate: 16deg;
}

.haggle .haggle-wrap .images .coin-1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 105px;
  height: 105px;
  transform: rotate(-25deg) translate(-60px, -50px);
}

.haggle .haggle-wrap .images .coin-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 105px;
  height: 105px;
  transform: rotate(-15deg) translate(-20px, 20px);
}

.haggle .haggle-wrap .images .coin-3 {
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 190px;
  height: 190px;
  transform: translate(230px, -100px);
}

.haggle .haggle-wrap .images .label {
  position: absolute;
  z-index: 3;
}

.haggle .haggle-wrap .images .label.small {
  left: 0;
  bottom: 0;
  transform: rotate(8deg) translate(60px, -140px);
}

.haggle .haggle-wrap .images .label.big {
  right: 0;
  top: 0;
  width: 310px !important;
  height: 140px !important;
  font-size: 60px;
  transform: rotate(-16deg) translate(-120px, 50px);
}

@media (max-width: 1600px) {
  .haggle .haggle-wrap {
    height: 464px;
  }

  .haggle .haggle-wrap .info {
    padding: 50px;
    padding-right: 0;
  }

  .haggle .haggle-wrap .images {
    padding: 50px;
    padding-left: 0;
  }

  .haggle .haggle-wrap .images .haggle-1 {
    width: 224px;
    height: 224px;
    transform: translate(170px, 30px);
  }
  
  .haggle .haggle-wrap .images .haggle-2 {
    width: 340px;
    height: 340px;
    transform: translate(20px, -10px);
  }
  
  .haggle .haggle-wrap .images .haggle-3 {
    width: 260px;
    height: 245px;
    transform: translate(10px, 40px);
  }

  .haggle .haggle-wrap .images .coin-1 {
    width: 80px;
    height: 80px;
    transform: rotate(-25deg) translate(-30px, -50px);
  }
  
  .haggle .haggle-wrap .images .coin-2 {
    width: 80px;
    height: 80px;
  }
  
  .haggle .haggle-wrap .images .coin-3 {
    width: 130px;
    height: 130px;
    transform: translate(200px, -30px);
  }

  .haggle .haggle-wrap .info .desc .white {
    max-width: 540px;
    padding: 25px;
    font-size: 48px;
    text-align: center;
  }
  
  .haggle .haggle-wrap .info .desc .yellow {
    max-width: 280px;
    padding: 25px;
    font-size: 24px;
  }

  .haggle .haggle-wrap .info .actions .action-text {
    max-width: 290px;
    font-size: 16px;
    line-height: 24px;
  }

  .haggle .haggle-wrap .images .label.small {
    width: 126px !important;
    height: 56px !important;
    font-size: 24px;
    transform: rotate(8deg) translate(60px, -120px);
  }
  
  .haggle .haggle-wrap .images .label.big {
    right: 0;
    top: 0;
    width: 210px !important;
    height: 92px !important;
    font-size: 40px;
    transform: rotate(-16deg) translate(-30px, 10px);
  }
}

@media (max-width: 991px) {
  .haggle {
    padding: 0 15px;
  }

  .haggle .haggle-wrap {
    display: flex;
    flex-direction: column;
    height: 892px;
  }

  .haggle .haggle-wrap > div {
    flex: 0;
  } 

  .haggle .haggle-wrap svg {
    width: 180%;
    transform: translate(-20%, 0%);
   }

  .haggle .haggle-wrap .info {
    position: initial;
    padding: 60px 60px 0;
  }

  .haggle .haggle-wrap .info .desc {
    align-items: center;
  }

  .haggle .haggle-wrap .info .desc .white {
    max-width: 500px;
    border-radius: 16px;
  }

  .haggle .haggle-wrap .info .desc .yellow {
    border-radius: 16px;
    transform: rotate(3deg) translate(-70px, -20px);
  }

  .haggle .haggle-wrap .info .actions {
    position: absolute;
    bottom: 80px;
    margin-right: 60px;
  }

  .haggle .haggle-wrap .info .actions .action-text {
    display: flex;
    align-items: center;
    max-width: unset;
  }

  .haggle .haggle-wrap .images {
    padding: 0 60px 60px;
    flex: .6;
  }

  .haggle .haggle-wrap .images .haggle-1 {
    
    transform: translate(80px, 0px);
  }
  
  .haggle .haggle-wrap .images .haggle-2 {
    left: 50%;
    transform: translate(-50%, 0px);
  }
  
  .haggle .haggle-wrap .images .haggle-3 {
    transform: translate(-100px, 170px);
  }

  .haggle .haggle-wrap .images .coin-1 {
    transform: rotate(-25deg) translate(80px, 40px);
  }
  
  .haggle .haggle-wrap .images .coin-2 {
    transform: rotate(-15deg) translate(-150px, 20px);
  }
  
  .haggle .haggle-wrap .images .coin-3 {
    transform: translate(100px, 40px);
  }

  .haggle .haggle-wrap .images .label.small {
    top: 0;
    transform: rotate(8deg) translate(170px, 60px);
  }
  
  .haggle .haggle-wrap .images .label.big {
    transform: rotate(-16deg) translate(-100px, 30px);
  }
}

@media (max-width: 730px) {
  #haggle-section {
    margin: 64px auto;
  }

  .haggle {
    padding: 0; 
  }

  .haggle .bg {
    border-radius: 56px;
  }

  .haggle .haggle-wrap {
    height: 648px;
    border-radius: 56px;
  }

  .haggle .haggle-wrap > div {
    flex: 0;
  } 

  .haggle .haggle-wrap svg:not(.mobile-bg) {
    display: none;
  }

  .haggle .haggle-wrap svg.mobile-bg {
    display: block;
  }

  .haggle .haggle-wrap .info {
    position: initial;
    padding: 40px 25px 0;
    z-index: 1;
  }

  .haggle .haggle-wrap .info .desc {
    position: relative;
    align-items: center;

  }

  .haggle .haggle-wrap .info .desc .white {
    font-size: 32px;
    padding: 16px;
    max-width: 300px;
  }

  .haggle .haggle-wrap .info .desc .yellow {
    width: 216px;
    padding: 16px;
    font-size: 18px;
    transform: rotate(3deg) translate(0px, -30px);

  }

  .haggle .haggle-wrap .info .actions {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-right: 25px;
  }

  .haggle .haggle-wrap .info .actions button {
    height: 64px;
    order: 1;
    font-size: 14px;
    align-self: center;
  }

  .haggle .haggle-wrap .info .actions .action-text {
    display: initial;
    text-align: center;
  }

  .haggle .haggle-wrap .images {
    padding: 0 25px 25px;
    flex: .6;
  }

  .haggle .haggle-wrap .images .haggle-1 {
    width: 106px;
    height: 106px;
    right: 50px;
    bottom: 30px;
    transform: translate(0px, -30px);
  }
  
  .haggle .haggle-wrap .images .haggle-2 {
    width: 188px;
    height: 188px;
    left: 20px;
    transform: translate(0%, -30px);
  }
  
  .haggle .haggle-wrap .images .haggle-3 {
    width: 124px;
    height: 117px;
    top: 0;
    transform: translate(-20px, -30px);
    z-index: -1;
  }

  .haggle .haggle-wrap .images .coin-1 {
    top: 0;
    right: 0;
    left: unset;
    bottom: unset;
    height: 45px;
    width: 45px;
    transform: rotate(-18deg) translate(-10px, -30px);
  }
  
  .haggle .haggle-wrap .images .coin-2 {
    height: 65px;
    width: 65px;
    left: 0;
    transform: rotate(-18deg) translate(30px, -80px);
  }
  
  .haggle .haggle-wrap .images .coin-3 {
    display: none;
  }

  .haggle .haggle-wrap .images .label.small {
    top: unset;
    bottom: 0;
    right: 0;
    left: unset;
    width: 55px !important;
    height: 24px !important;
    font-size: 10px;
    transform: rotate(-8deg) translate(-20px, -80px);
  }
  
  .haggle .haggle-wrap .images .label.big {
    top: unset;
    left: 0;
    bottom: 0;
    width: 97px !important;
    height: 43px !important;
    font-size: 18px;
    transform: rotate(8deg) translate(50px, -60px);
  }
}