/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #222;
  background: #f7f7f5;
  line-height: 1.7;
}

/* ===========================
   Layout
=========================== */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 248px 20px 80px;
}

/* ===========================
   Header
=========================== */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 28px;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.header p {
  font-size: 14px;
  color: #777;
}

/* ===========================
   Stats
=========================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fff;
  border: 0.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
}

.stat-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.stat-sub {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

/* ===========================
   Filters
=========================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.filter-label {
  font-size: 13px;
  color: #888;
}

.filter-btn {
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 0.5px solid #ccc;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
}

.filter-btn:hover {
  border-color: #185FA5;
  color: #185FA5;
}

.filter-btn.active {
  background: #E6F1FB;
  border-color: #185FA5;
  color: #185FA5;
}

/* ===========================
   Count Info
=========================== */
.count-info {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
}

/* ===========================
   Reviews Grid
=========================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* ===========================
   Review Card
=========================== */
.review-card {
  background: #fff;
  border: 0.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E6F1FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #185FA5;
  flex-shrink: 0;
}

.nickname {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.tour-date {
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.stars {
  font-size: 16px;
  color: #EF9F27;
  letter-spacing: 2px;
}

.tour-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  background: #EAF3DE;
  color: #3B6D11;
  border-radius: 999px;
  border: 0.5px solid #C0DD97;
}

.comment {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 0.5px solid #eee;
}

.reg-date {
  font-size: 11px;
  color: #bbb;
}

.score-badge {
  font-size: 11px;
  padding: 2px 10px;
  background: #FAEEDA;
  color: #854F0B;
  border-radius: 999px;
  border: 0.5px solid #FAC775;
  font-weight: 500;
}

/* ===========================
   Load More
=========================== */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  font-size: 14px;
  padding: 12px 40px;
  border-radius: 8px;
  border: 0.5px solid #ccc;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}

.load-more-btn:hover {
  background: #f0f0f0;
}

.load-more-btn:disabled {
  color: #bbb;
  background: #f7f7f5;
  cursor: default;
}

.progress {
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 600px) {
  .header h1 {
    font-size: 22px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-value {
    font-size: 22px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
