/* 👥 Vásárlókezelés Mobil Stílusok */

/* Kártya elrendezés */
.shopper-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.2s var(--transition-bezier), box-shadow 0.2s var(--transition-bezier);
}

.shopper-card:active {
  transform: translateY(2px);
  box-shadow: none;
}

.shopper-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.shopper-card-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.shopper-card-left-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  max-width: 85%;
}

.shopper-card-phone {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.shopper-card-phone i {
  color: #9ca3af;
  margin-right: 4px;
}

.shopper-card-plate-badge {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.shopper-card-info-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3D78A8 0%, #2c3e50 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.shopper-card-info-btn i {
  font-size: 11px;
}
