.category-perex p {
  line-height: 1.2 !important; /* Itt állíthatod a sorközt, az 1.2 egy kisebb érték */
  margin-bottom: 10px !important; /* Ezzel a bekezdés alatti extra távolságot is csökkentheted */
}

/* A cím (pl. Ingyenes Kiszállítás) sorköze és alatti távolság */
.benefitBanner__title {
  line-height: 1.1 !important;
  margin-bottom: 2px !important;
}

/* A leírás (pl. 20.000 Ft felett...) sorköze */
.benefitBanner__data {
  line-height: 1.2 !important;
}

/* Opcionális: Az egész blokk belső függőleges térközének csökkentése */
.benefitBanner__content {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* Rövid leírásban lévő felsorolás bulletpoint */
.p-short-description ul li::marker {
  content: "🔹 ";
}
.p-short-description ul li::before {
  content: "";
  margin: 0;
}

/* A piros jelvény javítása: 'Tevékenység' helyett 'Akció' */
.flag.flag-action {
  font-size: 0 !important; /* Eredeti szöveg elrejtése */
  padding: 3px 8px !important; /* Doboz belső mérete (fel-le, jobb-bal) */
  min-width: 50px; /* Minimum szélesség, hogy ne legyen túl kicsi */
  text-align: center;
  display: inline-flex !important; /* Középre rendezéshez */
  align-items: center;
  justify-content: center;
  height: auto;
}

.flag.flag-action::before {
  content: "AKCIÓ"; /* Az új szöveg (lehet csupa nagybetűvel is) */
  font-size: 11px !important; /* Itt tudod állítani a betűméretet */
  font-weight: bold !important; /* Legyen vastagabb a betű */
  color: #ffffff !important; /* Fehér szín */
  visibility: visible;
  text-transform: uppercase; /* Csupa nagybetűssé teszi */
}

/* --- ANIMÁLT TAVASZI SZÍNÁTMENET --- */

/* 1. A menüpont és a főcím animálása */
#navigation .menu-item-844 a b,
body.category-844 h1 {
  background: linear-gradient(90deg, #72b01d, #ffcc00, #72b01d, #ffcc00);
  background-size: 300% auto; /* Nagyobb háttér az úsztatáshoz */

  /* Ez vágja rá a színt a szövegre */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  /* Az animáció beállítása: 4 másodperces folyamatos mozgás */
  animation: tavaszi-szinvaltas 4s linear infinite !important;

  display: inline-block; /* Hogy az animáció megfelelően látszódjon */
  font-weight: bold;
}

/* 2. Az animáció mozgása (balról jobbra úsztatja a színeket) */
@keyframes tavaszi-szinvaltas {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

/* Opcionális: Egy kis árnyék, hogy jobban kijöjjön a fehér háttérből */
body.category-844 h1 {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
}

/* --- CÉLZOTT ANIMÁCIÓ CSAK A TAVASZ OLDALHOZ --- */

/* Az .id-844 osztály azonosítja be pontosan ezt a kategóriát */
body.id-844 #content .category-title,
body.id-844 #content h1.category-title,
body.id-844 h1 {
  background-image: linear-gradient(
    90deg,
    #72b01d,
    #ffcc00,
    #72b01d,
    #ffcc00
  ) !important;
  background-size: 200% auto !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;

  /* Szín eltüntetése, hogy látszódjon az átmenet */
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;

  display: inline-block !important;
  animation: tavaszi-focim-anim 4s linear infinite !important;
  font-weight: bold !important;
}

@keyframes tavaszi-focim-anim {
  to {
    background-position: 200% center;
  }
}

/* --- TERMÉK HOSSZÚ LEÍRÁSÁNAK FORMÁZÁSA --- */

.product-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  background-color: #ffffff;
}

.product-title {
  color: #0066cc;
  text-align: center;
  font-size: 1.9em;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 10px 0 22px 0;
  padding-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 10px auto 0 auto;
  background: linear-gradient(90deg, transparent, #0066cc, transparent);
}

.description-text {
  margin: 20px 0;
}

.product-container ul li::before {
  content: "";
  margin: 0;
}
.product-container ul {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

.feature-grid,
.usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}
.dims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
@media (max-width: 600px) {
  .feature-grid,
  .dims-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e1e8ed;
  border-left: 6px solid #28a745;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.dim-card {
  background: #fcfcfc;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #0056b3;
  transition: all 0.3s ease;
}
.dim-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.15);
}
.dim-value {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  color: #0056b3;
}
.dim-label {
  font-size: 0.8em;
  color: #666;
}

.usage-card {
  background: #f0f7ff;
  border: 1px solid #d0e3ff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.25s ease;
}
.usage-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: #fff;
  border-color: #0056b3;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15);
}
.usage-icon {
  font-size: 1.8em;
}

.info-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-row {
  background: #fffdf2;
  border: 1px solid #f5e7b2;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  transition: all 0.25s ease;
}
.info-row:hover {
  background: #fff9e6;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.info-row b {
  color: #856404;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.spec-table tr:hover {
  background: #f8fbff;
}
.spec-table td,
th {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}
.spec-table th {
  font-weight: bold;
  width: 45%;
  color: #555;
  background: #fafafa;
  text-align: left;
}

.section-title {
  background: #f1f1f1;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 1.1em;
  margin-top: 30px;
  font-weight: bold;
}

.faq-list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list li {
  background: #f9fbff;
  border: 1px solid #dbe7ff;
  border-radius: 10px;
  padding: 15px 18px;
  transition: all 0.25s ease;
  position: relative;
}
.faq-list li:hover {
  background: #ffffff;
  border-color: #0066cc;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
  transform: translateY(-3px);
}
.faq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #0066cc, #00c6ff);
  border-radius: 10px 0 0 10px;
}
.faq-question {
  font-weight: 600;
  color: #004a99;
  margin-bottom: 6px;
  font-size: 0.98em;
}
.faq-answer {
  font-size: 0.92em;
  color: #444;
  line-height: 1.5;
}
