/* Sticky Bottom Navigation Bar for Mobile */
.qc-mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px 20px 0 0;
    z-index: 999999;
    padding: 10px 10px 14px 10px;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Add padding to bottom of the viewport on mobile devices */
@media (max-width: 767px) {
    .qc-mobile-bottom-menu {
        display: block;
    }

    body {
        padding-bottom: 75px !important;
    }
}

.nav.nav-vertical {
    background: white;
}

.qc-mobile-menu-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.qc-mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #444444 !important;
    width: 20%;
    position: relative;
    transition: transform 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.qc-mobile-menu-item:hover,
.qc-mobile-menu-item:focus {
    color: #000000 !important;
}

.qc-mobile-menu-item:active {
    transform: scale(0.92);
}

.qc-menu-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: inherit;
    transition: color 0.15s ease;
}

.qc-menu-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.qc-menu-label {
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.1px;
    line-height: 1;
    color: inherit;
}

/* Cart badge count */
.qc-mobile-cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #000000;
    color: #ffffff;
    font-size: 9px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 1.5px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}