:root {
  --font-primary: "Funnel Display", sans-serif;
  --font-secondary: "Open Sans", sans-serif;
  --color-primary: #4caf50;
  --color-primary-light: #8bc34b;
  --color-primary-dark: #388e3c;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --color-macro-carbs: rgb(95, 66, 13);
  --color-macro-protein: rgb(35, 115, 172);
  --color-macro-fats: rgb(195, 195, 29);
  --color-macro-calories: #c12222;
  --line: 1px solid var(--color-grey-light-2);
  --shadow-dark-very-small: 0 .5rem 1.5rem rgba(0, 0, 0, .3);
  --shadow-dark-small: 0 1rem 3rem rgba(0, 0, 0, .3);
  --shadow-dark: 0 2rem 4rem rgba(0, 0, 0, .3);
  --shadow-dark-large: 0 1rem 6rem rgba(0, 0, 0, .3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, .06);
  --text-shadow-very-small: .1rem .1rem .2rem rgba(0, 0 ,0 , 0.5);
  --text-shadow-small: .3rem .3rem .3rem rgba(0, 0, 0, 0.5);
  --text-shadow: .5rem .5rem .5rem rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
}
* > a {
  text-decoration: none;
}

*, *::after, *::before {
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-dark-1);
  background-image: linear-gradient(to right bottom, var(--color-grey-light-1), var(--color-grey-light-2));
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.header, .footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  width: 100%;
  background-image: linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));
  background-size: cover;
  background-repeat: no-repeat;
}

.header {
  border-bottom: var(--line);
}

.footer {
  border-top: var(--line);
}

.menu-container {
  padding: 5rem;
  background-image: linear-gradient(to right bottom, var(--color-grey-light-1), var(--color-grey-light-2));
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 930px) {
  .menu-container {
    padding: 2rem;
  }
}
@media only screen and (max-width: 760px) {
  .menu-container {
    padding: 1rem;
  }
}

.menu-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  justify-items: center;
  row-gap: 5rem;
  margin: 3rem 0;
}
@media only screen and (max-width: 1350px) {
  .menu-item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 930px) {
  .menu-item-grid {
    row-gap: 3rem;
  }
}
@media only screen and (max-width: 760px) {
  .menu-item-grid {
    grid-template-columns: 1fr;
  }
}

.viewport-height-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.decal-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/plant_decal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  width: 100%;
  gap: 3rem;
}
@media only screen and (max-width: 930px) {
  .page-container {
    flex-direction: column;
    height: 100%;
    padding: 2rem 0;
  }
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
  width: 50rem;
}
@media only screen and (max-width: 930px) {
  .profile-info {
    flex-direction: column;
    gap: 3rem;
    height: 100%;
    width: 90%;
    padding: 2rem 0;
  }
}

.contact {
  width: 70rem;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-view {
  height: 80vh;
}

.header-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 5%;
  gap: 0.5rem;
}
@media only screen and (max-width: 1100px) {
  .header-brand {
    gap: 1rem;
  }
}
.header-brand__name {
  text-transform: uppercase;
  font-size: 4rem;
  letter-spacing: 0.7rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-grey-light-1);
  text-shadow: var(--text-shadow);
}
@media only screen and (max-width: 1350px) {
  .header-brand__name {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 1100px) {
  .header-brand__name {
    gap: 2.8rem;
  }
}
@media only screen and (max-width: 760px) {
  .header-brand__name {
    font-size: 2.5rem;
  }
}
.header-brand__name:hover {
  color: var(--color-grey-light-2);
}

.logo-img {
  height: 4.5rem;
}

.user-nav {
  display: flex;
  align-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 930px) {
  .user-nav {
    display: none;
  }
}

.nav-button-dropdown {
  display: none;
}
@media only screen and (max-width: 930px) {
  .nav-button-dropdown {
    display: block !important;
  }
}

.icon-container {
  display: flex;
  align-items: center;
  position: absolute;
  right: 3%;
  gap: 2rem;
}
.icon-container__cart {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 3rem;
  position: absolute;
  bottom: -0.5rem;
  left: -2rem;
  padding: 0.6rem 0.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  background-color: var(--color-grey-light-1);
  color: var(--color-primary);
}

.dropdown-menu {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
}
.dropdown-menu .dropdown-item {
  padding: 1rem 2rem;
}

.copyright-text {
  position: absolute;
  left: 5%;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-grey-light-1);
}
@media only screen and (max-width: 1100px) {
  .copyright-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 930px) {
  .copyright-text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 760px) {
  .copyright-text {
    left: 5%;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 510px) {
  .copyright-text {
    left: 2%;
    font-size: 0.9rem;
  }
}

.nav-button {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
  width: 20rem;
  border-radius: 100px;
  padding: 0.5rem 3rem;
  background-color: var(--color-grey-light-1);
  color: var(--color-primary);
  box-shadow: var(--shadow-dark-small);
  transition: all 0.1s ease;
  transform: scale(1);
}
.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-grey-light-1);
  transform: scale(1.05);
  font-weight: 700;
}
@media only screen and (max-width: 1350px) {
  .nav-button {
    font-size: 2rem;
    width: 18rem;
  }
}
@media only screen and (max-width: 1100px) {
  .nav-button {
    font-size: 1.6rem;
    width: 14rem;
  }
}

.main-button {
  display: inline-block;
  border-radius: 100px;
  padding: 1.8rem 3rem;
  z-index: 10;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: 400;
  font-size: 2.5rem;
  background-image: linear-gradient(to right bottom, rgb(139, 195, 75), rgb(56, 142, 60));
  color: #FFF;
  box-shadow: var(--shadow-dark);
  transform: translateY(0);
  opacity: 1;
  transition: all 0.1 ease;
  animation: moveInBottom 1.1s ease-out 0.1s;
}
.main-button:hover {
  background-color: rgba(76, 175, 80, 0.8);
  color: var(--color-grey-light-1);
  font-weight: 700;
  text-shadow: var(--text-shadow-small);
  box-shadow: var(--shadow-dark-large);
  transform: translateY(-0.5rem);
}

.icon-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 2.2rem;
  border-radius: 50%;
  background-color: var(--color-grey-light-1);
  box-shadow: var(--shadow-dark-small);
  transition: all 0.1s ease;
}
@media only screen and (max-width: 510px) {
  .icon-link {
    padding: 1.6rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}
.icon-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.icon-link:hover i {
  color: var(--color-grey-light-1);
}
.icon-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
}
@media only screen and (max-width: 510px) {
  .icon-link i {
    font-size: 1.6rem;
  }
}

.custom-popover {
  display: flex;
  flex-direction: column;
  width: 50rem;
  border-color: var(--color-grey-light-1);
  border-radius: 0.5rem;
}
.custom-popover .popover-header {
  font-family: var(--font-primary);
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-image: linear-gradient(to left bottom, var(--color-primary-light), var(--color-primary-dark));
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-grey-light-1);
}
.custom-popover .popover-body {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.1rem;
  text-align: center;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-image: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary));
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-grey-light-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.custom-popover .popover-body .item-layout {
  display: flex;
  height: 6rem;
  gap: 1rem;
  width: 100%;
}
.custom-popover .popover-body .item-layout__image {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 0.4rem;
}
.custom-popover .popover-body .item-layout__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  font-weight: 700;
  text-shadow: var(--text-shadow-very-small);
}
.custom-popover .popover-body .item-layout__info-name {
  text-align: start;
}
.custom-popover .popover-body .item-layout__info-type {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
.custom-popover .popover-body .item-layout__info-type-portion {
  font-weight: 600;
}
.custom-popover .popover-body .item-layout__info-type-actions {
  display: flex;
  gap: 1rem;
}
.custom-popover .popover-body .item-layout__info-type-actions-value {
  letter-spacing: 0.1rem;
}
.custom-popover .popover-body .item-layout__info-type-actions-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  padding: 1.1rem;
  background-color: var(--color-grey-light-1);
  color: var(--color-grey-dark-1);
  text-shadow: none;
}
.custom-popover .popover-body .item-layout__info-type-actions-remove:hover {
  background-color: var(--color-grey-light-3);
}
.custom-popover .popover-body .item-layout__info-type-actions-price {
  width: 4rem;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 510px) {
  .custom-popover .popover-body .nav-button {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}

.landing-image {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  background-image: url("https://images.stockcake.com/public/9/f/1/9f156348-4b50-4ffb-9dda-d3a00537a4c9/healthy-meal-prep-stockcake.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.landing-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right bottom, rgba(139, 195, 75, 0.4), rgba(56, 142, 60, 0.4));
  z-index: 1;
}
.landing-image__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.landing-image__content .subtitle {
  font-family: var(--font-primary);
  font-size: 4.2rem;
  font-weight: 200;
  letter-spacing: 1rem;
  text-shadow: var(--text-shadow);
  text-transform: uppercase;
  text-wrap: pretty;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--color-grey-light-1);
  z-index: 2;
  animation: moveInTop 1s ease-out 0.1s;
  animation-fill-mode: backwards;
}

.index-title {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 200;
  text-transform: uppercase;
  text-wrap: pretty;
  text-align: center;
  letter-spacing: 1rem;
  margin-bottom: 2rem;
  color: var(--color-grey-dark-1);
}
@media only screen and (max-width: 510px) {
  .index-title {
    font-size: 2.6rem;
    letter-spacing: 0.5rem;
  }
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem;
}
@media only screen and (max-width: 1350px) {
  .benefits {
    padding: 2rem 2rem;
  }
}
@media only screen and (max-width: 510px) {
  .benefits {
    padding: 0.5rem 0.5rem;
  }
}
.benefits__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 2rem;
  grid-column-gap: 1rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 1100px) {
  .benefits__showcase {
    grid-template-columns: 1fr;
  }
}
.benefits__showcase-item {
  display: flex;
  align-items: start;
  gap: 1.8rem;
}
.benefits__showcase-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-primary);
  background-color: var(--color-grey-light-1);
  box-shadow: var(--shadow-dark-very-small);
}
@media only screen and (max-width: 510px) {
  .benefits__showcase-item i {
    font-size: 1.4rem;
    padding: 1.3rem;
  }
}
.benefits__showcase-item-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.benefits__showcase-item-content h3 {
  font-size: 2rem;
  letter-spacing: 0.7rem;
  text-transform: uppercase;
  color: var(--color-grey-dark-2);
}
@media only screen and (max-width: 1350px) {
  .benefits__showcase-item-content h3 {
    font-size: 1.5rem;
    letter-spacing: 0.4rem;
  }
}
@media only screen and (max-width: 1100px) {
  .benefits__showcase-item-content h3 {
    font-size: 3rem;
    letter-spacing: 0.7rem;
  }
}
@media only screen and (max-width: 760px) {
  .benefits__showcase-item-content h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 510px) {
  .benefits__showcase-item-content h3 {
    font-size: 2.2rem;
    letter-spacing: 0.4rem;
  }
}
.benefits__showcase-item-content p {
  font-size: 1.4rem;
  color: var(--color-grey-dark-3);
}
@media only screen and (max-width: 1100px) {
  .benefits__showcase-item-content p {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 760px) {
  .benefits__showcase-item-content p {
    font-size: 1.5rem;
  }
}

.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 3rem;
}
@media only screen and (max-width: 510px) {
  .how-it-works {
    padding: 0 0.5rem;
  }
}
.how-it-works__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 930px) {
  .how-it-works__container {
    flex-direction: column;
    gap: 2rem;
  }
  .how-it-works__container:last-child {
    margin-bottom: 3rem;
  }
}
.how-it-works__container-steps {
  position: relative;
  width: 30%;
}
@media only screen and (max-width: 930px) {
  .how-it-works__container-steps {
    width: 90%;
  }
}
.how-it-works__container-steps__number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 10;
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-grey-light-1);
  background-color: var(--color-primary-dark);
}
.how-it-works__container-steps__card {
  display: flex;
  flex-direction: column;
  height: 40rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background-color: var(--color-grey-light-1);
  border: 1px solid var(--color-grey-light-2);
  box-shadow: var(--shadow-dark-small);
}
.how-it-works__container-steps__card__title {
  position: relative;
  height: 70%;
  width: 100%;
  overflow: hidden;
  border-bottom: var(--line);
}
.how-it-works__container-steps__card__title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-it-works__container-steps__card__title h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  z-index: 10;
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--color-grey-light-1);
  text-shadow: var(--text-shadow-small);
  text-align: center;
}
.how-it-works__container-steps__card p {
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
  color: var(--color-grey-dark-3);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category-container__title {
  text-align: center;
  font-size: 5.5rem;
  font-weight: 400;
  letter-spacing: 0.4rem;
  color: var(--color-primary-dark);
}
.category-container__decal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.category-container__decal .horizontal-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.category-container__decal .horizontal-lines hr {
  height: 0.5rem;
  background-image: linear-gradient(to right bottom, rgb(139, 195, 75), rgb(56, 142, 60));
  opacity: 1;
}
.category-container__decal .category_badge {
  position: relative;
}
.category-container__decal .category_badge__frame {
  height: 10rem;
  width: 10rem;
  fill: var(--color-primary-dark);
}
.category-container__decal .category_badge__category-icon {
  height: 5rem;
  width: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  width: 9rem;
  background-color: transparent;
  color: var(--color-grey-dark-1);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (min-width: 760px) and (max-width: 930px) {
  .custom-pill {
    font-size: 0.9rem;
  }
}

.item-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 40rem;
  height: 55rem;
}
@media only screen and (min-width: 760px) and (max-width: 930px) {
  .item-container {
    width: 35rem;
    height: 50rem;
  }
}
.item-container__item-image {
  position: relative;
  height: 50%;
  width: 100%;
  overflow: hidden;
  border-bottom: var(--line);
}
.item-container__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-container__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  text-align: center;
  height: 10%;
  padding: 1rem 0.3rem;
  color: var(--color-grey-dark-1);
  border-bottom: var(--line);
}
.item-container__macros {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 10%;
  gap: 0.5rem;
  padding: 1rem;
  font-style: italic;
  border-bottom: var(--line);
}
.item-container__macros-carbs {
  border: 2px solid var(--color-macro-carbs);
}
.item-container__macros-protein {
  border: 2px solid var(--color-macro-protein);
}
.item-container__macros-fats {
  border: 2px solid var(--color-macro-fats);
}
.item-container__macros-calories {
  border: 2px solid var(--color-macro-calories);
}
.item-container__item-description {
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--color-grey-dark-2);
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-y: auto;
  height: 15%;
}
.item-container__portion-container {
  display: inline flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 10%;
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
  color: var(--color-grey-dark-3);
}
@media only screen and (min-width: 760px) and (max-width: 930px) {
  .item-container__portion-container {
    font-size: 1.2rem;
  }
}
.item-container__portion-container-option {
  display: flex;
  align-items: center;
}
.item-container__portion-container-option input[type=radio] {
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
  margin-right: 0.3rem;
}
.item-container__portion-container-option input[type=radio]:checked {
  accent-color: var(--color-primary);
}
.item-container__portion-container-option input[type=radio]:focus {
  outline: none;
  box-shadow: none;
}
.item-container__portion-container-option__name {
  font-weight: 600;
  color: var(--color-grey-dark-1);
}
.item-container__portion-container-option__price {
  position: relative;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.item-container__portion-container-option__price:has(.item-container__portion-container-option__price-discount) {
  text-decoration: line-through;
  color: var(--color-grey-dark-1);
}
.item-container__portion-container-option__price-discount {
  position: absolute;
  top: 1.3rem;
  left: 1.2rem;
  font-weight: 600;
  color: rgb(210, 13, 13);
}
.item-container__cart-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0;
  height: 15%;
}
.item-container__cart-button a {
  border-radius: 100px;
  padding: 1rem 3rem;
  color: var(--color-grey-light-1);
  background-color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.5rem;
  transition: all 0.1s ease;
  transform: scale(1);
}
.item-container__cart-button a:hover {
  background-color: var(--color-primary-light);
  transform: scale(1.1);
}
.item-container__cart-button a:active {
  background-color: var(--color-primary-dark);
  transform: scale(0.95);
  box-shadow: var(--shadow-dark-very-small);
}

.card-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2.5rem;
}
.card-form__form {
  display: flex;
  flex-direction: column;
}
.card-form__form-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}
.card-form__form-section label {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.card-form__form-section input {
  height: 4rem;
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--color-grey-light-4);
  border-radius: 0.8rem;
}
.card-form__row-section {
  display: flex;
  gap: 1rem;
}
.card-form .main-button {
  font-family: var(--font-primary);
  font-size: 3rem;
  margin: auto;
  padding: 0.3rem 5rem;
  border: none;
  box-shadow: var(--shadow-dark-small);
}

.auth-form {
  width: 60rem;
}
.auth-form form .main-button {
  font-size: 2.5rem;
}

.info-form {
  width: 40rem;
  height: 100%;
}
@media only screen and (max-width: 930px) {
  .info-form {
    width: 90%;
  }
}

#form-errors {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(211, 14, 14);
}

.straight-card {
  background-color: var(--color-grey-light-1);
  border: 1px solid var(--color-grey-light-2);
  box-shadow: var(--shadow-dark-small);
  height: 90%;
}

.round-card {
  background-color: var(--color-grey-light-1);
  border-radius: 1.2rem;
  border: 1px solid var(--color-grey-light-2);
  box-shadow: var(--shadow-dark-small);
}

.card-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: 600;
  padding-top: 0.5rem;
}

.order {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60rem;
  color: var(--color-grey-dark-1);
  box-shadow: var(--shadow-dark-very-small);
}
@media only screen and (max-width: 930px) {
  .order {
    width: 90%;
  }
}
.order__total {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0.5rem 0;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  border-top: 1px solid var(--color-grey-light-4);
}

.cart-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  padding: 2rem;
  width: 95%;
  height: 85%;
  overflow-y: auto;
  flex: 1;
}
.cart-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: 20%;
  width: 100%;
}
.cart-list__item-image {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
}
@media only screen and (max-width: 510px) {
  .cart-list__item-image {
    width: 6rem;
    height: 6rem;
  }
}
.cart-list__item-info-name {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
@media only screen and (max-width: 760px) {
  .cart-list__item-info-name {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 510px) {
  .cart-list__item-info-name {
    font-size: 1.1rem;
  }
}
.cart-list__item-info-portion {
  display: flex;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-style: italic;
}
@media only screen and (max-width: 760px) {
  .cart-list__item-info-portion {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 510px) {
  .cart-list__item-info-portion {
    font-size: 1rem;
  }
}
.cart-list__item-price {
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 550;
}
@media only screen and (max-width: 510px) {
  .cart-list__item-price {
    font-size: 1.4rem;
  }
}

.payment-info {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  gap: 3rem;
  padding: 2.5rem;
}
.payment-info__title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.payment-info__description {
  display: inline flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.profile-details {
  display: flex;
  flex-direction: column;
  height: 47.5%;
  transition: all 0.1 ease;
  animation: popInTop 1.5s ease-out 0.2s;
}

.past-orders {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 100%;
  overflow-x: auto;
  font-weight: 600;
  color: var(--color-primary-dark);
}
@media only screen and (max-width: 930px) {
  .past-orders {
    padding: 2rem 0;
  }
}
.past-orders__order {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: inherit;
  padding: 3rem;
  flex-shrink: 0;
  transform: translateY(0rem);
  transition: all 0.1 ease;
}
.past-orders__order:hover {
  font-size: 2.2rem;
  color: var(--color-primary-light);
  transform: translateY(-0.5rem);
}

.no-orders-message {
  display: inline flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3.5rem;
  color: inherit;
}

.macro-graph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow-y: hidden;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 930px) {
  .macro-graph {
    padding: 2rem 0;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  gap: 2rem;
  padding: 2.5rem;
}
.contact-info__section-title {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 510px) {
  .contact-info__section-title {
    font-size: 2.6rem;
  }
}
.contact-info__section-description {
  font-size: 1.8rem;
  overflow: hidden;
}
@media only screen and (max-width: 510px) {
  .contact-info__section-description {
    font-size: 1.4rem;
  }
}
.contact-info__section-description span a {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.contact-info__section-description span a:hover {
  color: var(--color-primary-light);
}
.contact-info__section-description .email {
  color: var(--color-primary-dark);
  font-weight: 700;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popInBottom {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popInTop {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes snapInTop {
  0% {
    opacity: 0;
    transform: translateY(0rem);
  }
  100% {
    opacity: 1;
    transform: translateY(-0.5rem);
  }
}

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