.store-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.store-title {
  text-align: center;
  margin-bottom: 2rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.product-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #777;
  font-size: 0.9rem;
}

.product-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.product-summary {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-actions {
  margin-top: auto;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  background: #ff6f00;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ff9933;
}

.product-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #222;
}

.product-desc {
  margin-top: 1.25rem;
  color: #aaa;
  line-height: 1.6;
}
