/* -------------------------
   Favorites desktop + tablet
------------------------- */

body {
  background-color: #f9f9f9;
}

.favoritos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px 60px;
}

.favoritos-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 24px;
  gap: 16px;
}

.favoritos-header h1 {
  font-size: 22px;
}

.favoritos-count {
  font-size: 14px;
}

.favoritos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 20px 24px;
}

.card-container {
  width: 100%;
  margin: 0;
}

.card {
  height: 132px;
  grid-template-columns: 110px 1fr auto !important;
  padding: 14px;
}

.card-image {
  width: 110px;
  height: 110px;
}

.product-name {
  font-size: 15px;
}

.product-category {
  font-size: 12px;
}

.current-price {
  font-size: 16px;
}

.old-price {
  font-size: 11px;
}

.discount-badge {
  font-size: 11px;
}

.drag-hint {
  font-size: 11px;
}

.delete-btn {
  right: 1.5rem;
}

.no-favoritos {
  padding: 140px 20px;
  max-width: 520px;
  margin: 0 auto;
}

.toast {
  width: 420px;
}

