/**
 * Bajroshakti Mobile Bottom Navigation
 * Version: 1.0.1
 */

/* ===== মেইন বার ===== */
.bsnp-m-nav-bar { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #fff; border-top: 1px solid #ddd; z-index: 9999999; display: none; box-shadow: 0 -3px 15px rgba(0,0,0,0.08); }
.bsnp-m-nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 600px; margin: 0 auto; position: relative; padding: 0 4px; }

.bsnp-m-item-group { display: flex; align-items: center; justify-content: space-around; flex: 1; }
.bsnp-m-btn { background: none; border: none; color: #1a1a1a; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 3px; cursor: pointer; flex: 1; padding: 0; }
.bsnp-m-btn i { font-size: 18px; }
.bsnp-m-btn span { font-size: 10px; font-weight: 400; font-family: var(--font-ui); }

/* ===== ফ্লোটিং গোল বৃত্ত ===== */
.bsnp-m-center-puck { width: 70px; position: relative; display: flex; justify-content: center; flex-shrink: 0; }
.bsnp-m-puck-btn {
    position: absolute;
    top: -50px;
    width: 59px;
    height: 59px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 100;
    transition: 0.2s;
    padding: 0;
}
#puck-fav-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.bsnp-m-puck-btn i { font-size: 24px; color: var(--accent-color); }
.bsnp-m-puck-btn.active { background: #fff !important; border-color: #ddd !important; }
.bsnp-m-puck-btn.active #puck-icon-close { color: #1a1a1a; }

/* ===== স্লাইডিং প্যানেল ===== */
.bsnp-m-panel-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 60px; background: rgba(0,0,0,0); z-index: 9999998; display: none; align-items: flex-end; pointer-events: none; transition: background 0.4s; }
.bsnp-m-panel-overlay.show { background: rgba(0,0,0,0.5); pointer-events: all; }

@media (max-width: 991px) {
    .bsnp-m-panel-overlay { display: flex; }
}

.bsnp-m-panel-content { width: 100%; max-height: 75vh; background: #fff; border-radius: 20px 20px 0 0; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1); overflow: hidden; display: flex; flex-direction: column; }
.bsnp-m-panel-overlay.show .bsnp-m-panel-content { transform: translateY(0); }
.bsnp-panel-sticky-head { padding: 15px 20px 0; flex-shrink: 0; background: #fff; }
.bsnp-m-panel-inner { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 0 20px 40px; }
.bsnp-m-handle { width: 40px; height: 4px; background: #eee; border-radius: 10px; margin: 0 auto 15px; }

/* লোগো CSS switch */
.bsnp-panel-logo .bsnp-logo-dark  { display: none; }
.bsnp-panel-logo .bsnp-logo-light { display: block; }
[data-theme="dark"] .bsnp-panel-logo .bsnp-logo-light { display: none !important; }
[data-theme="dark"] .bsnp-panel-logo .bsnp-logo-dark  { display: block !important; }
.bsnp-panel-logo img { max-height: 38px; width: auto; }

.bsnp-panel-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.bsnp-panel-dark-trigger { background: #f5f5f5; border: 1px solid #eee; width: 36px; height: 36px; border-radius: 50%; color: #333; cursor: pointer; }
.bsnp-panel-header-line { width: 100%; height: 1px; background: #eee; margin-bottom: 20px; }

/* সার্চ */
.bsnp-panel-search { width: 75%; margin: 0 auto 25px; }
.bsnp-panel-search form { display: flex; background: #f8f8f8; border: 1px solid #ddd; border-radius: 50px; overflow: hidden; height: 40px; }
.bsnp-panel-search input { flex: 1; border: none; background: none; padding: 0 15px; font-size: 15px; font-weight: 400; outline: none; font-family: var(--font-ui); }
.bsnp-panel-search button { background: none; border: none; padding: 0 12px; color: var(--accent-color); cursor: pointer; }

/* মেনু গ্রিড */
.bsnp-m-text-grid { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; padding: 0; margin: 0; border-top: 1px solid #eee; }
.bsnp-m-text-grid li { border-bottom: 1px solid #eee; border-right: 1px solid #eee; }
.bsnp-m-text-grid li:nth-child(3n) { border-right: none; }
.bsnp-m-text-grid li a { display: block; text-align: center; padding: 12px 2px; font-family: var(--font-ui); font-size: 16px; font-weight: 400; color: #333; text-decoration: none; line-height: 1.3; }

/* ===== ডার্ক মোড ===== */
[data-theme="dark"] .bsnp-m-nav-bar,
[data-theme="dark"] .bsnp-m-panel-content,
[data-theme="dark"] .bsnp-m-panel-inner,
[data-theme="dark"] .bsnp-panel-sticky-head { background: #0A1628; border-color: #1e3a5f; }
[data-theme="dark"] .bsnp-m-puck-btn { background: #0D1322; border-color: #1e3a5f; }
[data-theme="dark"] .bsnp-m-puck-btn.active { background: #0D1322 !important; border-color: #1e3a5f !important; }
[data-theme="dark"] .bsnp-m-puck-btn.active #puck-icon-close { color: #fff; }
[data-theme="dark"] .bsnp-m-btn { color: #eee; }
[data-theme="dark"] .bsnp-m-text-grid li a { color: #eee; }
[data-theme="dark"] .bsnp-m-text-grid li,
[data-theme="dark"] .bsnp-m-text-grid,
[data-theme="dark"] .bsnp-panel-header-line { border-color: #1e3a5f; }
[data-theme="dark"] .bsnp-panel-search form { background: #112240; border-color: #1e3a5f; }
[data-theme="dark"] .bsnp-panel-search input { color: #fff; }
[data-theme="dark"] .bsnp-panel-search input::placeholder { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .bsnp-panel-dark-trigger { background: #112240; border-color: #1e3a5f; color: #eee; }
[data-theme="dark"] .bsnp-m-handle { background: #1e3a5f; }
[data-theme="dark"] .bsnp-panel-navigation { color: #eee; }

/* ===== ফুটার ফিক্স ===== */
@media (max-width: 991px) {
    body { padding-bottom: 75px !important; }
    #bsnpBackToTop, .bsnp-back-to-top { bottom: 80px !important; right: 20px !important; z-index: 999999; }
    #onesignal-bell-container { bottom: 80px !important; }
    .bsnp-m-nav-bar { display: block; }
}
body.bs-no-scroll { overflow: hidden !important; }
