.shop {
  box-sizing: border-box;
  padding: 4em 8em;
  text-align: center;
  gap: 4em;
  display: grid;
}
.shop-title {
  font-size: 6em;
}
.shop-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}
.card {
  width: 30em;
  height: fit-content;
  overflow: hidden;
  border: 1px #000 solid;
  border-radius: 2em;
}
.card-img {
  width: 100%;
  transform: scale(1.5);
  transition: all 0.2s;
  display: block;
}
.card-img:hover {
  transform: scale(1.7);
}
.card-info {
  position: relative;
  z-index: 2;
  padding: 1em 0;
  background-color: aliceblue;
  gap: 0.8em;
  display: grid;
}
.card-title {
  position: relative;
  z-index: 1;
  padding: 0.5em;
  font-size: 2em;
  background-color: aliceblue;
}
.card-delivery {
  font-size: 1.5em;
  font-weight: 600;
}
.card-volume {
  font-size: 2em;
  text-align: left;
  padding: 0 0.8em;
}
.card-prices {
  padding: 0 0.8em;
  align-items: baseline;
  justify-content: center;
  gap: 0.4em;
  display: flex;
}
.card-prices > * {
  width: fit-content;
  padding: 0.1em 0.5em;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  background-color: green;
  border-radius: 0.5em;
}
.card-prices h3 {
  padding: 0;
  background: none;
  color: #000;
}
.card-price-old {
  height: fit-content;
  background-color: #b30e0e;
  text-decoration: line-through;
  filter: opacity(0.8);
  font-size: 1.5em;
}
.card-form {
  padding: 0 2em;
  justify-content: center;
  gap: 0.5em;
  grid-template-columns: 1fr;
  display: grid;
}
.card-inpt {
  height: 1.2em;
  width: 4em;
  padding: 0.1em 0.3em;
  border: 0.1em solid #000;
  border-radius: 100vw;
  text-align: center;
  font-size: 2em;
}
.card-btn {
  width: 100%;
  padding: 0.6em 0;
  border-radius: 0.5em;
  color: aliceblue;
  font-weight: 600;
  font-size: 1.6em;
}
.card-desc-top {
  padding: 0 0.8em;
  font-size: 1.5em;
  align-items: center;
  gap: 0.2em;
  display: flex;
  cursor: pointer;
}
.card-desc-top span {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 0;
  transform: rotateZ(180deg);
  transition: all 0.3s;
}
.card-desc-top span.top {
  transform: rotateZ(0deg);
}
.card-desc {
  height: 100%;
  overflow: hidden;
  padding: 0.8em;
  text-align: left;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 100%;
  transition: all 1s;
}
.card-desc.hidden {
  height: 0;
  padding: 0;
}
@media (max-width: 720px) {
  .shop {
    padding: 4em 0;
  }
  .shop-title {
    font-size: 10em;
  }
  .shop-list {
    font-size: 1.2vw;
  }
}
@media (max-width: 600px) {
  .shop-list {
    font-size: 2vw;
  }
  .card {
    width: 95%;
    font-size: 3.2vw;
  }
}
