@import url("root.css");
.qrwrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 2rem 0 4rem 0;
  overflow-y: auto;
}
.qrwrapperbox {
  width: 30rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .qrwrapperbox {
    width: 35rem;
  }
}
@media (min-width: 768px) {
  .qrwrapperbox {
    width: 40rem;
  }
}
@media (min-width: 1200px) {
  .qrwrapperbox {
    width: 45rem;
  }
}
.qrwrapperbox figure {
  width: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
}
@media (min-width: 576px) {
  .qrwrapperbox figure {
    width: 18rem;
  }
}
@media (min-width: 768px) {
  .qrwrapperbox figure {
    width: 20rem;
  }
}
.categorylinkitem {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.3rem;
  background-color: #fff;
  padding: 1rem;
}
.categorylinkitem h3 {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .categorylinkitem h3 {
    font-size: 1.5rem;
  }
}
.categorylinkitem h3 a {
  color: var(--textColor);
}
.linkicon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--textColor);
  font-size: 1.6rem;
  transition: all 300ms ease;
}
.linkicon:hover {
  transform: rotate(45deg);
}
.categorylinkitem:hover .linkicon {
  transform: rotate(45deg);
}
.categorylinkitem:not(:last-child) {
  margin-bottom: 0.5rem;
}
.productitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 0.3rem;
  background-color: rgba(255, 255, 255, 0.8);
}
.productitem:not(:last-child) {
  margin-bottom: 1rem;
}
.productitem h3 {
  color: var(--textColor);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}
@media (min-width: 576px) {
  .productitem h3 {
    font-size: 1.6rem;
  }
}
.productText {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--textColor);
  opacity: 0.8;
}
@media (min-width: 768px) {
  .productText {
    font-size: 1.5rem;
  }
}
.subtitle {
  font-size: 1.4rem;
  color: #bd9f5f;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 1.5rem;
  }
}
.prices {
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 500;
}
.maincontentstitle {
  margin-bottom: 2rem;
  margin-top: -1rem;
  text-align: center;
}
.maincontentstitle h1 {
  font-family: var(--fontTitle);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  color: #bd9f5f;
}
@media (min-width: 768px) {
  .maincontentstitle h1 {
    font-size: 3.5rem;
  }
}
.qrwrapperlogos {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .qrwrapperlogos {
    width: 50rem;
    column-gap: 1rem;
    flex-direction: row;
    row-gap: 0;
  }
}
.qrwrapperlogos .logos {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 300ms ease;
  width: 20rem;
}
@media (min-width: 768px) {
  .qrwrapperlogos .logos {
    width: 30rem;
  }
}
.qrwrapperlogos .logos:hover {
  background-color: #eaeaea;
}
.multiprice {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .multiprice {
    grid-template-columns: repeat(4, 1fr);
  }
}
.multipriceitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
.multipriceitem span {
  font-size: 1.2rem;
  font-weight: 700;
}
.multipriceitem p {
  font-size: 1.4rem;
  font-weight: 500;
}
