body, #app {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}
#app {
  background: #eee;
}
main {
  background: #fff;
  max-width: 600px;
  border-radius: 8px;
  padding: 15px;
}
@media (min-width: 568px) {
  #app {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
  }
  main {
    padding: 25px;
  }
}
h1 {
  font-size: 18px;
  color: #212121;
  text-transform: uppercase;
  text-align: center;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input {
  background: #eee;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 8px;
  padding: 10px 25px;
  font-size: 24px;
}
.info_box, .address_box, .link_box {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.link_box, .description_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.link_box > div, .description_box > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
p.description, .link_box > div > span:first-child, .description_box > div > span:first-child {
  font-size: 13px;
  color: #999;
}
.address_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.address_line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  background: transparent;
}
.address_line:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.address_line span {
  display: block;
  font-size: 13px;
  color: #666;
  padding: 0px 5px;
  background: #fff;
  z-index: 1;
}
.price-btns-box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.price-btns-box button {
  width: calc(100% / 3 - (5px * 2 / 3));
  padding: 10px 15px;
  outline: none;
  background-color: #eee;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  transition: 0.2s;
}
.price-btns-box.store button {
  width: calc(100% / 2 - (5px / 2));
}
.price-btns-box button.active {
  background-color: #262626;
  color: #fff;
}
.packs-btns-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.packs-btns-box > .item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: calc(100% / 2 - (15px / 2));
  transition: 0.2s;
}
@media (min-width: 576px) {
  .packs-btns-box > .item {
    width: calc(100% / 3 - (15px * 2 / 3));
  }
}
.packs-btns-box > .item img {
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  filter: brightness(50%);
  transition: 0.2s;
}
.packs-btns-box > .item span.name {
  font-size: 12px;
  display: block;
  color: #666;
}
.packs-btns-box > .item span.price {
  display: block;
  color: #666;
  font-size: 12px;
}
.packs-btns-box > .item span.price b {
  font-size: 18px;
  color: #262626;
}
.packs-btns-box > .item input {
  display: none;
}
.packs-btns-box > .item.active img {
  filter: none;
}
.packs-btns-box > .item.active span.price b {
  color: green;
}

.image-box {
  aspect-ratio: 190 / 311;
  display: flex;
  align-items: center;
  justify-content: center;
}