/* ============================================================
   CTLS COMPONENT: SHOP ARCHIVE
   ------------------------------------------------------------
   Übersicht aller Produkte
   ============================================================ */

.shop-archive {
  background: #fff;
  padding: 4em var(--global-gutter);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 4em;
}

/* GRID */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
}

/* TILE */
.shop-tile {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.shop-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.shop-tile-content {
  padding: 1.5em;
}

.shop-tile h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5em;
}

.shop-tile .price {
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 1em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shop-archive { padding: 2em var(--global-gutter); }
  .shop-grid { gap: 1.5em; }
  .shop-tile img { height: 140px; }
}