/* ============================================================
   ABVERKAUF — produkte.css
   Mobile-first, nur min-width Breakpoints
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hz-abv-hero {
  background: linear-gradient(135deg, #1e7fba 0%, #145a87 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  color: #fff;
}
.hz-abv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}
.hz-abv-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.hz-abv-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .hz-abv-hero h1 { font-size: 3.2rem; }
  .hz-abv-hero { padding: 6rem 0 4.5rem; }
}

/* ── CURTAIN PRELOADER ──────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

.hz-curtain {
  position: fixed;
  top: 0;
  height: 100%;
  width: 50%;
  background: #1e7fba;
  z-index: 99998;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}
.hz-curtain-left  { left: 0; }
.hz-curtain-right { right: 0; }
.hz-curtain-open-left  { transform: translateX(-100%); }
.hz-curtain-open-right { transform: translateX(100%); }

.hz-curtain-logo {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  pointer-events: none;
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.hz-abv-bar {
  background: #f4f7fb;
  border-bottom: 1px solid #e0e8f4;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.hz-abv-bar-inner {
  display: flex;
  justify-content: center;
}
.hz-abv-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.hz-cat-chip {
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  border: 2px solid #c8d8ee;
  background: #fff;
  color: #1e7fba;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'Roboto', sans-serif;
}
.hz-cat-chip:hover {
  border-color: #1e7fba;
  background: #eef3fb;
}
.hz-cat-chip.active {
  background: #1e7fba;
  border-color: #1e7fba;
  color: #fff;
}
.hz-abv-stats {
  font-size: 0.85rem;
  color: #6b7a8d;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hz-abv-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

/* ── PRODUKT-SECTION ────────────────────────────────────── */
.hz-abv-section {
  padding: 2.5rem 0 4rem;
  background: #f9fafb;
}

/* ── GRID ───────────────────────────────────────────────── */
.hz-pk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 480px) {
  .hz-pk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .hz-pk-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .hz-pk-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── PRODUKT-CARD ───────────────────────────────────────── */
.hz-pk-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(13,27,42,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.hz-pk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,27,42,0.14);
}

/* IMAGE */
.hz-pk-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eef7;
}
.hz-pk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.hz-pk-card:hover .hz-pk-img img {
  transform: scale(1.04);
}

/* CATEGORY BADGE */
.hz-pk-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #1e7fba;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
}

/* BODY */
.hz-pk-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hz-pk-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0d1b2a;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.hz-pk-desc {
  font-size: 0.82rem;
  color: #5a6a7a;
  line-height: 1.55;
  margin: 0 0 auto;
  padding-bottom: 0.9rem;
}

/* FOOTER (price + button) */
.hz-pk-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f8;
}
.hz-pk-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e7fba;
}

/* WHATSAPP BUTTON */
.hz-pk-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  white-space: nowrap;
}
.hz-pk-wa:hover {
  background: #1da851;
  color: #fff;
  text-decoration: none;
  transform: scale(1.04);
}
.hz-pk-wa i {
  font-size: 1rem;
}

/* ── VERKAUFT RIBBON ───────────────────────────────────── */
.hz-pk-sold-ribbon {
  position: absolute;
  top: 18px;
  right: -28px;
  width: 115px;
  background: #c8000a;
  color: #fff;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  pointer-events: none;
  z-index: 5;
}
.hz-pk-card.hz-sold .hz-pk-img img {
  filter: grayscale(30%);
}
.hz-pk-card.hz-sold .hz-pk-wa {
  background: #c8000a;
  pointer-events: none;
}
.hz-pk-card.hz-sold .hz-pk-wa:hover {
  background: #c8000a;
  transform: none;
}

/* ── ADMIN LINK ─────────────────────────────────────────── */
.hz-abv-admin-link {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.hz-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid #c8d8ee;
  border-radius: 2rem;
  background: transparent;
  color: #8a9ab5;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.18s;
}
.hz-admin-btn:hover {
  border-color: #1e7fba;
  color: #1e7fba;
  background: #eef3fb;
  text-decoration: none;
}

/* ── PAGINATION ─────────────────────────────────────────── */
.hz-pag {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hz-pag-btn {
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.6rem;
  border: 2px solid #d0dcea;
  background: #fff;
  color: #1e7fba;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Roboto', sans-serif;
}
.hz-pag-btn:hover {
  border-color: #1e7fba;
  background: #eef3fb;
}
.hz-pag-btn.active {
  background: #1e7fba;
  border-color: #1e7fba;
  color: #fff;
}
