/* yanyu-checkin-shop-v1：烟雨签筹铺 */

.checkin-shop.section-ink {
  padding-top: 54px;
}

.checkin-shop-panel {
  display: grid;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.checkin-shop-card,
.checkin-shop-admin-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(80, 50, 38, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(230,226,218,0.72)),
    var(--paper, #f6f0e4);
  box-shadow: 0 18px 45px rgba(30,20,15,0.10);
  padding: 18px;
}

.checkin-shop-card::after,
.checkin-shop-admin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 12% 12%, rgba(160,42,32,0.13), transparent 30%),
    linear-gradient(120deg, transparent 0 46%, rgba(0,0,0,0.06) 47%, transparent 52%);
  mix-blend-mode: multiply;
}

.checkin-shop-card > *,
.checkin-shop-admin-card > * {
  position: relative;
  z-index: 1;
}

.checkin-shop-balance {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  color: #fff8ed;
  background: linear-gradient(135deg, #8d2a23, #1d1715);
  font-size: 13px;
  font-weight: 900;
}

.checkin-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.checkin-shop-item {
  display: grid;
  gap: 8px;
  min-height: 180px;
  border: 1px solid rgba(80, 50, 38, 0.11);
  border-radius: 15px;
  padding: 12px;
  background: rgba(255,255,255,0.46);
}

.checkin-shop-item strong {
  font-size: 16px;
}

.checkin-shop-item span {
  color: rgba(62,45,34,0.68);
  font-size: 12px;
  line-height: 1.55;
}

.checkin-shop-cost {
  font-size: 13px;
  font-weight: 900;
  color: #8d2a23;
}

.checkin-shop-actions {
  margin-top: auto;
}

.checkin-shop-btn {
  width: 100%;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(120, 35, 30, 0.24);
  border-radius: 999px;
  cursor: pointer;
  color: #fff8ed;
  background: linear-gradient(135deg, #171312, #8d2a23);
  font-weight: 900;
}

.checkin-shop-btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.checkin-shop-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.checkin-shop-filter button {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(80,50,38,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.52);
}

.checkin-shop-filter button.active {
  color: #fff8ed;
  background: linear-gradient(135deg, #171312, #8d2a23);
}

.checkin-shop-empty,
.checkin-shop-note {
  color: rgba(62,45,34,0.68);
  line-height: 1.75;
}

.checkin-shop-admin-list {
  display: grid;
  gap: 8px;
}

.checkin-shop-admin-item {
  border: 1px solid rgba(80,50,38,0.10);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.44);
}

.checkin-shop-admin-item strong {
  display: block;
}

.checkin-shop-admin-item span {
  display: block;
  color: rgba(62,45,34,0.68);
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.5;
}

.checkin-shop-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .checkin-shop.section-ink {
    padding-top: 42px;
  }

  .checkin-shop-card,
  .checkin-shop-admin-card {
    padding: 14px;
    border-radius: 16px;
  }

  .checkin-shop-grid {
    grid-template-columns: 1fr;
  }

  .checkin-shop-item {
    min-height: auto;
  }

  .checkin-shop-btn {
    min-height: 32px;
    font-size: 13px;
  }

  .checkin-shop-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .checkin-shop-filter::-webkit-scrollbar {
    display: none;
  }

  .checkin-shop-filter button {
    flex: 0 0 auto;
    font-size: 13px;
  }
}
