<style>
/* Mobile always-visible Shop button */
.shop-mobile-btn {
    background: #ff4d6d;
    color: #ffffff !important;   /* ✅ text color */
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
    text-decoration: none;       /* prevents blue link text */
}

.shop-mobile-btn:hover,
.shop-mobile-btn:focus {
    background: #e63b5c;
    color: #ffffff !important;   /* stays white on hover */
    text-decoration: none;
}

/* Ensure logo + buttons align on mobile */
@media (max-width: 991px) {
    .navbar {
        flex-wrap: nowrap;
    }
    .site-logo {
        height: 45px;
    }
}

/* Mobile Shop 4 Shadi button */
.shop-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F54927;
    color: #ffffff !important;
    padding: 7px 16px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Hover / tap */
.shop-mobile-btn:hover,
.shop-mobile-btn:focus {
    background: #e63b5c;
    color: #ffffff !important;
    text-decoration: none;
}

/* Show only on mobile */
@media (min-width: 992px) {
    .shop-mobile-btn {
        display: none;
    }
}

/* ===== MOBILE BOTTOM NAV (mobile view only) ===== */
.mobile-bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #ddd;
    display:none;
    justify-content:space-around;
    align-items:center;
    padding:6px 0;
    z-index:9999;
    box-shadow:0 -2px 10px rgba(0,0,0,.08);
}

.mobile-bottom-nav a{
    text-align:center;
    font-size:12px;
    color:#555;
    text-decoration:none;
    flex:1;
}

.mobile-bottom-nav a i{
    display:block;
    font-size:20px;
    margin-bottom:2px;
}

.mobile-bottom-nav a.active{
    color:#d63384;
    font-weight:600;
}

/* show only on mobile */
@media(max-width:768px){
    .mobile-bottom-nav{display:flex;}
    body{padding-bottom:65px;} /* prevent content hide */
}
</style>
