:root {
    --navo-brand: var(--primary);
    --navo-brand-dark: var(--primary-dark);
    --navo-brand-soft: var(--secondary);
    --navo-pink: var(--surface-tint);
    --navo-pink-light: var(--surface-soft);
    --navo-pink-deep: #efd8cf;
    --navo-text: var(--text);
    --navo-muted: var(--muted);
    --navo-line: var(--border);
    --navo-white: var(--white);
    --navo-shadow: var(--shadow-md);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--navo-text);
    font-family: var(--font-sans);
}

body.restfull-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.restfull-container {
    width: min(1240px, 96%);
    margin: 0 auto;
}

.restfull-header {
    position: relative;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
}

/* Continuous top ticker */
.restfull-utility-bar,
.restfull-utility-marquee,
.restfull-utility-track {
    height: 29px;
}

.restfull-utility-bar {
    width: 100%;
    overflow: hidden;
    background: var(--navo-brand);
    color: #ffffff;
}

.restfull-utility-marquee {
    width: 100%;
    overflow: hidden;
}

.restfull-utility-track {
    width: max-content;
    min-width: 200%;
    display: flex;
    align-items: center;
    animation: restfullUtilityTicker 26s linear infinite;
    will-change: transform;
}

.restfull-utility-group {
    flex: 0 0 auto;
    min-width: 100vw;
    height: 29px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 34px;
}

.restfull-utility-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.restfull-utility-item svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

@keyframes restfullUtilityTicker {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* Light Navo main header */
.restfull-main-header {
    width: 100%;
    background: linear-gradient(115deg,
        #fffaf8 0%,
        var(--navo-pink-light) 38%,
        var(--navo-pink) 72%,
        #efd8cf 100%
    );
    border-bottom: 1px solid rgba(142, 62, 84, .10);
}

.restfull-header-inner {
    width: min(1240px, 96%);
    min-height: 76px;
    margin: 0 auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 235px minmax(330px, 1fr) 270px;
    align-items: center;
    gap: 20px;
}

.restfull-left-area,
.restfull-center-area,
.restfull-right-area {
    min-width: 0;
}

.restfull-left-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.restfull-menu-btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(142, 62, 84, .18);
    border-radius: 10px;
    background: rgba(255,255,255,.58);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(91,49,60,.06);
    transition: .18s ease;
}

.restfull-menu-btn:hover,
.restfull-menu-btn:focus-visible {
    border-color: rgba(142, 62, 84, .35);
    background: #ffffff;
    outline: none;
}

.restfull-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navo-brand);
}

.restfull-logo {
    min-width: 0;
}

.restfull-logo-link,
.restfull-logo a,
.restfull-logo .custom-logo-link {
    max-width: 178px;
    min-height: 50px;
    padding: 4px 7px;
    border-radius: 9px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.restfull-logo-img,
.restfull-logo img,
.restfull-logo .custom-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 168px;
    max-height: 52px;
    object-fit: contain;
}

.restfull-logo-mobile {
    display: none !important;
}

.restfull-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--navo-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 800;
}

.restfull-logo-text {
    margin-left: 7px;
    color: var(--navo-brand);
    font-size: 21px;
    font-weight: 700;
    white-space: nowrap;
}

.restfull-center-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.restfull-search {
    width: 100%;
    max-width: 680px;
    height: 48px;
    border: 1px solid #eadbd6;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(82,46,55,.08);
}

.restfull-search:focus-within {
    border-color: #c8919f;
    box-shadow: 0 0 0 3px rgba(142,62,84,.10), 0 6px 18px rgba(82,46,55,.10);
}

.restfull-search input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 46px;
    margin: 0;
    padding: 0 15px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #30272a;
    font-size: 12px;
    font-weight: 400;
}

.restfull-search input[type="search"]::placeholder {
    color: #93888b;
}

.restfull-search button {
    flex: 0 0 50px;
    width: 50px;
    height: 46px;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--navo-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .18s ease;
}

.restfull-search button:hover {
    background: var(--navo-brand-dark);
}

.restfull-search button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.restfull-right-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.restfull-account-login-link,
.restfull-account-trigger {
    min-height: 42px;
    max-width: 150px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: var(--navo-brand);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: .18s ease;
}

.restfull-account-login-link:hover,
.restfull-account-trigger:hover,
.restfull-account-dropdown.is-open .restfull-account-trigger {
    border-color: #e2c8ce;
    background: rgba(255,255,255,.62);
}

.restfull-account-icon {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border: 1px solid #e7d6d1;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.restfull-account-icon svg {
    width: 17px;
    height: 17px;
    fill: var(--navo-brand);
}

.restfull-account-name {
    max-width: 102px;
    overflow: hidden;
    color: var(--navo-brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.restfull-account-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.restfull-account-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    width: 190px;
    padding: 7px;
    border: 1px solid #eee3df;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--navo-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
    z-index: 999999;
}

.restfull-account-dropdown.is-open .restfull-account-menu,
.restfull-account-dropdown:hover .restfull-account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.restfull-account-menu a,
.restfull-account-menu-text {
    min-height: 38px;
    padding: 0 11px;
    border-radius: 7px;
    color: #4f4548;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}

.restfull-account-menu a:hover {
    background: #fff2f5;
    color: var(--navo-brand);
}

.restfull-account-menu-text {
    color: #92878a;
}

.restfull-cart-link {
    position: relative;
    min-height: 44px;
    padding: 0 10px;
    border: 1px solid #dfc8ce;
    border-radius: 9px;
    background: rgba(255,255,255,.70);
    color: var(--navo-brand);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: .18s ease;
}

.restfull-cart-link:hover {
    border-color: #caa7b0;
    background: #ffffff;
}

.restfull-cart-icon,
.restfull-cart-icon svg {
    width: 21px;
    height: 21px;
}

.restfull-cart-icon {
    display: inline-flex;
}

.restfull-cart-icon svg {
    fill: var(--navo-brand);
}

.restfull-cart-count {
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--navo-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.restfull-mobile-cart-link {
    display: none;
}

/* Transparent category strip */
.restfull-category-bar {
    width: 100%;
    border-bottom: 1px solid var(--navo-line);
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(82, 34, 49, .035);
    box-shadow: none;
}

.restfull-category-bar .restfull-container {
    width: min(1240px, 100%);
}

.restfull-category-menu {
    min-height: 78px;
    margin: 0;
    padding: 7px 10px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.restfull-category-menu::-webkit-scrollbar {
    display: none;
}

.restfull-category-menu-item {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.restfull-category-item {
    min-width: 78px;
    max-width: 100px;
    min-height: 64px;
    padding: 4px 5px;
    border-radius: 9px;
    background: transparent;
    color: #342b2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    transition: .18s ease;
}

.restfull-category-item:hover {
    background: rgba(247,233,226,.58);
    transform: translateY(-1px);
}

.restfull-category-img {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.restfull-category-img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 39px;
    max-height: 39px;
    object-fit: contain;
}

.restfull-category-fallback {
    color: var(--navo-brand);
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
}

.restfull-category-title {
    max-width: 100%;
    color: #332a2d;
    font-size: 12px;
    line-height: 2;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restfull-category-item:hover .restfull-category-title {
    color: var(--navo-brand);
}

.restfull-category-empty {
    margin: 0;
    padding: 18px 0;
    color: var(--navo-muted);
    text-align: center;
    font-size: 12px;
}

/* Light professional side drawer */
.restfull-side-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(350px, 91vw);
    height: 100dvh;
    padding: 0;
    border: 0;
    background: linear-gradient(180deg, var(--navo-pink-light), var(--navo-pink));
    box-shadow: 18px 0 48px rgba(46, 26, 31, .28);
    z-index: 999999;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    transition: transform .28s cubic-bezier(.22,.61,.36,1);
    scrollbar-width: thin;
    scrollbar-color: rgba(142,62,84,.28) transparent;
}

.restfull-side-menu.is-open {
    transform: translateX(0);
}

.navo-side-top {
    min-height: 250px;
    padding: 20px 18px 31px;
    color: var(--navo-brand);
    background:
        radial-gradient(circle at 92% 3%, rgba(255,255,255,.95), transparent 34%),
        linear-gradient(120deg, var(--navo-pink-light), var(--navo-pink) 58%, var(--navo-pink-deep));
}

.navo-side-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 17px;
}

.navo-side-logo a {
    max-width: 178px;
    min-height: 52px;
    padding: 5px 8px;
    border-radius: 9px;
    background: transparent;
    display: inline-flex;
    align-items: center;
}

.navo-side-logo-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 158px;
    max-height: 46px;
    object-fit: contain;
}

.navo-side-logo-text {
    color: var(--navo-brand);
    font-size: 20px;
    font-weight: 800;
}

.restfull-menu-close {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(142,62,84,.20);
    border-radius: 50%;
    background: rgba(255,255,255,.66);
    color: var(--navo-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: .18s ease;
}

.restfull-menu-close:hover {
    border-color: rgba(142,62,84,.35);
    background: #ffffff;
    transform: rotate(5deg);
}

.navo-side-account-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.navo-side-account-item,
.navo-side-account-list li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navo-side-account-list a {
    min-height: 43px;
    padding: 7px 10px;
    border: 1px solid rgba(142,62,84,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.48);
    color: var(--navo-brand);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
    transition: .18s ease;
    backdrop-filter: blur(6px);
}

.navo-side-account-list a:hover {
    border-color: rgba(142,62,84,.28);
    background: rgba(255,255,255,.86);
    transform: translateX(2px);
}

.navo-side-account-icon {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 8px;
    background: rgba(142,62,84,.08);
    color: var(--navo-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navo-side-account-icon svg {
    width: 17px;
    height: 17px;
    fill: var(--navo-brand);
    stroke: var(--navo-brand);
}

.navo-side-categories-area {
    position: relative;
    margin-top: -17px;
    min-height: calc(100dvh - 232px);
    padding: 21px 16px 34px;
    border-radius: 21px 21px 0 0;
    border-top: 1px solid rgba(255,255,255,.92);
    background: rgba(255,255,255,.86);
    box-shadow: 0 -10px 28px rgba(82,46,55,.10);
    backdrop-filter: blur(16px);
}

.navo-side-categories-area h3 {
    margin: 0 0 13px;
    color: var(--navo-brand);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.navo-side-categories-area h3::before {
    content: "";
    width: 4px;
    height: 17px;
    border-radius: 999px;
    background: var(--navo-brand);
}

.navo-side-category-list,
.navo-side-subcategory-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navo-side-category-item {
    margin: 0 0 7px;
    padding: 0;
    list-style: none;
}

.navo-side-category-row {
    min-height: 50px;
    padding: 5px 6px;
    border: 1px solid rgba(142,62,84,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.58);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    align-items: center;
    transition: .18s ease;
}

.navo-side-category-row:hover,
.navo-side-category-item.is-open .navo-side-category-row {
    border-color: rgba(142,62,84,.23);
    background: rgba(255,248,250,.94);
    box-shadow: 0 5px 15px rgba(72,38,47,.06);
}

.navo-side-category-link {
    min-width: 0;
    padding: 2px;
    color: #3a3033;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navo-side-category-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--navo-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navo-side-category-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.navo-side-cat-fallback {
    color: var(--navo-brand);
    font-size: 18px;
    line-height: 1;
}

.navo-side-category-name {
    min-width: 0;
    color: #3a3033;
    display: block;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navo-side-category-link:hover .navo-side-category-name {
    color: var(--navo-brand);
}

.navo-side-category-toggle {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #8c6b74;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.navo-side-category-toggle:hover {
    background: rgba(142,62,84,.07);
    color: var(--navo-brand);
}

.navo-side-category-toggle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform .18s ease;
}

.navo-side-category-item.is-open .navo-side-category-toggle svg {
    transform: rotate(180deg);
}

.navo-side-subcategory-list {
    display: none;
    margin: 5px 4px 0 47px;
    padding: 5px 10px 7px;
    border-left: 2px solid #edd8de;
}

.navo-side-category-item.is-open .navo-side-subcategory-list {
    display: grid;
    gap: 2px;
}

.navo-side-subcategory-list a {
    min-height: 30px;
    padding: 6px 5px;
    border-radius: 6px;
    color: #71666a;
    display: block;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 500;
}

.navo-side-subcategory-list a:hover {
    background: rgba(247,233,226,.72);
    color: var(--navo-brand);
}

.navo-side-menu-empty,
.navo-side-cat-empty {
    margin: 0;
    padding: 12px;
    border: 1px dashed #dfcbd1;
    border-radius: 10px;
    background: rgba(255,255,255,.65);
    color: #75666b;
    font-size: 12px;
    line-height: 1.5;
}

.restfull-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgba(25, 16, 19, .46);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(2px);
    transition: .24s ease;
}

.restfull-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.site-main {
    min-height: 500px;
}

@media (max-width: 1100px) {
    .restfull-header-inner {
        grid-template-columns: 205px minmax(260px, 1fr) 220px;
        gap: 13px;
    }

    .restfull-logo-link,
    .restfull-logo a,
    .restfull-logo .custom-logo-link {
        max-width: 150px;
    }

    .restfull-logo-img,
    .restfull-logo img,
    .restfull-logo .custom-logo {
        max-width: 142px;
    }

    .restfull-category-menu {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .restfull-utility-bar,
    .restfull-utility-marquee,
    .restfull-utility-track,
    .restfull-utility-group {
        height: 26px;
        min-height: 26px;
    }

    .restfull-utility-track {
        animation-duration: 19s;
    }

    .restfull-utility-group {
        min-width: 165vw;
        padding: 0 15px;
        justify-content: flex-start;
        gap: 24px;
    }

    .restfull-utility-item {
        font-size: 9px;
    }

    .restfull-header-inner {
        width: 100%;
        min-height: 62px;
        grid-template-columns: 142px minmax(0, 1fr) 38px;
        gap: 6px;
        padding: 7px 6px;
    }

    .restfull-left-area {
        gap: 5px;
        overflow: visible;
    }

    .restfull-menu-btn {
        flex-basis: 34px;
        width: 34px;
        height: 39px;
        border-radius: 8px;
    }

    .restfull-menu-btn span {
        width: 18px;
    }

    .restfull-logo-link,
    .restfull-logo a,
    .restfull-logo .custom-logo-link {
        max-width: 102px;
        min-height: 42px;
        padding: 2px 4px;
        overflow: visible;
    }

    .restfull-logo-desktop:not(.restfull-logo-mobile-fallback) {
        display: none !important;
    }

    .restfull-logo-mobile,
    .restfull-logo-mobile-fallback {
        display: block !important;
    }

    .restfull-logo-img,
    .restfull-logo img,
    .restfull-logo .custom-logo,
    .restfull-logo-mobile,
    .restfull-logo-mobile-fallback {
        max-width: 96px;
        max-height: 40px;
    }

    .restfull-logo-text {
        max-width: 90px;
        margin-left: 3px;
        overflow: hidden;
        font-size: 13px;
        text-overflow: ellipsis;
    }

    .restfull-logo-mark {
        width: 26px;
        height: 26px;
        font-size: 18px;
    }

    .restfull-center-area {
        width: 100%;
    }

    .restfull-search {
        max-width: none;
        height: 40px;
        border-radius: 7px;
    }

    .restfull-search input[type="search"] {
        height: 38px;
        padding: 0 9px;
        font-size: 10px;
    }

    .restfull-search button {
        flex-basis: 39px;
        width: 39px;
        height: 38px;
    }

    .restfull-search button svg {
        width: 18px;
        height: 18px;
    }

    .restfull-right-area {
        display: none;
    }

    .restfull-mobile-cart-link {
        position: relative;
        width: 38px;
        height: 38px;
        border: 1px solid #dfc8ce;
        border-radius: 9px;
        background: rgba(255,255,255,.74);
        color: var(--navo-brand);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .restfull-mobile-cart-link svg {
        width: 21px;
        height: 21px;
        fill: var(--navo-brand);
    }

    .restfull-mobile-cart-count {
        position: absolute;
        top: -6px;
        right: -5px;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: var(--navo-brand);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 800;
        box-shadow: 0 2px 7px rgba(0,0,0,.16);
    }

    .restfull-category-menu {
        min-height: 75px;
        justify-content: flex-start;
        gap: 3px;
        padding: 6px 5px;
    }

    .restfull-category-item {
        min-width: 80px;
        max-width: 78px;
        min-height: 61px;
        padding: 3px;
    }

    .restfull-category-img {
        width: 38px;
        height: 38px;
    }

    .restfull-category-img img {
        max-width: 60px;
        max-height: 50px;
    }

    .restfull-category-title {
        font-size: 9px;
    }

    .restfull-side-menu {
        width: min(326px, 91vw);
    }

    .navo-side-top {
        min-height: 236px;
        padding: 17px 15px 28px;
    }

    .navo-side-menu-header {
        margin-bottom: 14px;
    }

    .navo-side-logo a {
        max-width: 158px;
        min-height: 48px;
        padding: 3px 5px;
    }

    .navo-side-logo-img {
        max-width: 142px;
        max-height: 40px;
    }

    .navo-side-account-list {
        gap: 6px;
    }

    .navo-side-account-list a {
        min-height: 40px;
    }

    .navo-side-categories-area {
        min-height: calc(100dvh - 219px);
        padding: 19px 13px 30px;
    }

    .navo-side-category-row {
        min-height: 47px;
    }
}

@media (max-width: 380px) {
    .restfull-header-inner {
        grid-template-columns: 130px minmax(0, 1fr) 36px;
        gap: 5px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .restfull-logo-link,
    .restfull-logo a,
    .restfull-logo .custom-logo-link {
        max-width: 91px;
    }

    .restfull-logo-img,
    .restfull-logo img,
    .restfull-logo .custom-logo,
    .restfull-logo-mobile,
    .restfull-logo-mobile-fallback {
        max-width: 86px;
    }

    .restfull-search input[type="search"] {
        padding: 0 7px;
        font-size: 9.4px;
    }

    .restfull-mobile-cart-link {
        width: 36px;
        height: 36px;
    }
}

/* =====================================================
   Live product search
===================================================== */
.restfull-search {
    position: relative;
    overflow: visible;
    z-index: 999999;
}

.restfull-live-search-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 9999999;
    display: none;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.restfull-live-search-panel.is-open { display: block; }

.restfull-live-search-head {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;
}

.restfull-live-search-list {
    max-height: 430px;
    overflow-y: auto;
}

.restfull-live-search-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f2ebe8;
    background: #ffffff;
    color: var(--text);
}

.restfull-live-search-item:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.restfull-live-search-item:last-child { border-bottom: 0; }

.restfull-live-search-img {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #ffffff;
}

.restfull-live-search-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.restfull-live-search-info { min-width: 0; }

.restfull-live-search-title {
    display: block;
    overflow: hidden;
    color: var(--text);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.restfull-live-search-cat {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.restfull-live-search-price {
    display: block;
    margin-top: 4px;
    color: var(--primary-deep);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
}

.restfull-live-search-stock {
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.restfull-live-search-stock.instock {
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #15803d;
}

.restfull-live-search-stock.outofstock {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.restfull-live-search-empty,
.restfull-live-search-loading {
    padding: 14px 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.restfull-live-search-footer {
    padding: 11px;
    border-top: 1px solid var(--border);
    background: #ffffff;
    text-align: center;
}

.restfull-live-search-view-all {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    transition: background .18s ease, transform .18s ease;
}

.restfull-live-search-view-all:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .restfull-live-search-panel {
        position: fixed;
        top: 76px;
        left: 8px;
        right: 8px;
        width: auto;
        max-height: calc(100vh - 100px);
    }

    .restfull-live-search-list { max-height: calc(100vh - 155px); }

    .restfull-live-search-item {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 9px 10px;
    }

    .restfull-live-search-img {
        width: 48px;
        height: 48px;
    }
}

/* Current header search icon requirement. */
.restfull-search button svg,
.restfull-search button svg path {
    fill: #ffffff;
    stroke: #ffffff;
    color: #ffffff;
}
