/* ===============================
   ANGEBOTE – BAZAR STYLE
   =============================== */

.angebote-page {
  padding: 24px 16px 60px;
}

.angebote-hero {
  text-align: center;
  margin-bottom: 32px;
}

.angebote-hero h1 {
  font-size: 28px;
  font-weight: 800;
  color: #2f5d3a;
}

.angebote-hero p {
  font-size: 15px;
  opacity: 0.85;
}

/* GRID */
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD */
.angebot-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

.angebot-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  font-size: 14px;
  opacity: 0.6;
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: #2f6b45;
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #2f6b45;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge.green {
  background: #1f4d32;
}

/* ===================================================
   OFFER IMAGE FIX – STABLE 1:1 RATIO
   =================================================== */

.angebote-page .angebot-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.angebote-page .angebot-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  background: #f7f7f4;
  border-radius: 12px;
  padding: 10px;
}
