.eczero-like-btn {
    width: 100%;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #f2f3f5;
    color: #0b233a;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s, opacity .2s;
    box-shadow: 0 2px 8px rgba(12, 29, 60, 0.12);
}

.eczero-like-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #0b233a;
  box-shadow: 0 4px 14px rgba(12, 29, 60, .20);
    opacity: .95;
  transform: translateY(-2px);
}

.eczero-like-btn:active {
  transform: translateY(0);
}

.eczero-like-btn:disabled {
  opacity: .9;
  cursor: not-allowed;
}

.eczero-like-btn .count {
    background: #d13c3c;
    padding: 3px 8px;
    border-radius: 100px;
    color: #fff;
    font-size: 11px;
    font-family: "Inter", sans-serif;
}
/* ==========================================================
   ECZERO 人気返礼品ブロック
========================================================== */

.eczero-popular-block {
  margin-top: 50px;
}

.eczero-popular-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  border-left: 4px solid #be0000;
  padding-left: 10px;
}

.eczero-popular-title .sub {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 6px;
}

.eczero-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eczero-popular-item + .eczero-popular-item {
  margin-top: 10px;
}

.eczero-popular-item a {
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.eczero-popular-item a:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.eczero-popular-item .thumb {
  width: 64px;
  flex-shrink: 0;
}

.eczero-popular-item .thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.eczero-popular-item .info {
  flex: 1;
}

.eczero-popular-item .title {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eczero-popular-item .meta {
  font-size: 11px;
  color: #6b7280;
}

/* loading */
.eczero-like-btn.is-loading {
  opacity: .7;
  pointer-events: none;
}

/* focus */
.eczero-like-btn:focus-visible {
  outline: 2px solid #9ca3af;
  outline-offset: 2px;
}

/* motion reduce */
@media (prefers-reduced-motion: reduce) {
  .eczero-like-btn,
  .eczero-popular-item a {
    transition: none;
    transform: none;
  }
}

.count_attention {
    text-align: center;
    display: block;
    font-size: 10px;
    color: #5f6671;
    padding: 5px;
}