/* Frontend navbar styles (.nb*) - extracted from nav.blade.php for caching. Edit source in resources/views/frontend/layout/nav.blade.php notes if regenerating. */
.nb {
    font-family: 'Outfit', 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: box-shadow .25s ease;
    background: #fff
}

.nb-spacer {
    display: none
}

.nb.nb-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%
}

.nb.nb-fixed+.nb-spacer {
    display: block
}

.nb-top {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
    gap: 24px;
    border-bottom: 1px solid #e8f4ee;
    max-width: 1800px;
    margin: 0 auto;
    transition: padding .25s ease
}

.nb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none
}

.nb-logo-img {
    height: 75px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    transition: height .25s ease
}

.nb-toplinks {
    display: flex;
    gap: 2px;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden
}

.nb-toplinks a {
    font-size: 13.5px;
    font-weight: 600;
    color: #445;
    text-decoration: none;
    letter-spacing: 0.15px;
    padding: 7px 4px;
    border-radius: 7px;
    transition: all .15s;
    cursor: pointer;
    white-space: nowrap
}

/* Tighten the top links on mid-size desktops so the row never
   overflows onto the logo or the search box (text overlap fix). */
@media (min-width: 1024px) and (max-width: 1500px) {
    .nb-top {
        gap: 12px;
        padding: 5px 16px
    }
    .nb-toplinks a {
        font-size: 12.5px;
        padding: 7px 6px;
        letter-spacing: 0
    }
    .nb-toplinks .sep {
        margin: 0 -2px
    }
    .nb-search {
        width: 190px
    }
    .nb-logo-img {
        height: 66px
    }
}

@media (min-width: 1024px) and (max-width: 1240px) {
    .nb-toplinks a {
        font-size: 12.5px;
        padding: 7px 5px
    }
    .nb-search {
        width: 168px
    }
    .nb-logo-img {
        height: 62px
    }
}

.nb-toplinks a:hover {
    color: #287d29;
    background: #edf7f1
}

.nb-toplinks .sep {
    color: #ddd;
    font-size: 12px;
    user-select: none
}

.nb-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.nb-search {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5faf7;
    border: 1.5px solid #c8e6d4;
    border-radius: 8px;
    padding: 0 14px;
    height: 40px;
    gap: 8px;
    width: 250px;
    transition: border-color .15s, background .15s, width .25s ease;
    margin: 0
}

.nb-search:focus-within {
    border-color: #287d29;
    background: #fff
}

.nb-search input[type="text"] {
    background: none;
    border: none;
    outline: none;
    font-size: 13px;
    color: #333;
    width: 100%;
    font-family: inherit;
    margin: 0;
    padding: 0;
    height: auto
}

.nb-search input::placeholder {
    color: #aaa
}

.nb-search button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #287d29;
    flex-shrink: 0
}

.nb-lang-slot {
    display: flex;
    align-items: center;
    height: 40px;
    min-width: 40px
}

.nb-enq {
    background: #287d29;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0 22px;
    height: 40px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, transform .1s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.nb-enq:hover {
    background: #1f5f1f;
    color: #fff
}

.nb-enq:active {
    transform: scale(.97)
}

.nb-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #287d29;
    line-height: 1;
    flex-shrink: 0
}

.nb-cats-wrap {
    position: relative;
    background: #7aa87a
}

.nb-cats-wrap::before,
.nb-cats-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 32px;
    pointer-events: none;
    z-index: 1
}

.nb-cats {
    background: #d9e7d9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    padding: 0 24px;
    height: 42px;
    gap: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch
}

.nb-cats::-webkit-scrollbar {
    display: none
}

.nb-cat {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bolder;
    color: rgba(0, 0, 0, 0.88);
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all .18s;
    border: 1px solid transparent;
    flex-shrink: 0;
    text-decoration: none
}

.nb-cat:hover {
    color: #000000;
    background: rgb(253, 253, 253)
}

.nb-cat.active {
    color: #287d29;
    background: #fff;
    border-color: #fff;
    font-weight: 700
}

.nb-drawer {
    display: none;
    background: #fff;
    border-top: 1px solid #e8f4ee;
    padding: 16px 20px 20px;
    flex-direction: column;
    gap: 4px;
    max-height: calc(100dvh - 70px);
    overflow-y: auto
}

.nb-drawer.open {
    display: flex
}

.nb-drawer-cats-label {
    font-size: 10px;
    font-weight: 700;
    color: #287d29;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 2px 6px;
    border-bottom: 1px solid #e8f4ee;
    margin-bottom: 6px
}

.nb-drawer-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px
}

.nb-drawer-cat {
    font-size: 12px;
    font-weight: 600;
    color: #287d29;
    background: #edf7f1;
    border: 1.5px solid #c8e6d4;
    border-radius: 7px;
    padding: 9px 10px;
    cursor: pointer;
    text-align: center;
    transition: all .15s;
    text-decoration: none;
    display: block
}

.nb-drawer-cat:hover,
.nb-drawer-cat.active {
    background: #287d29;
    color: #fff;
    border-color: #287d29
}

.nb-drawer-pages-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 2px 6px;
    border-bottom: 1px solid #e8f4ee;
    margin-bottom: 4px
}

.nb-drawer-pages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 14px
}

.nb-drawer-pages a {
    font-size: 13px;
    font-weight: 600;
    color: #445;
    text-decoration: none;
    padding: 10px 11px;
    border-radius: 8px;
    background: #f8fcfa;
    border: 1px solid #e8f4ee;
    transition: all .15s
}

.nb-drawer-pages a:hover {
    color: #287d29;
    background: #edf7f1;
    border-color: #c8e6d4
}

.nb-drawer-bottom {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    align-items: center
}

.nb-drawer-bottom .nb-enq {
    flex: 2;
    height: 40px;
    font-size: 13px;
    justify-content: center
}

.nb-drawer-lang {
    flex: 1;
    min-height: 40px;
    display: flex;
    align-items: center
}

@media(max-width:1023px) {
    .nb-toplinks {
        display: none
    }

    .nb-hamburger {
        display: flex
    }

    .nb-search,
    .nb-search:focus-within {
        width: 220px
    }

    .nb-cats-wrap {
        display: none
    }
}

@media(max-width:767px) {
    .nb-top {
        padding: 8px 14px;
        gap: 10px
    }

    .nb-right {
        gap: 6px;
        flex: 1;
        justify-content: flex-end
    }

    .nb-search {
        order: 1;
        flex: 1;
        min-width: 0;
        width: auto;
        max-width: 220px;
        height: 36px;
        padding: 0 10px
    }

    .nb-search input[type="text"] {
        font-size: 12px
    }

    .nb-lang-slot {
        display: none
    }

    .nb-enq-top {
        display: none
    }

    .nb-hamburger {
        display: flex;
        order: 2;
        padding: 6px;
        border: 1.5px solid #c8e6d4;
        border-radius: 8px;
        background: #f5faf7
    }

    .nb-logo-img {
        height: 42px
    }

    .nb-drawer-cats {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:479px) {
    .nb-top {
        padding: 8px 10px;
        gap: 6px
    }

    .nb-search {
        max-width: none;
        height: 34px;
        padding: 0 8px
    }

    .nb-search input::placeholder {
        color: transparent;
        font-size: 0
    }

    .nb-logo-img {
        height: 36px
    }

    .nb-drawer {
        padding: 14px 14px 18px
    }

    .nb-drawer-cats {
        grid-template-columns: 1fr 1fr;
        gap: 5px
    }
    
    .nb-drawer-pages {
        grid-template-columns: 1fr 1fr;
        gap: 5px
    }
}

@media(max-width:359px) {
    .nb-logo-img {
        height: 32px
    }
}
.nb-toplinks a.active{color:#287d29;background:#edf7f1;font-weight:700}.nb-drawer-pages a.active{color:#287d29;background:#edf7f1;border-color:#c8e6d4;font-weight:700}