/* Styles for the shop directory/index page */

body {
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  background: #ffffff;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 1.5rem 2.5rem;
  margin-bottom: 2rem;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

header h1 {
  font-size: 2.25rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

header p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
  font-weight: 400;
}

main {
  padding: 0 1.5rem 3rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

li {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

li:hover {
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

li:hover::before {
  opacity: 1;
}

a {
  font-weight: 600;
  font-size: 1.15rem;
  color: #1f2937;
  display: block;
  margin-bottom: 0.5rem;
}

a:hover {
  color: #667eea;
  text-decoration: none;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #6b7280;
  align-items: center;
}

.badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.empty {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 2px dashed #d1d5db;
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #6b7280;
}

.empty p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

