.empty-cart{
  text-align:center;
}
.cart-container {
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px 30px;
  font-family: 'Inter', sans-serif;
}

.cart-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.cart-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-details {
  flex: 1;
}

.cart-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px;
}

.cart-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 5px;
}

.cart-price {
  font-weight: 600;
  color: #222;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-btn {
  background: #fff;
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.cart-qty input {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 28px;
}

.cart-subtotal {
  width: 70px;
  text-align: right;
  font-weight: 600;
}

.cart-remove {
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
}

.cart-remove:hover {
  color: #000;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: 10px;
}

.cart-total {
  font-size: 1.1rem;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.keep-shopping {
  color: #1e40af;
  text-decoration: none;
  font-size: 0.95rem;
}

.checkout-btn {
  background: #1e2a4a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.checkout-btn:hover {
  background: #0f172a;
}

.cart-item:hover { background: #fafafa; transition: 0.2s; }

.cart-remove:hover { color: #dc2626; }

.cart-container { border-radius: 12px; }

/* Remove arrows for number inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

section{
  text-align:left;
}

.cart-heading{
  text-align:center;
}

.checkout-block.container{
  max-width: 700px;
}

.giver-block::before {
  content: "Gift Giver Information"; 
  position: absolute;
  top: -12px;
  left: 20px;
  background: #fff; 
  padding: 0 8px;
  font-weight: bold;
  font-size: 16px;
}

.giver-block {
  position: relative;
}