/* 
  ==========================================================================
  MONKEY KIT - ULTRA PREMIUM EXPERIENCE (FINAL STABLE VERSION)
  ==========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --base-color: hsl(var(--base-h), var(--base-s), var(--base-l));
    --base-color-light: hsl(var(--base-h), var(--base-s), calc(var(--base-l) + 12%));
    --base-color-dark: hsl(var(--base-h), var(--base-s), calc(var(--base-l) - 8%));
    --base-color-alpha: hsla(var(--base-h), var(--base-s), var(--base-l), 0.12);
    
    --bg-main: #fcfdfe;
    --text-heading: #0f172a;
    --transition-smooth: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* --- LOGO --- */
.logo img {
    height: 45px !important;
    width: auto !important;
}

/* --- HEADER ROOT --- */
.header-bottom {
    background: #fff !important;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0 !important;
}

/* --- DESKTOP MENU (Hide on Mobile) --- */
@media (min-width: 992px) {
    .menu {
        display: flex !important;
        gap: 15px !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .menu li a {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: var(--text-heading) !important;
        padding: 8px 18px !important;
        border-radius: 12px;
        transition: var(--transition-smooth);
        text-decoration: none !important;
    }
    .menu li a:hover, .menu li a.active {
        background: var(--base-color-alpha) !important;
        color: var(--base-color) !important;
    }
}

/* --- MOBILE SPECIFIC (Fixed Bottom Nav & Cleanup) --- */
@media (max-width: 991px) {
    /* Hard hide the horizontal desktop menu on mobile */
    .header-bottom .menu, .header-bottom .d-none.d-lg-flex {
        display: none !important;
    }

    .header-bottom-wrapper {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    /* Hide redundant cart button */
    .cart-button, .cart-icon-design {
        display: none !important;
    }

    /* PREMIUM FLOATING BOTTOM NAV - PERFECTLY CENTERED */
    .mobile-menu-icons {
        position: fixed !important;
        bottom: 25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 92% !important;
        max-width: 450px !important;
        background: #0f172a !important;
        border-radius: 50px !important;
        padding: 10px 5px !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 9999 !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        list-style: none !important;
        margin: 0 !important;
    }

    .mobile-menu-icons li {
        flex: 1 !important;
        text-align: center !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-icons li:last-child {
        border-right: none !important;
    }

    .mobile-menu-icons .ecommerce {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-decoration: none !important;
    }

    .mobile-menu-icons .ecommerce__icon i {
        color: #fff !important;
        font-size: 1.4rem !important;
    }

    .mobile-menu-icons .ecommerce__text {
        font-size: 0.6rem !important;
        color: #94a3b8 !important;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 4px;
    }

    .primary-menu-button {
        display: block !important;
        background: #f1f5f9 !important;
        border: none !important;
        padding: 5px !important;
        border-radius: 10px !important;
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .primary-menu-button span {
        display: block !important;
        width: 25px;
        height: 3px;
        background: #000 !important;
        margin: 5px auto !important;
        border-radius: 5px;
    }

    body {
        padding-bottom: 110px !important;
    }
}

/* --- PRODUCT CARDS --- */
.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #f1f5f9 !important;
    transition: var(--transition-smooth);
}

.product-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px -15px rgba(0,0,0,0.1); }