.wrap-maps {
  position: relative;
  width: 100%;
  height: 65vh;
  border-radius: 15px;
  overflow: hidden;
}
#map {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.aside-list {
  position: absolute;
  right: 0;
  width: 320px;
  height: 100%;
  background: rgb(28.35, 28.35, 28.35);
  padding: 1rem;
  overflow-y: auto;
  z-index: 1000;
}
.list-title {
  color: red;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.list-books {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.book-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  background: #3b3e46;
  text-decoration: none;
}
.book-card:hover {
  background: #474B54;
}
.book-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.book-info p {
  font-size: 13px;
  color: #9D9D9D;
}
.single-card {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 21rem;
  height: 35rem;
  background: #F2F2F2;
  color: #262424;
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  z-index: 2000;
}
.single-card.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}
.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: #262424;
  cursor: pointer;
}
.single-card-image {
  width: 100%;
  height: 280px;
  margin: 0px auto;
  border-radius: 12px;
  margin-top: 10px;
  overflow: hidden;
}
.single-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-card-title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px
}
.address {
  font-size: 16px;
  opacity: 0.6;
  margin-bottom: auto;
  overflow: hidden;
}
.single-btn-group {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-route {
  width: 40%;
  padding: 8px 14px;
  background: #000;
  color: #F2F2F2;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  text-align: center;
  border: none;
  cursor: pointer;
}
.single-price {
  font-size: 1.25rem;
  font-weight: bold;
}
.hidden {
  display: none;
}
@media (max-width: 768px) {

  .aside-list {
    display: none;
    width: 100%;
    height: 40%;
    bottom: 0;
    top: auto;
    border-radius: 20px 20px 0 0;
  }
  .single-card {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 25rem;
    border-radius: 15px 15px 0 0;
    padding: 1.2rem;
  }
  .single-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px
  }
  .address {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .btn-route {
  width: 30%;
  }
}