.cart-page { padding-bottom: 60px; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0 22px;
}
.cart-title-block h1 { font-size: 30px; margin: 0; color: var(--navy-text); }

.fresh-guarantee-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--card-shadow);
}
.fg-ico { font-size: 20px; color: var(--blue); }
.fresh-guarantee-box strong { display: block; font-size: 13px; color: var(--navy-text); }
.fresh-guarantee-box small { color: var(--text-muted); font-size: 11.5px; }

.cart-body {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.cart-main { flex: 1; min-width: 0; }

.cart-table-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow-x: auto;
}
.cart-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.cart-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
}
.cart-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--navy-text);
  vertical-align: middle;
}
.cart-table tr:last-child td { border-bottom: none; }
.col-product { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.cart-emoji {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.cart-product-info strong { display: block; font-size: 13.5px; }
.cart-product-info small { color: var(--text-muted); font-size: 11.5px; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.qty-stepper .qty-btn {
  background: var(--bg-tint);
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: var(--navy-text);
}
.qty-stepper .qty-value {
  width: 34px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
}
.remove-btn { background: none; font-size: 16px; }
.remove-btn:hover { transform: scale(1.1); }

.cart-empty {
  display: none;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 20px;
  box-shadow: var(--card-shadow);
}
.cart-empty p { color: var(--text-muted); margin-bottom: 16px; }

.cart-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.coupon-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 6px 6px 14px;
  box-shadow: var(--card-shadow);
}
.coupon-ico { font-size: 15px; }
.coupon-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 180px;
  font-family: inherit;
}
.btn-continue { display: inline-flex; align-items: center; }

@media (max-width: 600px) {
  .cart-head { flex-direction: column; align-items: flex-start; }
  .cart-footer-row { flex-direction: column; align-items: stretch; }
  .coupon-box input { width: auto; flex: 1; }
}

/* ---------- Wishlist grid ---------- */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
}
.wishlist-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.wishlist-card-media {
  position: relative;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
.wishlist-emoji { font-size: 46px; }
.remove-wish-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: var(--navy-text);
  font-size: 13px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.remove-wish-btn:hover { color: var(--red); }
.wishlist-card-body { padding: 14px; }
.wishlist-cat {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
}
.wishlist-card-body h3 { font-size: 14px; margin: 3px 0 6px; color: var(--navy-text); }
.wishlist-price { font-size: 14px; font-weight: 700; color: var(--navy-text); margin: 0 0 10px; }
.wishlist-price small { font-weight: 500; color: var(--text-muted); }
.btn-addcart-sm { width: 100%; padding: 9px; font-size: 13px; justify-content: center; display: flex; }
