/* ============================================================
   요금제 잠금 오버레이 스타일
   ============================================================ */

/* ── 대시보드 패널 잠금 오버레이 ── */
.plan-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 244, 232, 0.88);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

.plan-lock-box {
  text-align: center;
  padding: 20px;
}

.plan-lock-icon {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.plan-lock-title {
  font-weight: 700;
  font-size: 1em;
  color: #1a6b3c;
  margin-bottom: 6px;
}

.plan-lock-desc {
  font-size: 0.82em;
  color: #6b8f6b;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 220px;
}

.plan-lock-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  background: #1a6b3c;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.plan-lock-btn:hover { background: #2d9e5e; }

/* ── 미니홈피 잠금 섹션 ── */
.feature-locked {
  position: relative;
  overflow: hidden;
}

.feature-locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(240,244,232,0.97) 80%);
  pointer-events: none;
}

.feature-locked-cta {
  text-align: center;
  padding: 12px;
}

.feature-locked-cta a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1a6b3c;
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 600;
  padding: 8px 16px;
  border: 1.5px solid #1a6b3c;
  border-radius: 20px;
  transition: all 0.15s;
}

.feature-locked-cta a:hover {
  background: #1a6b3c;
  color: #fff;
}

/* ── 사진 잠금 안내 (Basic 3장 초과 시) ── */
.photo-plan-limit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 2px dashed #c8dfc0;
  border-radius: 8px;
  background: #f7fbf3;
  gap: 6px;
  padding: 12px;
  text-align: center;
}

.photo-plan-limit-icon { font-size: 1.5em; }

.photo-plan-limit-text {
  font-size: 0.72em;
  color: #6b8f6b;
  line-height: 1.4;
}

.photo-plan-limit-btn {
  font-size: 0.72em;
  color: #1a6b3c;
  background: none;
  border: 1px solid #1a6b3c;
  border-radius: 10px;
  padding: 3px 8px;
  cursor: pointer;
  font-family: inherit;
}

/* ── 광고 배너 스타일 (Basic) ── */
.ad-banner {
  margin: 10px 16px;
  border-radius: 8px;
  overflow: hidden;
  min-height: 60px;
  background: #f5f5f5;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78em;
  color: #aaa;
}
