:root {
  --form-accent-color: #931a1d;
}

body {
  background-color: #F7F7F7;
  font-family: "Averta", sans-serif;
}

header {
  position: relative;
  padding: 5rem 0;
  background-color: #931a1d;
  color: white;
  margin-bottom: 5rem;
}
header .navigation-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
}
header .navigation-bar {
  background-color: white;
  padding: 0.75rem;
}

.btn.btn-primary {
  background-color: #931a1d;
  border-color: #931a1d;
}

.card {
  padding: 2rem;
  border-radius: 15px;
  background-color: #ffffff;
  border: none;
  margin-bottom: 30px;
}
.card > *:last-child {
  margin-bottom: 0;
}
.card.card--empty {
  background: #EEEEEE;
}
.card.card--not-paid {
  background: #931a1d;
  color: #ffffff;
}
.card.card--not-paid .card__title {
  color: #ffffff;
}
.card.card--not-paid .btn-primary {
  width: 100%;
  background: #ffffff;
  border-color: #ffffff;
  color: #931a1d;
}
.card.card--piggy {
  background: #fc5200;
  color: #ffffff;
}
.card.card--piggy .form-group {
  padding-right: 0;
}
.card.card--piggy .col-lg-3 {
  display: none;
}
.card.card--piggy .col-lg-9 {
  width: 100%;
}
.card.card--piggy .col-lg-9 button {
  width: 100%;
  background: #ffffff;
  border-color: #ffffff;
  color: #fc5200;
}
.card.card--piggy .piggy-logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 75px;
}
.card.card--piggy .card__title {
  color: #ffffff;
}
.card .card__title {
  font-weight: 700;
  color: #931a1d;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.cart {
  position: sticky;
  top: 1rem;
}
.cart .cart__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.cart .cart__list li.cart-total {
  font-size: 1.2rem;
}
.cart .cart__list > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #eee;
  padding: 0.35rem 0;
}
.cart .cart__list > li ul {
  list-style: none;
  padding: 0 0 0 0.5rem;
}
.cart .cart__list > li ul li {
  font-size: 0.9rem;
  color: #505050;
}
.cart .cart__list > li button {
  border: none;
  background: none;
  font-size: 0.8rem;
  color: #931a1d;
}

.product-card {
  margin-bottom: 30px;
}
.product-card .product-cart__content {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.product-card .product-cart__content h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.product-card .product-card__info {
  flex: 1;
}
.product-card .product-card__customizer {
  flex: 1;
}
.product-card .product-cart__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #eee;
  border-radius: 0 0 15px 15px;
  padding: 1rem;
}
.product-card .product-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ingredient-list .ingredient {
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
  font-size: 0.9rem;
  background-color: #eee;
  border-radius: 50px;
}
.ingredient-list .ingredient .ingredient__remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e1e1;
  background-color: transparent;
  border-radius: 100px;
  aspect-ratio: 1/1;
  font-size: 0.75rem;
}
.ingredient-list .ingredient .ingredient__remove-btn:hover {
  background-color: red;
}

.section {
  position: relative;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #EEEEEE;
  font-size: 0.9rem;
}
.section.p-0 {
  padding-top: 0.75rem !important;
}
.section .section__title {
  position: absolute;
  top: 0;
  left: 0.75rem;
  font-size: 1rem;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 0.75rem;
  color: #931a1d;
  font-weight: 600;
}
.section *:last-child {
  margin-bottom: 0;
}

.list-group--payment-methods .list-group-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.list-group--payment-methods .list-group-item input {
  visibility: hidden;
  position: absolute;
}
.list-group--payment-methods .list-group-item img {
  height: 40px;
}
.list-group--payment-methods .list-group-item:has(input[type=radio]:checked) {
  background: rgba(147, 26, 29, 0.1);
}

.toggle {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .toggle {
    flex-direction: column;
  }
}
.toggle label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-align: center;
}
.toggle label i {
  color: #931a1d;
}

.toggle input[type=radio] {
  display: none;
}

.toggle input[type=radio]:checked + label {
  background: rgba(147, 26, 29, 0.1);
}

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