.projector_buy__number_amounts{
display: none!important;
}

#menu_navbar > ul > li:nth-child(1) > a {
    color: #e74c3c !important;
    font-weight: bold !important;
    border: 2px solid #e74c3c;
    border-radius: 6px;
    position: relative;
    background: rgba(231, 76, 60, 0.05);
    overflow: hidden;
    display: inline-block;
    padding: 8px 12px !important;
    font-size: 14px;
}

/* Emoji na początku - mniejszy */
#menu_navbar > ul > li:nth-child(1) > a::before {
    content: "🔥";
    margin-right: 5px;
    font-size: 13px;
    position: relative;
    z-index: 2;
}

/* Animowany underline */
#menu_navbar > ul > li:nth-child(1) > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    transform: translateX(-100%);
    animation: slideIn 2s ease-in-out infinite;
}

@keyframes slideIn {
    0%, 100% { 
        transform: translateX(-100%); 
    }
    50% { 
        transform: translateX(100%); 
    }
}