.cart-page {
  padding: 32px 0 60px;
  background: #f8f7fb;
}

.cart-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cart-page__title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  color: #231638;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  font-size: 13px;
}

.cart-table thead {
  background: #faf7ff;
}

.cart-table thead th {
  padding: 16px 28px 14px;
  text-align: left;
  font-weight: 600;
  color: #8a8298;
  border-bottom: 1px solid #eee7fb;
}

.cart-table tbody td {
  padding: 18px 28px;
  border-bottom: 1px solid #f3edf9;
  vertical-align: middle;
  color: #3b3446;
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

/* первая колонка */

.cart-name {
  width: 40%;
}

.cart-name-main {
  font-size: 13px;
  font-weight: 600;
  color: #231638;
}

.cart-name-sub {
  margin-top: 4px;
  font-size: 11px;
  color: #9a92ad;
}

/* количество */

.cart-qty {
  width: 160px;
  text-align: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f7f0ff;
  border-radius: 8px;
  padding: 2px 4px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: none;
  background: rgba(153, 95, 243, 0.22);
  color: #6e2fd4;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.qty-input {
  width: 30px;
  height: 22px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 13px;
  color: #3b3446;
}

/* цена и сумма */

.cart-price,
.cart-sum {
  white-space: nowrap;
  font-size: 13px;
}

/* крестик удаления */

.cart-remove {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: none;
  background: rgba(153, 95, 243, 0.18);
  color: #a46be9;
  font-size: 14px;
  cursor: pointer;
}
