.cart-table {
  text-align: center;
  /* margin: 0 auto 4.8rem auto; */
  border-radius: 1.2rem;
}
.cart-table .cart-table-row {
  height: 12rem;
  transition: all 0.9ms ease-in;
}

.cart-table .cart-table-row th {
  padding: 4.8rem 2.4rem !important;
  color: #666;
  font-weight: 400;
  font-size: 1.8rem;
}
.cart-table .cart-table-row th,
.cart-table .cart-table-row td {
  color: #555;
  padding: 1.2rem 2.4rem;
}

.cart-table .cart-table-row td {
  color: #888;
  font-size: 1.8rem;
}

.cart-image {
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  width: 25rem;
  margin: 0 auto;
}

.quantity .quantity-value {
  padding: 0 1.2rem;
}

.quantity .decrement,
.quantity .increment {
  background-color: #a6cdde;
  font-size: 2.4rem;
  outline: none;
  border: none;
  padding: 0.4rem 1.6rem;
  border-radius: 50%;
  opacity: 90%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.quantity .decrement:hover,
.quantity .increment:hover {
  background-color: #bc3b59;
}

.remove i {
  color: #9b2847;
  padding: 0.8rem 1rem;
  border-radius: 50%;
  transition: all 0.1s ease-in;
  cursor: pointer;
}
.remove i:hover {
  color: #f6f6f6;
  background-color: rgba(188, 59, 89, 0.8);
}

.total-price {
  /* background-color: rgba(107, 99, 113, 0.3); */
  color: #6b6371 !important;
  font-weight: 600 !important;
  font-size: 3.6rem !important;
  border-radius: 1.2rem !important;
}

.empty-cart-text {
  text-align: center;
  color: #6b6371;
  font-size: 1.6rem;
}

.empty-cart-link:link,
.empty-cart-link:visited {
  color: #9b2847;
  text-decoration: none;
  font-weight: 500;
}

.empty-cart-link:hover,
.empty-cart-link:active {
  color: #555;
  text-decoration: underline;
}

/* .cart-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.cart-image {
  flex: 1;
}

.cart-image img {
  max-width: 100px;
  max-height: 100px;
}

.cart-info {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-name {
  font-weight: bold;
}

.stock-available {
  font-size: 12px;
}

.quantity {
  display: flex;
  gap: 5px;
  align-items: center;
}

.product-price,
.price {
  font-weight: bold;
}

.total-price-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  font-weight: bold;
} */
