/* ==========================================================================
   LUXURY EDITORIAL DASHBOARD STYLES (Photographic & Elegant)
   ========================================================================== */

.dash-premium-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.premium-stat-card {
  position: relative;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.premium-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(30, 30, 30, 0.75);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.premium-stat-card:hover .stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.stat-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dash-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
  .dash-premium-grid {
    grid-template-columns: 1fr;
  }
}

.premium-widget-card {
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.widget-header h3 svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-glass svg {
  width: 14px;
  height: 14px;
}

/* Premium Weather Grid */
.premium-weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
}

.premium-weather-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.w-city { font-weight: 500; font-size: 0.9rem; color: var(--text-muted); }
.w-icon { display: flex; align-items: center; justify-content: center; margin: 0.25rem 0; color: var(--text-main); }
.w-icon svg { width: 28px; height: 28px; }
.w-temp { font-weight: 700; font-size: 1.25rem; color: var(--text-main); }
.w-desc { font-size: 0.75rem; color: var(--text-dim); }

/* Premium Budget Content */
.premium-budget-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.premium-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

.premium-legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.premium-legend-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.premium-legend-val {
  font-weight: 600;
  color: var(--text-main);
}

/* Premium Map Container */
.premium-map-container {
  height: 300px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

/* Premium Activities Preview */
.premium-activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.premium-activity-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.premium-activity-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color);
}

.p-act-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-act-time {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  min-width: 50px;
}

.p-act-title {
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-act-badge {
  font-size: 0.65rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.p-act-cost {
  font-weight: 600;
  font-size: 0.9rem;
}
