/* Wearable section on the Today screen.
   Mirrors the meals-card pattern from css/screens/daily.css. */

.wearable-section {
  margin-top: 24px;
}

.wearable-card {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.wearable-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}

.wearable-row:last-child {
  border-bottom: none;
}

.wearable-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.wearable-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--t3);
  width: 96px;
  flex-shrink: 0;
}

.wearable-value {
  font-size: .9rem;
  color: var(--t1);
  flex: 1;
}

.wearable-stale-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 95, 126, 0.15);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  vertical-align: middle;
}

.wearable-empty {
  font-size: .82rem;
  color: var(--t3);
  font-style: italic;
  padding: 14px 0;
  text-align: center;
}

/* Toast shown after OAuth callback */
.wearable-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--t1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: .85rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity .3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.wearable-toast.show {
  opacity: 1;
}
