﻿body {
    padding-bottom: 60px;
}
/* Main container: fixed bottom‑right, vertical stack */
.floating-action {
    position: fixed;
    bottom: 7.25rem;
    right: 1.25rem;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: .5rem; /* space between items */
    align-items: center; /* keep every item centred horizontally */
}

    /* Neutralise any margins that Bootstrap or your theme gives */
    .floating-action form {
        margin: 0;
    }

    /* Every button in the stack – whether inside a  or not */
    .floating-action button {
        width: 3rem;
        height: 3rem;
        padding: 0; /* override px‑15 etc. */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        /* Make sure icons are dead‑centre */
        .floating-action button i {
            margin: 0;
        }

        /* Optional: subtle drop‑shadow identical for all buttons */
        .floating-action button.shadow {
            box-shadow: 0 .25rem .5rem rgba(0,0,0,.15);
        }
/* Hide by default on all screens */
.mobile-footer-nav {
    display: none;
}

.mobile-categories-menu {
    display: none;
}

.header-search {
    position: relative;
    margin-left: 15px; /* Adjust as needed */
}

.header-search__toggle {
    background: none;
    border: none;
    color: inherit; /* Matches your header text color */
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
}

.header-search__box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    display: none;
    z-index: 1000;
}

    .header-search__box.active {
        display: block;
    }

.header-search__input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.header-search__submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #0066ff;
    cursor: pointer;
}
/* Show only on mobile and tablet */
@@media (max-width: 1024px) {
    .mobile-categories-menu {
        display: block;
    }

    .footer.-type-1 {
        display: none !important;
    }

    .mobile-hide {
        display: none !important;
    }

    .mobile-footer-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 8px 0;
    }

    .footer-nav-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-size: 12px;
        padding: 5px 10px;
    }

        .footer-nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .footer-nav-item.active {
            color: #0066ff; /* Your brand color */
        }
}

