/* Base */
.cruda-favorite-button,
.cruda-favorites-loadmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #dfdfdf;
  background: #fff;
  color: transparent                                          ;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  line-height: 1;
}
/*
.cruda-favorite-button:hover,
.cruda-favorites-loadmore:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}*/
.cruda-favorite-button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.cruda-favorite-button.is-active {
  border-color: #e11d48;
  color: #e11d48;
}
.cruda-favorite-svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
  transition:
    transform 0.2s ease,
    fill 0.2s ease;
}
.cruda-favorite-button.is-active .cruda-favorite-svg {
  fill: currentColor;
  transform: scale(1.08);
}
.cruda-favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cruda-favorite-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
}
.cruda-favorite-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.cruda-favorite-content {
  padding: 16px;
}
.cruda-favorite-title {
  margin: 0 0 10px;
  font-size: 18px;
}
.cruda-favorite-title a,
.cruda-favorite-link {
  color: inherit;
  text-decoration: none;
}
.cruda-favorite-excerpt {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}
.cruda-favorite-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cruda-favorites-count {
  min-width: 14px;
  text-align: center;
}
.cruda-favorites-pagination {
  margin-top: 24px;
}
.cruda-favorites-pagination .page-numbers {
  display: inline-flex;
  margin-right: 8px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
}
.cruda-favorites-pagination .current {
  border-color: #111;
}
.cruda-favorites-loadmore-wrap {
  margin-top: 24px;
  text-align: center;
}
.cruda-favorites-empty {
  margin-top: 16px;
  padding: 24px;
  border: 1px dashed #ddd;
  border-radius: 18px;
  background: #fafafa;
}
