.top-bar {
    background: #8b0000;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    display: inline-block;
}

.logo-section {
    text-align: left;
    margin-left: 1.5rem;
    /* same as ms-4 */
}

.site-logo {
    width: 400px;
    height: 250px;
    transition: all 0.3s ease;
}

/* ✅ Mobile View - Centered & Proper Spacing */
@media (max-width: 991px) {
    .logo-section {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }

    .site-logo {
        width: 260px;
        height: auto;
    }
}

.category-navbar {
    background: #8b0000;
    z-index: 999;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px !important;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    background: red;
    color: #fff !important;
}

.two-row-nav .nav-item {
    white-space: nowrap;
}

@media (min-width: 992px) {
    .two-row-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .two-row-nav .nav-item {
        flex: 0 0 auto;
    }
}

/* ✅ Updated Social Sidebar Popup + Colors */
.social-sidebar {
    position: fixed;
    right: 0px; /* Hide initially */
    top: 42%;
    z-index: 1000;
    transition: right 0.3s ease;
}

/* ✅ ICON STYLES */
.social-sidebar a {
    color: #fff;
    padding: 10px 14px;
    display: block;
    font-size: 20px;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease-in-out;
}

/* ✅ REAL BRAND COLORS */
.social-sidebar a.facebook {
    background: #1877f2;
} /* Facebook Blue */
.social-sidebar a.twitter {
    background: #1da1f2;
} /* Twitter Sky Blue */
.social-sidebar a.youtube {
    background: #ff0000;
} /* YouTube Red */

/* ✅ Popup Animation on Hover */
.social-sidebar a:hover {
    padding-right: 50px;
}

/* ✅ Desktop Hover par Full bar Slide */
@media (min-width: 992px) {
    .social-sidebar:hover {
        right: 0;
    }
}

/* ✅ MOBILE VIEW — Hide Removed ✅ */
@media (max-width: 991px) {
    .social-sidebar {
        right: 0px;
        top: 55%;
        display: block !important;
    }
}

/* ✅ Desktop View Styling */
@media (min-width: 992px) {
    .top-links a {
        margin-left: 20px;
        padding-right: 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.4);
        font-size: 15px;
    }

    .top-links a:last-child {
        border-right: none;
    }
}

/* ✅ Mobile View Styling */
@media (max-width: 991px) {
    .top-links {
        background: rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        padding: 10px 0;
    }

    .top-links a {
        width: 100%;
        margin: 6px 0;
        text-align: left;
        border: none !important;
        font-size: 14px;
    }
}
