/* Empty State Component */
.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  text-align: center;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  opacity: 0.3;
  color: #6e645a;
}

.empty-state-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.empty-state-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1815;
  margin-bottom: 8px;
}

.empty-state-description {
  font-size: 14px;
  color: #6e645a;
  margin-bottom: 24px;
  max-width: 400px;
  line-height: 1.6;
}

.empty-state-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.empty-state-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.empty-state-btn-primary {
  background: #1a1815;
  color: white;
}

.empty-state-btn-primary:hover {
  background: #2a2825;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.empty-state-btn-secondary {
  background: white;
  color: #1a1815;
  border: 1.5px solid #d4cec5;
}

.empty-state-btn-secondary:hover {
  background: #fafaf9;
  border-color: #1a1815;
}

/* Specific Empty State Variants */
.empty-state-search {
  padding: 40px 32px;
}

.empty-state-search .empty-state-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.empty-state-search .empty-state-title {
  font-size: 16px;
}

.empty-state-search .empty-state-description {
  font-size: 13px;
  margin-bottom: 16px;
}

/* Animation */
.empty-state {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .empty-state {
    padding: 40px 20px;
  }

  .empty-state-icon {
    width: 48px;
    height: 48px;
  }

  .empty-state-title {
    font-size: 18px;
  }

  .empty-state-description {
    font-size: 13px;
  }

  .empty-state-actions {
    flex-direction: column;
    width: 100%;
  }

  .empty-state-btn {
    width: 100%;
    justify-content: center;
  }
}
