body.woocommerce-cart {
  background: #f6f7fa;
  /* font-family: 'Lato', Arial, sans-serif; */
}

.cart-box, .cart-summary-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px;
  margin-bottom: 32px;
}

.cart-box {
  margin-right: 32px;
}

.cart-product {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 24px 0;
}

.cart-product:last-child {
  border-bottom: none;
}

.cart-product-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 32px;
  background: #f6f7fa;
}

.cart-product-info {
  flex: 1;
}

.cart-product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-product-attr {
  color: #888;
  font-size: 1rem;
  margin-bottom: 16px;
}

.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  width: 120px;
  background: #fff;
}

.quantity-box input {
  border: none;
  width: 40px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
}

.quantity-btn {
  background: #f6f7fa;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #444;
  cursor: pointer;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background: #f07c63;
  color: #fff;
}

.cart-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-right: 24px;
  min-width: 80px;
  text-align: right;
}

.cart-product-oldprice {
  color: #bfbfbf;
  font-size: 1rem;
  text-decoration: line-through;
  text-align: right;
}

.remove-btn {
  background: none;
  border: none;
  color: #bfbfbf;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  margin-left: 16px;
}

.remove-btn:hover {
  color: #f07c63;
}

.cart-summary-box {
  min-width: 340px;
}

.cart-summary-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.cart-summary-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f07c63;
  margin: 24px 0;
}

.btn-main {
  background: #f07c63;
  color: #fff;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 0;
  width: 100%;
  border: none;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.btn-main:hover {
  background: #e96a4c;
}

.coupon-box {
  background: #f6f7fa;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.coupon-box i {
  color: #f07c63;
  margin-right: 8px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.payment-icons img {
  height: 32px;
}
