/* dashboard.css — area personale RoomReveal */
.dash { margin: 32px auto; }

.dash-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.dash-head h1 { font-size: 34px; }
.dash-stats { display: flex; gap: 28px; }
.dash-stat { text-align: center; }
.dash-stat b { display: block; font-family: "Fraunces", serif; font-size: 26px; color: var(--accent); }
.dash-stat span { font-size: 13px; color: var(--muted); }

.plan-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.plan-card h3 { font-size: 20px; }
.plan-card.is-pro { border-color: var(--accent); background: var(--bg-accent); }

.dash-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-section-head h2 { font-size: 24px; }

.dash-loading, .dash-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.dash-empty-ico { font-size: 48px; margin-bottom: 12px; }
.dash-empty h3 { font-size: 20px; margin-bottom: 6px; color: var(--text); }
.dash-empty .btn { margin-top: 16px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.gcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .15s ease, box-shadow .15s ease; }
.gcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.gcard-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: var(--bg-accent); }
.gcard-body { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.gcard-meta { min-width: 0; }
.gcard-style { font-weight: 600; font-size: 14px; text-transform: capitalize; }
.gcard-date { font-size: 12px; color: var(--muted); }
.gcard-dl { flex-shrink: 0; background: var(--bg-accent); color: var(--accent); border: none; width: 36px; height: 36px; border-radius: 9px; cursor: pointer; font-size: 15px; }
.gcard-dl:hover { background: var(--accent); color: #fff; }

@media (max-width: 700px) {
  .dash-head { flex-direction: column; align-items: flex-start; }
  .dash-stats { gap: 20px; }
}
