.detail-content {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 70px);
}

.detail-content__shop,
.detail-content__reservation {
  flex: 1;
  margin-left: 100px;
}

.detail-shop__header {
  display: flex;
  flex-direction: flex-start;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.back-btn {
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 3px 3px 2px #ABADB4;
  padding: 5px 8px 4px 8px;
  align-items: center;
}

.shop-image {
  width: 90%;
}

.shop-comment{
  display: flex;
  margin: 10px 0;
}

.shop-description {
  width: 90%;
}

.shop-prices {
  display: flex;
  margin-top: 10px;
  gap: 80px;
  margin-bottom: 30px;
}

.shop-price__name,
.shop-price {
  font-weight: bold;
}


.shop-review {
  margin-bottom: 10px;
  color: #fff;
  background: #6290FF;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 14px;
  white-space: nowrap;

}

.detail-content__reservation {
  background-color: #4763F1;
  height: 80%;
  margin-top: -40px;
  border-radius: 4px;
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.reservation-title {
  margin-top: 30px;
  color: #fff;
  margin-left: 30px;
  margin-bottom: 22px;
}

.reservation-select {
  display: flex;
  flex-direction: column;
  position: relative;
}

.reservation-date {
  background: #fff;
  margin-left: 30px;
  width: 40%;
  margin-bottom: 20px;
  border-radius: 4px;
  padding: 0px 4px;
}

.reservation-time {
  background: #fff;
  margin: 0 60px 20px 30px;
  border-radius: 4px;
  padding: 3px 4px;
}

.reservation-number {
  background: #fff;
  margin-left: 30px;
  margin-right: 60px;
  border-radius: 4px;
  padding: 3px 4px;
  margin-bottom: 20px;
}

.reservation-confirm {
  background:#6290FF;
  margin: 0 80px 400px 30px;
  margin-top: 30px;
  border-radius: 4px;
}

.select-icon::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 12%;
  transform: translateY(-50%);

  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ddd;
  pointer-events: none;
}

.reservation-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
  border: none;
  outline: none;
  cursor: pointer;
}


.reservation-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: -40px;
  color: #fff;
}

.reservation-title {
  width: 100px;
}

.reservation-data {
  margin-top: 10px;
  margin-left: 6%;
}

.reservation-button {
  margin-top: auto;
  background: #383AFE;
  width: 100%;
  border-radius: 0 0 4px 4px;
}


.reservation-btn {
  color: #fff;
  background: transparent;
  border: none;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  width: 100%;
}

.error-message {
  color: red;
  margin-left: 30px;
  margin-top: -20px;
}

.review-card__date {
    font-size: 14px;
    margin-left: auto;
    color: #999;
  }

  .review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }

  .review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 4px;
    padding-bottom: 4px;
  }

  .review-card__stars {
    color: #ffb400;
    font-weight: bold;
  }

  .review-card__user {
    font-weight: 600;
    color: #333;
  }

  .review-card__comment {
    line-height: 1.6;
    color: #555;
    white-space: pre-wrap;
  }

  .reviews {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }

  .review-pagination nav {
    margin:0;
    padding: 0;
  }

  .review-pagination nav div{
    margin: 0;
    align-items: center;
    display: flex;
}

.review-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.review-pagination svg {
  width: 20px;
}

.review-pagination li {
  margin: 0 5px;
}



@media (max-width:768px) {

  .detail-content__shop {
    margin-left: 100px;
  }
  .detail-content__reservation {
    height:40%;
  }

  .reservation-button {
    margin-top: -230px;
  }

  .detail-content__reservation {
    flex: 1;
    margin-left: 20px;
    margin-right: 40px;
  }

  .reservation-select {
    width: 100%;
  }

  .select-icon::after {
    right: 23%;
    transform: translateY(-220%);
    top: 70%;
  }


  .reservation-confirm {
    width: 80%;
  }
  .reservation-group {
    width: 100%;
  }

  .reservation-title {
    margin-left: 26px;
    font-size: 12px;
  }

  .reservation-data {
    font-size: 12px;
    margin-right: auto;
  }

  
}


