.cart {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 5px double #000000;
  padding-bottom: 12px;
}

.cart__title {
  font-size: 28px;
  text-transform: uppercase;
}

.cart__meta {
  font-weight: 600;
}

.cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d6d6d6;
}

.cart__item--simple {
  grid-template-columns: 1fr;
}

.cart__item-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cart__item-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart__item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.cart__item-title {
  font-size: 20px;
  font-weight: 600;
}

.cart__item-price {
  font-weight: 600;
}

.cart__item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cart__item-controls--simple {
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}

.cart__item-controls--simple .cart__item-total {
  margin-left: auto;
}

.cart__quantity {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.cart__quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000000;
}

.cart__quantity-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.cart__quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart__quantity-value {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
}

.cart__item-total {
  font-weight: 700;
}

.cart__summary {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 5px double #000000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart__summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}

.cart__checkout {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
}

.cart__empty {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .cart__item {
    grid-template-columns: 1fr;
  }

  .cart__item-image {
    height: 320px;
  }

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

  .cart__item-controls--simple {
    flex-wrap: wrap;
  }

  .cart__item-controls--simple .cart__item-total {
    margin-left: 0;
  }
}
