.catalog-store-name {
  display: block;
  font-size: 26px;
  margin-top: 15px;
  padding: 5px 0;
  text-align: center;
}

.catalog-store-logo {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 80%;
  width: 200px;
}

.catalog-categories-sumary {
  margin: 0 -15px;
  overflow-x: auto;
  padding: 5px 15px;
  position: sticky;
  top: 0;
  white-space: nowrap;
  width: calc(100% + 30px);
}
.catalog-categories-sumary::-webkit-scrollbar {
  display: none;
}
.catalog-categories-sumary .catalog-categories-sumary-item {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  margin-right: 2px;
  padding: 10px 20px;
}
.catalog-categories-sumary .catalog-categories-sumary-item:first-of-type {
  border-radius: 3px 0 0 3px;
}
.catalog-categories-sumary .catalog-categories-sumary-item:last-of-type {
  border-radius: 0 3px 3px 0;
}

.catalog-category {
  display: block;
  font-size: 24px;
  margin-top: 45px;
  margin-bottom: 15px;
  scroll-margin-top: 75px;
  text-align: center;
}

.catalog-product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  margin-bottom: 25px;
}
.catalog-product .catalog-product-left-side.catalog-product-left-side, .catalog-product .catalog-product-right-side.catalog-product-left-side {
  grid-column: 1/2;
  text-align: left;
}
.catalog-product .catalog-product-left-side.catalog-product-right-side, .catalog-product .catalog-product-right-side.catalog-product-right-side {
  grid-column: 2/2;
  text-align: right;
}
.catalog-product .catalog-product-left-side > *, .catalog-product .catalog-product-right-side > * {
  display: block;
}
.catalog-product .catalog-product-name {
  font-size: 16px;
  font-weight: bold;
}
.catalog-product .catalog-product-description {
  font-size: 14px;
}
.catalog-product .catalog-product-peopleserved {
  font-size: 12px;
  font-weight: bold;
}
.catalog-product .catalog-product-price {
  font-size: 16px;
  font-weight: bold;
}
.catalog-product .catalog-product-price::before {
  content: "R$";
  font-size: 13px;
  margin-right: 4px;
  position: relative;
  top: -2px;
  z-index: -1;
}
.catalog-product .catalog-product-photo {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  height: 100px;
  width: 100px;
}

/*# sourceMappingURL=Catalog.css.map */
