/* ═══════════════════════════════════════════════════════════════
   BOTTOM NAV — LOGO IMAGE IN CENTRE SLOT
   Add to assets/css/ and enqueue after mobile-fixes.css
   ═══════════════════════════════════════════════════════════════ */

/* Centre logo slot */
.nav-logo-center {
    flex: 1;
    max-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    order: 0; /* sits in natural DOM order */
}

/* The circle container */
.logo-mark-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white, #fff);  /* white bg behind logo */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,98,64,0.35);
    border: 2px solid rgba(255,255,255,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;               /* clips the image to the circle */
    padding: 0;
}
.nav-logo-center:hover .logo-mark-sm,
.nav-logo-center:active .logo-mark-sm {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(255,98,64,0.5);
}

/* Logo image inside the circle */
.logo-mark-sm img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* If the logo is square/rectangular with transparent bg,
   add a small padding so it doesn't touch the edges */
.logo-mark-sm img[src*="Asaba-seafood"] {
    padding: 3px;
    background: var(--white, #fff);
}

/* Emoji fallback (when no logo set) */
.logo-mark-sm:not(:has(img)) {
    background: linear-gradient(135deg, var(--orange, #FF6240), var(--orange2, #FF8060));
    font-size: 22px;
}

/* Responsive: slightly smaller on very small phones */
@media (max-width: 360px) {
    .logo-mark-sm {
        width: 38px;
        height: 38px;
    }
    .logo-mark-sm img {
        width: 38px;
        height: 38px;
    }
}
