* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(20, 50%, 98%);
}

@media (max-width: 900px) {
  .product-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 568px) {
  .product-container {
    width: 90%;
  }
}

.product-sub-container {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  gap: 15px;
}
@media (max-width: 900px) {
  .product-sub-container {
    flex-direction: column;
  }
}

.product-container.background-shadow {
  background-color: black;
}

.hidden {
  display: none !important;
}

.active {
  display: block;
}

.product-section h3 {
  font-size: 2rem;
  color: hsl(14, 65%, 9%);
}

.cart-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .cart-selection {
    grid-template-columns: 1fr;
  }
}

.mobile {
  display: none;
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 567px) {
  .mobile {
    display: block;
  }
}

.tablet {
  display: none;
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 568px) and (max-width: 900px) {
  .tablet {
    display: block;
  }
}

.image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-section .image .desktop {
  display: grid;
  place-content: center;
  width: 100%;
  border-radius: 10px;
  display: none;
}
@media (min-width: 901px) {
  .image-section .image .desktop {
    display: block;
  }
}
.image-section .image.active-border {
  border: 2px solid hsl(14, 86%, 42%);
  border-radius: 10px;
}
.image-section .text {
  padding: 0.6rem 0.8rem;
  position: relative;
  top: -30px;
  font-weight: bold;
}
.image-section .text .cart {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.6rem 0.8rem;
  border: 1px solid hsl(14, 65%, 9%);
  border-radius: 20px;
  background-color: hsl(20, 50%, 98%);
  cursor: pointer;
}
.image-section .text .cart:hover {
  color: hsl(14, 86%, 42%);
  border: 2px solid hsl(14, 86%, 42%);
}
.image-section .text .cart p {
  font-size: 0.9rem;
}

.increment {
  background-color: hsl(14, 86%, 42%);
  display: flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border: 1px solid hsl(14, 65%, 9%);
  border-radius: 20px;
  gap: 30px;
}
.increment .subtract, .increment .add {
  background-color: transparent;
  color: hsl(20, 50%, 98%);
  border: 1px solid hsl(20, 50%, 98%);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 16px;
  width: 20px;
  height: 20px;
}
.increment .subtract:hover, .increment .add:hover {
  background-color: hsl(20, 50%, 98%);
  color: hsl(14, 86%, 42%);
  cursor: pointer;
}
.increment .number {
  font-weight: bold;
  font-size: 1.2rem;
}

.category {
  font-weight: bold;
  margin-top: -30px;
  color: hsl(7, 20%, 60%);
}

.price {
  font-weight: bold;
  color: hsl(14, 86%, 42%);
}

.cart-output {
  width: 40%;
  padding: 1rem;
  border-radius: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1040px) {
  .cart-output {
    width: 70%;
  }
}
@media (max-width: 900px) {
  .cart-output {
    width: 100%;
  }
}
.cart-output b {
  font-size: 2rem;
  color: hsl(14, 86%, 42%);
  margin-bottom: 30px;
}
@media (max-width: 1040px) {
  .cart-output b {
    font-size: 1.6rem;
  }
}
.cart-output .empty {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.cart-output .empty img {
  width: 60%;
}

.product-output {
  margin-bottom: 20px;
}
.product-output section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  padding-top: 20px;
  gap: 10px;
}
.product-output section:first-child {
  padding-top: 0;
}
.product-output section .item-name {
  font-size: 0.9rem;
  font-weight: bold;
}
.product-output section .calculations {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  margin-top: 10px;
  color: hsl(14, 86%, 42%);
}
.product-output section .calculations .number-clicked {
  color: hsl(14, 86%, 42%);
  font-weight: bolder;
}
.product-output section .calculations .total-amount {
  font-weight: bold;
}
.product-output section .right {
  border: 1px solid hsl(14, 86%, 42%);
  color: hsl(14, 86%, 42%);
  border-radius: 50%;
  width: 20px;
  display: grid;
  place-content: center;
  padding: 0.2rem;
}

.cancel {
  cursor: pointer;
}

.quantity-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.quantity-output .quantity-total {
  font-size: 2rem;
  font-weight: bold;
}

.neutral {
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: hsl(13, 31%, 94%);
  padding: 0.5rem;
  border-radius: 10px;
  margin-top: 20px;
}
.neutral p {
  font-size: 13px;
}

.confirm {
  background-color: hsl(14, 88%, 47%);
  border: transparent;
  color: hsl(20, 50%, 98%);
  width: 100%;
  padding: 0.7rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}
.confirm:hover {
  background-color: hsl(14, 86%, 42%);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.order-container {
  background-color: white;
  width: 30%;
  padding: 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  z-index: 1000;
}
@media (max-width: 1040px) {
  .order-container {
    width: 40%;
  }
}
@media (max-width: 860px) {
  .order-container {
    width: 50%;
    min-width: 300px;
    padding: 20px;
  }
}
.order-container .order-confirmation .checked-img {
  width: 40px;
}
.order-container .order-confirmation h3 {
  font-size: 2rem;
}
.order-container .order-confirmation .item-name {
  font-size: 0.9rem;
  font-weight: bold;
  color: hsl(14, 65%, 9%);
}
@media (max-width: 400px) {
  .order-container .order-confirmation .item-name {
    font-size: 0.8rem;
  }
}
.order-container .order-confirmation .left {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.order-container .order-confirmation .calculations {
  font-size: 0.9rem;
  color: hsl(14, 86%, 42%);
}
.order-container .order-confirmation .calculations .number-clicked {
  color: hsl(14, 86%, 42%);
  font-weight: bolder;
}
.order-container .order-confirmation .calculations .total-amount {
  font-weight: bold;
}
.order-container .order-confirmation .calculations .content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 400px) {
  .order-container .order-confirmation .calculations .content {
    gap: 15px;
  }
}
.order-container .order-confirmation .quantityTotal {
  font-size: 2rem;
  font-weight: bold;
}
.order-container .start-btn {
  background-color: hsl(14, 88%, 47%);
  border: transparent;
  color: hsl(20, 50%, 98%);
  width: 100%;
  padding: 0.7rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}
.order-container .start-btn:hover {
  background-color: hsl(14, 86%, 42%);
}

.left-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  padding-top: 20px;
  gap: 10px;
}
.left-container:first-child {
  padding-top: 0;
}
.left-container img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.confirm-content {
  background-color: hsl(13, 31%, 94%);
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}
@media (max-width: 400px) {
  .confirm-content {
    padding: 8px;
  }
}

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