@charset "utf-8";

.sale-flow-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 260px; 
}

.sale-flow-item-img{
  width: 260px;
  height: 260px;
}

.sale-wrap{
  margin: 3rem auto;
}

.sale-wrap p{
  text-align: center;
  font-weight: bold;
  color: #5F3500;
}

.sale-cont{
  margin: 3rem auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
   justify-content: space-evenly;
}

.sale-cont-wrap{
  margin: 3rem auto;
  width: 70%;
}

.sale-item{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: baseline;
}

.sale-item img{
  border: 3px solid #000;
  max-width: 320px;
  height: auto;
}

.sale-item h4{
  font-size: 1.25rem;
}

.sale-item-text{
  display: flex;
  gap: 1.5rem;
}

.sale-item-text-item{
  display: flex;
  gap: .5rem;
  align-items: center;
  width: 160px;
}

.sale-item-text-item h5{
  font-size: .75rem;
  padding: .5rem;
  background-color: #5F3500;
  color: #fff;
  width: 80px;
  text-align: center;
}

.sale-item-text-item p{
  font-weight: bold;
  color: #000;
}

.sale-banner{
  margin: 3rem auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.sale-banner a{
  max-width: 45%;
}

.sale-banner a:hover{
  opacity: 0.8;
}

.sale-banner a img{
  height: auto;
}

@media screen and (max-width: 960px) {
  .sale-cont-wrap{
    margin: 3rem auto;
    width: 90%;
  }
  .sale-flow-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    width: 100%
  }
  .sale-flow-item-img{
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .sale-flow-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    width: 100%
  }
  .sale-flow-item-img{
    width: 90px;
    height: 90px;
  }
  .sale-banner{
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .sale-banner a{
    max-width: 100%;
  }
}