.empty-cart-msg {
  text-align: center;
  padding: 40px;
  font-size: 18px;
  color: #777;
  font-style: italic;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-table th,
.cart-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cart-table th {
  background-color: #1b4332;
  color: #d4af37;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

.btn-remove {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0 10px;
}
.btn-remove:hover {
  color: #b30000;
}

.img-blue {
  filter: hue-rotate(180deg);
}
.img-pink {
  filter: hue-rotate(90deg);
}

.qty-input {
  width: 50px;
  padding: 5px;
  background: #f8f9f5;
  border: 1px solid #ccc;
  color: #2d2d2d;
  text-align: center;
}

.cart-summary {
  background-color: #ffffff;
  padding: 30px;
  width: 400px;
  margin-left: auto;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
  color: #2d2d2d;
}

.total {
  color: #1b4332;
  font-weight: bold;
  font-size: 24px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 15px;
  font-family: "Playfair Display", serif;
}
