/* Order Page - Shopping Cart */
.cart-info-box {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  text-align: center;
}

.cart-info-box p {
  font-size: 15px;
  color: #5a9997;
  margin: 0;
  line-height: 1.6;
}

.snipcart-summary {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  color: #5a9997;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: #ff8c69;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid rgba(255, 154, 118, 0.2);
}

.cart-items {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  padding: 15px;
  min-height: 60px;
}

.empty-cart {
  text-align: center;
  color: #5a9997;
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(90, 153, 151, 0.15);
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #5ebdb8;
  margin-bottom: 2px;
}

.cart-item-qty {
  font-size: 12px;
  color: #5a9997;
}

.cart-qty-input {
  width: 60px;
  padding: 6px 10px;
  border: 2px solid rgba(94, 189, 184, 0.3);
  border-radius: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: white;
  color: #2c5f5d;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.cart-qty-input:focus {
  outline: none;
  border-color: #5ebdb8;
  box-shadow: 0 0 0 2px rgba(94, 189, 184, 0.1);
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: #ff8c69;
  margin-right: 10px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.cart-item-remove:active {
  opacity: 1;
  transform: scale(0.9);
}

.cart-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 154, 118, 0.2);
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #5a9997;
}

.total-row.final {
  font-size: 18px;
  font-weight: 700;
  color: #ff8c69;
  padding-top: 10px;
  margin-top: 5px;
  border-top: 2px solid rgba(255, 154, 118, 0.2);
}

.free-delivery-note {
  margin-top: 10px;
  padding: 10px;
  background: linear-gradient(135deg, #d4f1e8 0%, #c8e6c9 100%);
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}