
    :root {
        --cor-laranja : #ee4d2d;
        --cinza-claro : #f1f1f1;
    }

    body, html {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden;
    }

    #site-header,
    #site-header * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    #site-header {
        position: sticky;
        top: 0;
        z-index: 1040;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,.04);
    }

    #site-header .navbar-main {
        background: #fff;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--cinza-claro);
    }

    #site-header .navbar-main .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    #site-header .logo-img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        flex-shrink: 0;
    }

    #site-header .search-group {
        display: flex;
        align-items: center;
        flex: 1;
        max-width: 900px;
        margin: 0 2rem;
        position: relative;
    }

    #site-header .search-group select {
        width: auto;
        min-width: 120px;
        padding: 0 12px;
        border-radius: 20px 0 0 20px;
        height: 44px;
        border: 1px solid #ccc;
        border-right: none;
    }

    #site-header .search-group input {
        flex: 1;
        height: 44px;
        border: 1px solid #ccc;
        border-left: none;
        border-radius: 0;
        padding: 0 1rem;
        font-size: 1rem;
    }

    #site-header .search-group .clear-search {
        position: absolute;
        right: 48px;
        top: 10px;
        font-size: 18px;
        cursor: pointer;
        display: none;
        color: #888;
    }

    #site-header .search-group button {
        height: 44px;
        border-radius: 0 20px 20px 0;
        border: 1px solid #ccc;
        border-left: none;
        padding: 0 16px;
        background: #fff;
    }

    #site-header .navbar-nav {
        display: flex;
        align-items: center;
        gap: 1.2rem;
    }

    #site-header .nav-item {
        display: flex;
        align-items: center;
        position: relative;
    }

    #site-header .nav-icon {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #222;
        position: relative;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #dropdownPerfil {
        margin-right: 0.5rem;
    }

    .badge-bubble {
        position: absolute;
        top: -6px;
        right: -10px;
        background: var(--cor-laranja);
        color: #fff;
        font-size: 0.65rem;
        padding: 2px 6px;
        border-radius: 1rem;
        line-height: 1;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        z-index: 1050;
        display: none;
        min-width: 220px;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,.08);
        font-family: 'Segoe UI', sans-serif;
        background-color: #fff;
        margin-top: 8px !important;
    }

    .dropdown-menu.show {
        display: block;
    }

    .mini-cart {
        width: 280px;
        padding: 1rem;
        font-size: 0.95rem;
    }
