/* 🐕 小狗的家 — garden.css */

    .garden-stat {
      background: white;
      border-radius: 10px;
      padding: 8px 14px;
      text-align: center;
      border: 2px solid #f0e8e0;
      flex: 1;
      min-width: 60px;
    }
    .garden-stat-num {
      font-size: 20px;
      font-weight: bold;
      color: #e07b39;
    }
    .garden-stat-label {
      font-size: 10px;
      color: #999;
      margin-top: 2px;
    }
    /* ========== 阳台军团 ========== */
    .plant-card {
      display: inline-block;
      width: calc(25% - 8px);
      margin: 4px;
      padding: 8px 4px;
      background: #fff;
      border-radius: 12px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      border: 2px solid #f0e8e0;
      vertical-align: top;
    }
    .plant-card:hover { border-color: var(--c-primary); transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 16px rgba(224,123,57,0.18); }
    .plant-card.retired { opacity: 0.5; border-style: dashed; }
    .plant-card-icon svg { width: 36px; height: 36px; }
    .plant-card-id { font-size: 10px; color: #ccc; margin-top: 1px; }
    .plant-card-name { font-size: 11px; font-weight: bold; color: #5a4a3a; margin-top: 1px; }
    .plant-card-status { font-size: 10px; color: #4a9e4a; margin-top: 1px; }
    .plant-card-status.retired { color: #999; }
    .plant-action-btn {
      padding: 8px 12px;
      border: 2px solid #ffe0c0;
      border-radius: 20px;
      background: white;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .plant-action-btn:hover { background: #fff5eb; border-color: #e07b39; }
    .plant-action-btn.retire { border-color: #ffaaaa; }
    .plant-action-btn.retire:hover { background: #fff0f0; }
    .plant-event-item {
      padding: 6px 0;
      border-bottom: 1px solid #f8f0e8;
      font-size: 13px;
      color: #666;
    }
    .plant-event-item:last-child { border-bottom: none; }
    .plant-event-time { font-size: 11px; color: #bbb; }
    .plant-event-type { font-weight: bold; margin-right: 6px; }
    @media (max-width: 600px) {
      .plant-card { width: calc(25% - 6px); margin: 3px; padding: 6px 2px; }
      .plant-card-icon svg { width: 32px; height: 32px; }
    }