/* Store index/product detail styles extracted from templates */
.store-index-container {
  max-width: 1200px;
  margin: 0 auto;
}

.store-index-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-index-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.store-cart-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
}

.store-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: #888;
}

.store-empty-state p { font-size: 1.2rem; }

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.store-product-card-link {
  text-decoration: none;
  color: inherit;
}

.store-product-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.store-product-card:hover {
  transform: translateY(-4px);
  border-color: #444;
}

.store-product-card__image-wrap,
.store-product-card__placeholder {
  aspect-ratio: 1;
  overflow: hidden;
}

.store-product-card__image-wrap {
  background: radial-gradient(circle at 50% 42%, #ffffff 0%, #f3f4f6 46%, #d1d5db 100%);
}

.store-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-product-card__placeholder {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-product-card__placeholder span { font-size: 3rem; }

.store-product-card__body { padding: 1rem; }

.store-product-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.store-product-card__price {
  font-size: 0.95rem;
  color: #60a5fa;
  font-weight: 600;
  margin: 0;
}

.store-product-card__out-of-stock {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.store-product-show {
  max-width: 900px;
  margin: 0 auto;
}

.store-product-show__back {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.store-product-show__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.store-product-show__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #ffffff 0%, #f3f4f6 46%, #d1d5db 100%);
}

.store-product-show__image {
  width: 100%;
  display: block;
  transition: opacity 0.2s;
}

.store-product-show__placeholder {
  border-radius: 12px;
  background: #1a1a1a;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.store-product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.product-gallery-thumb {
  border: 1px solid #222;
  border-radius: 8px;
  background: #f3f4f6;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.product-gallery-thumb.is-active { border-color: #888; }

.product-gallery-thumb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-product-show__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.store-product-show__description {
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.store-product-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-product-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-product-form__select,
.store-product-form__quantity {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #f0f0f0;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
}

.store-product-form__select { width: 100%; }
.store-product-form__quantity { width: 80px; }

.store-product-form__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.store-product-form__actions .store-flow-button { flex: 1; }

.store-product-form__cart-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.store-product-show__shipping-note {
  margin-top: 1.5rem;
  border-top: 1px solid #222;
  padding-top: 1.25rem;
}

.store-product-show__shipping-note p:first-child {
  font-size: 0.8rem;
  color: #555;
  margin: 0 0 4px;
}

.store-product-show__shipping-note p:last-child {
  font-size: 0.75rem;
  color: #444;
  margin: 0;
}

.store-product-show__out-of-stock {
  color: #f87171;
  font-weight: 600;
}

@media (max-width: 640px) {
  .store-product-show__grid,
  .checkout-field-grid {
    grid-template-columns: 1fr;
  }
}
