/* ==========================================
   JK MODERNE PREISLISTE – RESTAURANT STYLE
   Joomla-sicher – kein Klassen-Konflikt
========================================== */

.jk-pricelist-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1e1e1e;
}

/* ============================= */
/* RUBRIK */
.jk-pricelist-rubrik {
  margin: 40px 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #4c566a;
  border-left: 5px solid #edbe0b;
  padding-left: 14px;
}

/* ============================= */
/* ARTIKEL ITEM */
.jk-pricelist-item {
  padding: 8px 0;
  transition: background 0.25s ease;
}

.jk-pricelist-item:hover .jk-pricelist-name {
  color: #0f6fa3;
}

/* ============================= */
/* ZEILENLAYOUT: Grid + Leader-Dots */
.jk-pricelist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  position: relative;
}

/* Leader-Dots */
.jk-pricelist-name {
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.jk-pricelist-price {
  font-weight: 600;
  color: #4c566a;
  white-space: nowrap;
  text-align: right;
  position: relative;
  z-index: 1;
  min-width: 70px;
  padding: 2px 6px;
  background-color: #f3f5f7;
}

/* Pseudo-element für Leader-Dots */
.jk-pricelist-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px dotted rgba(0, 0, 0, 0.25);
  z-index: 0;
}

/* Leader-Dots überdecken den Text nicht */
.jk-pricelist-left,
.jk-pricelist-price {
  /* background: transparent; */
  position: relative;
  padding: 0 4px;
  z-index: 2;
  display: inline-block;
}

/* Linke Spalte: Artikel + Beschreibung */
.jk-pricelist-left {
  display: flex;
  flex-direction: column;
}

.jk-pricelist-desc {
  font-size: 0.87rem;
  color: #555;
  margin-top: 3px;
  line-height: 1.3;
}

/* ============================= */
/* MOBILE */
@media (max-width: 768px) {
  .jk-pricelist-rubrik {
    font-size: 1.2rem;
    margin-top: 28px;
  }
  .jk-pricelist-name {
    font-size: 1rem;
  }
  .jk-pricelist-price {
    font-size: 1rem;
  }
}

/* Mobile unter 420px: Zeilen übereinander, Linie ausblenden */
@media (max-width: 420px) {
  .jk-pricelist-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .jk-pricelist-row::after {
    display: none;
  }
  .jk-pricelist-price {
    margin-top: 2px;
    text-align: left;
    color: #333;
    background-color: #f3f5f7;
  }
}

/* ============================= */
/* SANFTE ANIMATION beim Laden */
.jk-pricelist-wrap {
  animation: jkFade 0.4s ease-out;
}

@keyframes jkFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
