/* ============ LANDING DASHBOARD GRID ============ */
    .landing-dashboard {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px 80px;
    }
    .dashboard-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
      margin-bottom: 40px;
    }
    .stat-card {
      background: white;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 2px 12px rgba(45, 106, 79, 0.08);
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .stat-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(45, 106, 79, 0.12);
    }
    .stat-primary {
      background: linear-gradient(135deg, #2D6A4F, #40916C);
      color: white;
    }
    .stat-primary .stat-label { color: rgba(255,255,255,0.85); }
    .stat-icon { font-size: 2rem; margin-bottom: 8px; }
    .stat-value {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 4px;
      font-variant-numeric: tabular-nums;
    }
    .stat-label {
      font-size: 0.85rem;
      color: #666;
      font-weight: 500;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }
    .dashboard-section {
      background: white;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 2px 12px rgba(45, 106, 79, 0.08);
      min-height: 200px;
    }
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid #f0f0f0;
    }
    .section-header h2 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1B4332;
      margin: 0;
    }
    .section-link {
      background: none;
      border: none;
      color: #2D6A4F;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.85rem;
      padding: 4px 8px;
      border-radius: 6px;
    }
    .section-link:hover { background: #f0fdf4; }

    .empty-state {
      color: #999;
      font-style: italic;
      text-align: center;
      padding: 32px 16px;
      font-size: 0.9rem;
    }

    .today-meals { display: flex; flex-direction: column; gap: 10px; }
    .meal-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: #f8fdf9;
      border-radius: 10px;
      border-left: 4px solid #40916C;
      transition: opacity 0.2s;
    }
    .meal-card.done { opacity: 0.55; border-left-color: #95D5B2; }
    .meal-type {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #2D6A4F;
      letter-spacing: 0.5px;
      min-width: 60px;
    }
    .meal-name { flex: 1; font-weight: 600; color: #1B4332; font-size: 0.95rem; }
    .meal-check { color: #10B981; font-weight: 700; font-size: 1.1rem; }

    .expiring-list { display: flex; flex-direction: column; gap: 8px; }
    .expiring-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px;
      background: #fef3c7;
      border-radius: 8px;
      font-size: 0.9rem;
    }
    .item-name { font-weight: 600; color: #92400e; }
    .item-when { font-size: 0.8rem; color: #b45309; font-weight: 500; }

    .shop-summary { text-align: center; padding: 24px 16px; }
    .shop-big {
      font-size: 3rem;
      font-weight: 700;
      color: #2D6A4F;
      line-height: 1;
      margin-bottom: 8px;
      font-variant-numeric: tabular-nums;
    }
    .shop-sub { color: #666; font-size: 0.9rem; }

    .wins-summary {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .win-stat {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 12px 16px;
      background: linear-gradient(90deg, #f0fdf4 0%, transparent 100%);
      border-radius: 8px;
      border-left: 4px solid #10B981;
    }
    .win-num {
      font-size: 1.5rem;
      font-weight: 700;
      color: #2D6A4F;
      font-variant-numeric: tabular-nums;
    }
    .win-label { color: #666; font-size: 0.9rem; }

    .landing-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      color: #888;
      font-size: 0.85rem;
      border-top: 1px solid rgba(45, 106, 79, 0.1);
    }
    .landing-footer p { margin: 0; }
    .refresh-btn {
      background: white;
      border: 1px solid #d1d5db;
      color: #2D6A4F;
      padding: 8px 16px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.85rem;
    }
    .refresh-btn:hover { background: #f0fdf4; border-color: #2D6A4F; }

    .landing-hero-text h1 { font-size: 2.5rem; }
    .landing-hero-text p { color: #4b5563; max-width: 500px; }