/* Common navigation: same look across every page */
.logo-img {
    width: 124px !important;
    height: auto !important;
    max-width: 124px !important;
    max-height: 80px !important;
    object-fit: contain !important;
    display: block !important;
}

.offers_nav_item {
    position: relative;
}

.offers_nav_link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 3px;
}

.offers_fire {
    font-size: 14px;
    line-height: 1;
}

.offers_new {
    position: absolute;
    top: -17px;
    right: -16px;
    font-size: 8px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    background: #fa6f1b;
    padding: 3px 4px;
    border-radius: 3px;
    animation: commonNavNewPulse 1.2s infinite;
}

@keyframes commonNavNewPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: .75; }
}

@media only screen and (max-width: 575px) {
    .main_nav_col {
        height: 70px !important;
    }

    .logo-img {
        width: 105px !important;
        max-width: 105px !important;
        height: auto !important;
        max-height: 60px !important;
    }
}