/* CART */
.empty-cart {
  cursor: pointer;
  font-size: 12px;
  text-transform: none;
}

article {
  margin: 20px 0px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

article img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

article p {
  text-align: left;
  flex: 2 2 auto;
}

article button {
  background: none;
  font-size: 32px;
  line-height: 16px;
  border: none;
  padding: 0;
  cursor: pointer;
}

.totals {
  flex-direction: column;
  align-items: flex-start;
}

.totals table {
  text-align: left;
  width: 100%;
}
.totals table tr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.totals table tr:first-child, .totals table tr:last-child {
  border-top: 1px solid var(--default-color);
  padding-top: 20px;
}

/* Desktop */
@media (min-width: 900px) {
  main {
    padding-left: calc(calc(100vw - var(--checkout-width)) / 2);
    padding-right: calc(calc(100vw - var(--checkout-width)) / 2);
  }
}
