

/* =========================================================
   SUNRISE TOP RED UTILITY BAR (DESKTOP ONLY)
   ========================================================= */

/* Top Red Bar */
.su-top-utility-bar {
    width: 100%;
    height: 40px;
    background-color: #9c1c17;
    position: relative;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Inner container */
.su-top-utility-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left side */
.su-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
}

.su-top-left i {
    font-size: 14px;
}

/* Right side links */
.su-top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.su-top-right a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.su-top-right a:hover {
    opacity: 0.85;
}

/* Highlight button */
.su-highlight-btn {
    background-color: var(--theme-yellow);
    color: #000 !important;
    padding: 4px 12px;
    border-radius: 4px;
}

/* =========================================================
   STICKY HEADER FIX (IMPORTANT)
   ========================================================= */

/* Jab header sticky ho, tab red bar ke niche aaye */
#header-sticky.sticky {
    top: 40px; /* red bar height */
}

/* Normal state me koi gap nahi */
#header-sticky {
    top: 0;
}

/* =========================================================
   MOBILE / TABLET VIEW
   ========================================================= */

@media (max-width: 991px) {

    /* Red bar hide on mobile */
    .su-top-utility-bar {
        display: none;
    }

    /* Header wapas top par chipke */
    #header-sticky.sticky {
        top: 0;
    }
}



