.cart-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.cart-items {
  flex: 0 0 66%;
  width: 66%;
}
.cart-summary {
  flex: 1;
  background-color: #f5f5f5;
  padding: 30px;
  height: fit-content;
}

table#cart-table {
  width: 100%;
}

table#cart-table thead tr th:first-child {
  text-align: left;
}

table#cart-table thead tr th:last-child {
  text-align: right;
}

table#cart-table thead tr th {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgb(235, 235, 235);
  padding: 18px 0;
  color: #000;
  text-align: center;
}

table#cart-table tbody tr td {
  padding: 18px 10px;
  text-align: center;
  border-bottom: 1px solid rgb(235, 235, 235);
}

table#cart-table tbody tr td:first-child {
  text-align: left;
  padding-left: 0;
}

table#cart-table tbody tr td:last-child {
  text-align: right;
  padding-right: 0;
}

.info-product {
  display: flex;
}

.product-image {
  width: 80px;
  flex: 0 0 80px;
  margin-right: 20px;
}

.product-image img {
  max-width: 100%;
}

.product-details {
  min-width: 0;
}

.product-title {
  font-weight: normal;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.45;
}

.product-meta {
  color: #646464;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.remove-link {
  color: #555;
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

.remove-link:hover {
  text-decoration: underline;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.price-column {
  width: 80px;
  flex-shrink: 0;
}

.quantity-column {
  display: flex;
  justify-content: center;
  width: 87px;
  text-align: center;
  flex-shrink: 0;
}

.quantity-container.cart-quantity {
  width: 86px;
  height: 30px;
  margin-bottom: 0;
}

.quantity-container.cart-quantity > input,
.quantity-container.cart-quantity > button {
  width: 30px;
}

.quantity-container.cart-quantity > button svg {
  width: 9px;
}

.total-column,
.price-column {
  font-size: 14px;
}

.total-column {
  width: 85px;
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
  font-weight: 600;
}

.cart-header {
  display: flex;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  font-weight: bold;
}

.product-column {
  flex: 1;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-row h3 {
  font-size: 20px;
}

.subtotal-title {
  font-weight: 400;
}

.summary-title {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shipping-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.expand-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-primary.checkout-btn {
  display: block;
  width: 100%;
  font-weight: 500;
}

.checkout-btn:hover {
  background-color: #333;
}

.terms {
  margin-bottom: 20px;
  font-size: 14px;
}

.terms > input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: 1px solid rgb(235, 235, 235);
  cursor: pointer;
  margin-right: 8px;
}

.terms > input[type="checkbox"]:checked {
  background-image: url("../assets/images/checked.svg");
  background-color: rgb(219, 18, 21);
  border-color: rgb(219, 18, 21);
}

.terms > label {
  line-height: 1.4;
}

.terms a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.alert-container {
  text-align: center;
}

.alert-container .page-title {
  font-size: 42px;
  font-weight: 400;
  padding: 88px 0;
}

.alert-content .empty-title {
  font-size: 28px;
  font-weight: 400;
}

.alert-content .empty-des {
  margin: 24px 0;
  font-size: 14px;
  color: #868686;
}

.redirect .btn-primary {
  padding: 0;
}

.redirect .btn-primary > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  line-height: 1.42;
  padding: 0 24px;
  height: 45px;
  width: 100%;
  color: #fff;
}
