/* ============================================
   BUSINESS LIST - Lista de Negocios
   ============================================ */

.business-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.business-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.business-list-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.business-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #23d160 0%, #12a14a 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(35, 209, 96, 0.3);
}

.business-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 209, 96, 0.4);
}

.business-add-btn.primary {
  background: linear-gradient(135deg, #23d160 0%, #12a14a 100%);
}

.business-list-loading,
.business-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.business-list-empty svg {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.business-list-empty h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
}

.business-list-empty p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px 0;
}

.business-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.business-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 209, 96, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.business-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.business-card-content {
  padding: 20px;
}

.business-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
}

.business-card-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.business-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.business-card-location svg {
  width: 14px;
  height: 14px;
  color: rgba(35, 209, 96, 0.7);
}

.business-card-actions {
  display: flex;
  gap: 8px;
}

.business-card-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.business-card-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(35, 209, 96, 0.5);
  color: #fff;
}

.business-card-btn.danger:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
  color: #fca5a5;
}

/* Responsive */
@media (max-width: 768px) {
  .business-list-grid {
    grid-template-columns: 1fr;
  }

  .business-list-header {
    flex-direction: column;
    align-items: stretch;
  }

  .business-add-btn {
    width: 100%;
    justify-content: center;
  }
}

