.rp-site-header {
    position: relative;
    z-index: var(--rp-z-header);
    margin-top: 30px;
}

@media (max-width: 767px) {
    .rp-site-header {
        margin-top: 10px;
    }
}

.rp-header-main {
    background: #322e2e;
    padding: 10px 20px;
    border-radius: 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-header-main__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: var(--rp-header-height-main);
    flex-wrap: wrap;
}

.rp-header-logo {
    flex-shrink: 0;
}

.rp-header-logo img {
    display: block;
    width: 100px;
    height: auto;
}

.rp-header-search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 760px;
}

.rp-mobile-trigger,
.rp-header-cart-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    color: #1e73be;
    cursor: pointer;
    padding: 0;
}

/* header category navigation */

.rp-desktop-only {
    display: none;
}

.rp-mobile-only {
    display: block;
}

@media (min-width: 1200px) {

    .rp-desktop-only {
        display: block;
    }

    .rp-mobile-only {
        display: none;
    }
}

/* Mobile Header*/

.rp-mobile-header__inner {

    display: grid;

    grid-template-columns: 50px 1fr auto;
    align-items: center;
    min-height: 50px;
}

.rp-mobile-menu-trigger {

    justify-self: start;
}

.rp-mobile-header__logo {
    justify-self: center;

}

.rp-mobile-search-trigger,
.rp-mobile-cart-trigger {
    justify-self: end;

}

.rp-mobile-header__actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0px;
}

.rp-mobile-header__logo img {
    width: 100px;
    height: auto;
}



.rp-mobile-menu-trigger,
.rp-mobile-search-trigger,
.rp-mobile-cart-trigger {
    background: transparent;
    border: 0;
    color: #1e73be;
    cursor: pointer;
    font-size: 24px;
}

.rp-mobile-cart-trigger {

    position: relative;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;



}

.rp-icon-search,
.rp-icon-cart {
    width: 38px;
    height: 38px;
    display: block;
}

.rp-mobile-cart-count {
    position: absolute;
    top: 0px;
    left: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ff2a2a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-header-cart-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.rp-header-cart-count {
    position: absolute;
    top: 0;
    left: 9px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ff2a2a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-cart-summary {
    display: flex;
    align-items: center;
    gap: 0px;
    color: #fff;
    margin-left: 15px;
}

.rp-cart-summary__amount {
    font-size: 14px;
    font-weight: 600;
}