:root {
  --max-w-7xl: 80rem; 
  --gap-6: 1.5rem;
  --gray-50: #f9fafb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --white: #ffffff;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --radius: .5rem;
}

.shop-page {
  background: var(--gray-50);
  color: var(--gray-700);
}

.shop-container {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .shop-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .shop-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.shop-header { 
  margin-bottom: 1.5rem; 
}

.shop-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.shop-subtitle { 
  margin-top: .5rem; 
  color: var(--gray-500); 
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-6);
}

@media (min-width: 640px) { 
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
  } 
}

@media (min-width: 1024px) { 
  .products-grid { 
    grid-template-columns: repeat(4, 1fr); 
  } 
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-link { 
  display: block; 
  color: inherit; 
  text-decoration: none;
}

.product-image {
  width: 100%;
  height: 12rem;
  object-fit: contain;
  background: var(--white);
  padding: 1rem;
  display: block;
}

.product-body { 
  padding: 1rem; 
}

.product-name { 
  font-weight: 600; 
  color: #111827; 
}

.product-desc {
  margin-top: .5rem;
  color: var(--gray-500);
  font-size: .875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta { 
  margin-top: 1rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}

.product-price {
  color: var(--teal-600); 
  font-weight: 600; 
}

.product-view { 
  font-size: .875rem;
  color: #374151; 
  text-decoration: underline; 
}

.products-empty { 
  grid-column: 1 / -1; 
  text-align: center; 
  color: var(--gray-500); 
}
