/* ═══════════════════════════════════════════════════════════════════════════
   Shopper-specific mobile-first overrides
   ═══════════════════════════════════════════════════════════════════════════ */

.shopping-bar-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shopper-item-body {
  flex: 1;
  min-width: 0;
}

.shopper-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.shopper-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.shopper-actions {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.shopper-actions .action-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  background: rgba(0,0,0,0.04);
  color: var(--text-light);
}

.shopper-actions .action-btn:hover {
  background: rgba(0,0,0,0.08);
}

.shopper-actions .action-btn.active-collected {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: #5a7a56;
}

.shopper-actions .action-btn.active-unavailable {
  background: #e8e8e8;
  border-color: #999;
  color: #555;
}

.shopper-actions .action-btn.active-substituted {
  background: var(--gold-light);
  border-color: var(--gold);
  color: #8a7030;
}

.qty-purchased-group {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.qty-purchased-group .qty-input {
  width: 60px;
  font-size: 0.82rem;
  padding: 0.2rem 0.4rem;
}

.note-row {
  margin-top: 0.4rem;
}

.note-row .note-input {
  height: 2.2rem;
  font-size: 0.82rem;
}

.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(143,174,139,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.progress-bar-fill {
  height: 100%;
  background: var(--sage);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.finish-section {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
}

/* Mobile touch targets */
@media (max-width: 600px) {
  .shopper-actions .action-btn {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .checklist-item {
    padding: 0.85rem 0.75rem;
  }
}
