/* ======================================= */
/* SHOP – ANPASSUNGEN */
/* ======================================= */

.shop h1 {
  text-align: center;
  margin-bottom: 16px;
}

.shop-intro {
  text-align: center;
  margin-bottom: 32px;
  color: #444;
  line-height: 1.5;
}

.trennlinie {
  height: 2px;
  background-color: #ff9900;
  width: 100%;
  margin: 15px 0;
}

.product {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
/* AKTIVIEREN WENN EIN POP UP INSTALLIERT WIRD
.product:hover {
  transform: translateY(-4px);
}*/

.product img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f2f2f2;
  padding: 10px;  /* optional – wirkt oft hochwertiger */
}


.p-body {
  padding: 18px;
  text-align: left;
}

.p-title {
  font-size: 1.3rem;
  margin: 0 0 8px 0;
  color: #000;
  font-weight: 700;
}

.p-desc {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.price {
  font-weight: 800;
  color: #c6d638;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
}

.availability {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
  font-style: italic;
}

