/* Újrapróbálás szöveg + link erős kiemelése */
.comeback a {
    display: block;
    margin-top: 25px;
    padding: 20px 25px;
    background: #c62828;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(198, 40, 40, 0.35);
    animation: pulsePay 1.6s infinite;
}

/* Hover */
.comeback a:hover {
    background: #a61c1c;
    transform: scale(1.02);
}

/* Pulzáló figyelemfelhívás */
@keyframes pulsePay {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(198, 40, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);
    }
}
/* ===========================
   FŐKATEGÓRIA MENÜ – LETISZTULT
   nincs aláhúzás, nincs ferde vonal
   =========================== */

/* Főmenü linkek */
#category .nav > li > a,
.category-menu .nav > li > a {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    padding: 12px 14px;
    line-height: 1.2;
    text-transform: none;
    text-decoration: none !important;
    position: relative;
}

/* Hover – csak színváltás */
#category .nav > li > a:hover,
.category-menu .nav > li > a:hover {
    color: #c62828;
    text-decoration: none !important;
}

/* Aktív kategória */
#category .nav > li.active > a,
.category-menu .nav > li.active > a {
    color: #c62828;
    font-weight: 800;
}

/* ===== DROPDOWN / ALKATEGÓRIÁK ===== */

/* Alkategória linkek */
#category .dropdown-menu a,
.category-menu .dropdown-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    text-decoration: none !important;
    position: relative;
}

/* Alkategória hover – CSAK szín */
#category .dropdown-menu a:hover,
.category-menu .dropdown-menu a:hover {
    color: #c62828;
    text-decoration: none !important;
}

/* MINDEN pseudo elem TILTÁSA (ferde vonal OKA) */
#category .nav a::before,
#category .nav a::after,
.category-menu .nav a::before,
.category-menu .nav a::after,
#category .dropdown-menu a::before,
#category .dropdown-menu a::after,
.category-menu .dropdown-menu a::before,
.category-menu .dropdown-menu a::after {
    content: none !important;
}