/*
  CART PAGE STYLES
  ==================
*/

.cart-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 24px;
}

.cart-page h1 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: #372345;
  margin: 0 0 24px 0;
}

.cart-page__empty {
  font-family: var(--font-body);
  color: #372345;
  opacity: 0.7;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e6d9e4;
  font-family: var(--font-body);
  color: #372345;
}

.cart-item__info h3 {
  font-size: 1rem;
  margin: 0 0 4px 0;
  font-weight: normal;
}

.cart-item__info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

.cart-item__remove {
  background: none;
  border: none;
  color: #a33;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.cart-page__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #372345;
  padding: 20px 0;
  font-weight: bold;
}

.cart-page__checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-decoration: none;
  padding: 14px;
  background-color: #553d66;
  color: #ffffff;
  border-radius: 999px;
}

.cart-page__checkout-button:hover {
  background-color: #443152;
}
