/* =========================================================
   PROPERA HEADER — CLEAN VERSION
   Один набор правил без дублей и финальных override-блоков
   ========================================================= */

/* ---------------------------------------------------------
   BASE
   --------------------------------------------------------- */

.propera-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    color: #111;
}

.propera-header,
.propera-header * {
    box-sizing: border-box;
}

.propera-header a {
    text-decoration: none !important;
}

.propera-header button,
.propera-header input {
    font-family: inherit !important;
}

.propera-header [hidden] {
    display: none !important;
}

.propera-header__container {
    width: min(1470px, calc(100% - 80px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   TOP BAR
   --------------------------------------------------------- */

.propera-header__top {
    height: 42px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.propera-header__top .propera-header__container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.propera-header__top-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.propera-header__top-menu a,
.propera-header__top-menu a:visited {
    color: #222 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;

    transition: color .2s ease;
}

.propera-header__top-menu a:hover,
.propera-header__top-menu a:focus {
    color: #8f2a91 !important;
}


/* ---------------------------------------------------------
   MAIN HEADER
   --------------------------------------------------------- */

.propera-header__main {
    position: relative;
    z-index: 1000;

    height: 88px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.propera-header__main .propera-header__container {
    display: flex;
    align-items: center;
    height: 100%;
}


/* =========================================================
   PROPERA — LOGO
   ========================================================= */

.propera-header__logo {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;

    height: 100px !important;

    flex: 0 0 100px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;
}

.propera-header__logo .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100px !important;
    height: 100px !important;

    max-width: 100px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.propera-header__logo .custom-logo {
    display: block !important;

    width: 100px !important;
    height: 100px !important;

    max-width: 100px !important;
    max-height: 100px !important;

    object-fit: contain !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ---------------------------------------------------------
   MAIN NAVIGATION
   --------------------------------------------------------- */

.propera-header__nav {
    display: flex !important;
    align-items: center !important;
    gap: 18px;

    height: 100%;
    white-space: nowrap;
}

.propera-header__nav a,
.propera-header__catalog-button,
.propera-header__catalog-button:visited {
    display: inline-flex !important;
    align-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #222 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    text-decoration: none !important;
    white-space: nowrap;

    cursor: pointer;

    transition: color .2s ease;
}

.propera-header__nav a:hover,
.propera-header__nav a:focus,
.propera-header__nav a:active,
.propera-header__catalog-button:hover,
.propera-header__catalog-button:focus,
.propera-header__catalog-button:active {
    color: #8f2a91 !important;
    background: transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
}


/* ---------------------------------------------------------
   CATALOG BUTTON + SVG ARROW
   --------------------------------------------------------- */

.propera-header__catalog-button {
    gap: 7px !important;
    flex-direction: row !important;
    justify-content: center !important;
    vertical-align: middle;
}

.propera-header__catalog-button > span:first-child {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
}

.propera-header__arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 12px;
    width: 12px !important;
    height: 8px !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0 !important;
    color: inherit !important;

    transform: none;
    transition: transform .2s ease;
}

.propera-header__arrow svg {
    display: block !important;

    width: 12px !important;
    height: 8px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;
    overflow: visible;
}

.propera-header__arrow path {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.propera-header__catalog-button[aria-expanded="true"] .propera-header__arrow {
    transform: rotate(180deg);
}


/* ---------------------------------------------------------
   CTA BUTTONS
   --------------------------------------------------------- */

.propera-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 22px;
    flex-shrink: 0;
}

.propera-header__button,
.propera-header__button:visited {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 44px !important;
    min-height: 44px !important;
    padding: 0 21px !important;

    border-radius: 24px !important;

    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    white-space: nowrap;

    text-decoration: none !important;

    box-shadow: none !important;
    transform: none;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.propera-header__button:hover {
    transform: translateY(-1px);
}

/* Купить ласты */
.propera-header__button--primary,
.propera-header__button--primary:visited {
    color: #fff !important;
    background: #8f2a91 !important;
    border: 1px solid #8f2a91 !important;
}

.propera-header__button--primary:hover,
.propera-header__button--primary:focus,
.propera-header__button--primary:active {
    color: #fff !important;
    background: #762078 !important;
    border-color: #762078 !important;
}

/* Стать амбассадором */
.propera-header__button--secondary,
.propera-header__button--secondary:visited {
    color: #8f2a91 !important;
    background: #fff !important;
    border: 1px solid #8f2a91 !important;
}

.propera-header__button--secondary:hover,
.propera-header__button--secondary:focus,
.propera-header__button--secondary:active {
    color: #fff !important;
    background: #8f2a91 !important;
    border-color: #8f2a91 !important;
}

/* Убираем псевдоэлементы темы/Elementor */
.propera-header__nav a::before,
.propera-header__nav a::after,
.propera-header__button::before,
.propera-header__button::after {
    display: none !important;
    content: none !important;
}


/* ---------------------------------------------------------
   SEARCH
   --------------------------------------------------------- */

.propera-header__search {
    display: flex;
    align-items: center;

    width: 175px;
    margin-left: auto;
    flex-shrink: 0;
}

.propera-header__search form {
    position: relative;
    width: 100%;
    margin: 0 !important;
}

.propera-header__search input[type="search"] {
    display: block !important;

    width: 100% !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 14px 0 38px !important;

    box-sizing: border-box;

    color: #222 !important;
    background: #fff !important;
    border: 1px solid #bdbdbd !important;
    border-radius: 20px !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 38px !important;

    outline: none !important;
    box-shadow: none !important;
}

.propera-header__search input[type="search"]::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.propera-header__search input[type="search"]:focus {
    color: #222 !important;
    background: #fff !important;
    border-color: #8f2a91 !important;
    box-shadow: 0 0 0 2px rgba(143, 42, 145, .08) !important;
}

/* Лупа */
.propera-header__search form::before {
    content: "";

    position: absolute;
    z-index: 1;
    left: 13px;
    top: 50%;

    width: 11px;
    height: 11px;

    border: 1.5px solid #aaa;
    border-radius: 50%;

    transform: translateY(-55%);
    pointer-events: none;
}

.propera-header__search form::after {
    content: "";

    position: absolute;
    z-index: 1;
    left: 24px;
    top: calc(50% + 5px);

    width: 6px;
    height: 1.5px;

    background: #aaa;

    transform: rotate(45deg);
    transform-origin: left center;

    pointer-events: none;
}


/* ---------------------------------------------------------
   ICONS
   --------------------------------------------------------- */

.propera-header__icons {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;

    gap: 20px;
    margin-left: 28px;

    flex-shrink: 0;
}

.propera-header__icon,
.propera-header__icon:visited {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 28px !important;
    height: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #111 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    line-height: 1 !important;
    text-decoration: none !important;

    transition: color .2s ease, transform .2s ease;
}

.propera-header__icon:hover,
.propera-header__icon:focus,
.propera-header__icon:active {
    color: #8f2a91 !important;
    background: transparent !important;
    text-decoration: none !important;
}

.propera-header__icon:hover {
    transform: translateY(-1px);
}

.propera-header__svg {
    display: block !important;

    width: 23px !important;
    height: 23px !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;

    color: inherit !important;
}

.propera-header__svg--wishlist {
    width: 24px !important;
    height: 24px !important;
}

.propera-header__svg--account {
    width: 23px !important;
    height: 23px !important;
}

.propera-header__svg--cart {
    width: 24px !important;
    height: 24px !important;
}


/* ---------------------------------------------------------
   CATALOG DROPDOWN
   --------------------------------------------------------- */

.propera-header__mega {
    position: absolute;
    z-index: 1100;

    top: 130px;
    left: 0;

    width: 100%;

    background: transparent;

    pointer-events: none;
}


/* ---------------------------------------------------------
   MAIN DROPDOWN
   --------------------------------------------------------- */

.propera-header__catalog-dropdown {
    position: relative;

    width: 360px;

    margin-left: max(
        40px,
        calc((100% - 1470px) / 2 + 100px)
    );

    padding: 10px 0;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 0 0 8px 8px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

    pointer-events: auto;
}


/* ---------------------------------------------------------
   CATEGORY LIST
   --------------------------------------------------------- */

.propera-header__catalog-list {
    margin: 0;
    padding: 0;

    list-style: none;
}


/* ---------------------------------------------------------
   CATEGORY ITEM
   --------------------------------------------------------- */

.propera-header__catalog-item {
    position: relative;

    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   CATEGORY LINKS
   --------------------------------------------------------- */

.propera-header__catalog-link {
    position: relative;

    display: flex !important;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 44px;

    margin: 0 !important;
    padding: 0 20px !important;

    color: #222 !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;

    text-align: left;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        color .2s ease,
        background-color .2s ease;
}


/* hover */

.propera-header__catalog-link:hover,
.propera-header__catalog-link:focus {
    color: #8f2a91 !important;
    background: #faf7fa !important;

    outline: none !important;
}


/* ---------------------------------------------------------
   PARENT CATEGORY
   --------------------------------------------------------- */

.propera-header__catalog-link--parent {
    font-weight: 500 !important;
}


/* ---------------------------------------------------------
   ARROW
   --------------------------------------------------------- */

.propera-header__catalog-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 8px;
    height: 12px;

    flex: 0 0 8px;

    margin-left: 15px;
}


.propera-header__catalog-arrow svg {
    display: block;

    width: 8px;
    height: 12px;

    fill: none;

    overflow: visible;
}


.propera-header__catalog-arrow path {
    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------------------------------------------------------
   SUBMENU
   --------------------------------------------------------- */

.propera-header__catalog-submenu {
    position: absolute;

    top: -1px;
    left: calc(100% - 1px);

    width: 300px;

    padding: 14px 0;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 0 8px 8px 8px;

    box-shadow: 12px 12px 30px rgba(0, 0, 0, .08);

    z-index: 1200;
}


/* JS / hidden */

.propera-header__catalog-submenu[hidden] {
    display: none !important;
}


/* ---------------------------------------------------------
   SUBMENU TITLE
   --------------------------------------------------------- */

.propera-header__catalog-submenu-title {
    display: block;

    margin: 0 0 7px;

    padding: 8px 20px;

    color: #111 !important;

    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;

    text-decoration: none !important;
}


.propera-header__catalog-submenu-title:hover,
.propera-header__catalog-submenu-title:focus {
    color: #8f2a91 !important;
}


/* ---------------------------------------------------------
   SUBMENU LIST
   --------------------------------------------------------- */

.propera-header__catalog-submenu ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.propera-header__catalog-submenu li {
    margin: 0;
    padding: 0;
}


.propera-header__catalog-submenu li a {
    display: block;

    padding: 8px 20px;

    color: #666 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;

    text-decoration: none !important;

    transition:
        color .2s ease,
        background-color .2s ease;
}


.propera-header__catalog-submenu li a:hover,
.propera-header__catalog-submenu li a:focus {
    color: #8f2a91 !important;
    background: #faf7fa !important;
}


/* ---------------------------------------------------------
   ALL PRODUCTS
   --------------------------------------------------------- */

.propera-header__catalog-all {
    display: block;

    margin-top: 8px;
    padding: 14px 20px 10px;

    border-top: 1px solid #eee;

    color: #8f2a91 !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;

    text-decoration: none !important;

    transition: color .2s ease;
}


.propera-header__catalog-all:hover,
.propera-header__catalog-all:focus {
    color: #762078 !important;
}


/* ---------------------------------------------------------
   OPEN STATE
   --------------------------------------------------------- */

.propera-header--mega-open .propera-header__mega {
    pointer-events: auto;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1250px) and (min-width: 901px) {

    .propera-header__catalog-dropdown {
        width: 340px;

        margin-left: 140px;
    }

    .propera-header__catalog-submenu {
        width: 280px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .propera-header__mega {
        display: none !important;
    }

}


/* ---------------------------------------------------------
   MOBILE TOGGLE
   --------------------------------------------------------- */

.propera-header__mobile-toggle {
    display: none;
}


/* ---------------------------------------------------------
   STICKY HEADER
   --------------------------------------------------------- */

.propera-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.propera-header.is-sticky .propera-header__top {
    display: none;
}

.propera-header.is-sticky .propera-header__main {
    height: 72px;
}

.propera-header.is-sticky .propera-header__mega {
    top: 72px;
}

body.admin-bar .propera-header.is-sticky {
    top: 32px;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1250px) {

    .propera-header__container {
        width: calc(100% - 40px);
    }

    .propera-header__actions {
        gap: 8px;
        margin-left: 14px;
    }

    .propera-header__button {
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 14px !important;
    }

    .propera-header__search {
        width: 145px;
    }

    .propera-header__icons {
        gap: 14px;
        margin-left: 18px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .propera-header__top {
        display: none;
    }

    .propera-header__main {
        height: 70px !important;
        min-height: 70px !important;
        position: relative;
    }

    .propera-header__main .propera-header__container {
        display: grid !important;
        grid-template-columns: 40px minmax(0, 1fr) auto;
        align-items: center !important;

        width: 100%;
        height: 70px;
        min-height: 70px;

        padding: 0 16px;
    }

    /* desktop elements */
    .propera-header__nav,
    .propera-header__actions,
    .propera-header__search {
        display: none !important;
    }

    /* hamburger */
    .propera-header__mobile-toggle {
        grid-column: 1;
        grid-row: 1;

        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 34px !important;
        height: 34px !important;

        margin: 0 !important;
        padding: 5px !important;

        flex-direction: column;
        gap: 5px;

        color: #111 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;

        cursor: pointer;
        flex-shrink: 0;
    }

    .propera-header__mobile-toggle span {
        display: block;

        width: 22px;
        height: 1.5px;

        background: #111;
        border-radius: 2px;

        transition: transform .2s ease, opacity .2s ease;
    }

    .propera-header__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .propera-header__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .propera-header__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    /* =========================================================
   MOBILE — LOGO
   ========================================================= */

	
	.propera-header__logo {
    transform: translateX(-60px) !important;
}
	
.propera-header__logo {
    grid-column: 2;
    grid-row: 1;

    justify-self: center !important;

    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;

    height: 60px !important;

    flex: 0 0 60px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;
}

.propera-header__logo .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;

    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.propera-header__logo img.custom-logo {
    display: block !important;

    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;

    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;

    object-fit: contain !important;

    margin: 0 !important;
    padding: 0 !important;
}

    /* mobile menu */
    .propera-header__mobile-menu {
        position: absolute;
        z-index: 1100;

        top: 100%;
        left: 0;
        right: 0;

        display: block;

        max-height: calc(100vh - 70px);
        overflow-y: auto;

        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);

        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
    }

    .propera-header__mobile-menu.is-open,
    .propera-header__mobile-menu[aria-hidden="false"] {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .propera-header__mobile-menu-inner {
        padding: 18px 20px 25px;
    }

    /* mobile search */
    .propera-header__mobile-search {
        margin-bottom: 20px;
    }

    .propera-header__mobile-search form {
        position: relative;
        margin: 0;
    }

    .propera-header__mobile-search input[type="search"] {
        display: block !important;

        width: 100% !important;
        height: 44px !important;

        padding: 0 16px !important;

        color: #111 !important;
        background: #fff !important;
        border: 1px solid #d8d8d8 !important;
        border-radius: 24px !important;

        font-size: 15px !important;
        line-height: 44px !important;

        outline: none !important;
        box-shadow: none !important;
    }

    .propera-header__mobile-search input[type="search"]::placeholder {
        color: #999 !important;
        opacity: 1 !important;
    }

    .propera-header__mobile-search input[type="search"]:focus {
        border-color: #8f2a91 !important;
        box-shadow: 0 0 0 2px rgba(143, 42, 145, .08) !important;
    }

    /* mobile nav */
    .propera-header__mobile-nav {
        display: flex;
        flex-direction: column;

        border-top: 1px solid #eee;
    }

    .propera-header__mobile-nav > a,
    .propera-header__mobile-catalog {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        min-height: 50px;

        margin: 0 !important;
        padding: 0 !important;

        color: #111 !important;
        background: transparent !important;
        border: 0 !important;
        border-bottom: 1px solid #eee !important;
        box-shadow: none !important;

        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
        text-align: left;

        text-decoration: none !important;
        cursor: pointer;
    }

    .propera-header__mobile-nav > a:hover,
    .propera-header__mobile-nav > a:focus,
    .propera-header__mobile-catalog:hover,
    .propera-header__mobile-catalog:focus {
        color: #8f2a91 !important;
        background: transparent !important;
    }

    .propera-header__mobile-catalog .propera-header__arrow {
        width: 12px !important;
        height: 8px !important;
    }

    .propera-header__mobile-catalog .propera-header__arrow svg {
        width: 12px !important;
        height: 8px !important;
    }

    /* mobile CTA */
    .propera-header__mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;

        padding: 20px 0;
    }

    .propera-header__mobile-button,
    .propera-header__mobile-button:visited {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100%;
        min-height: 46px;

        margin: 0 !important;
        padding: 0 18px !important;

        border-radius: 24px !important;

        font-size: 15px !important;
        font-weight: 600 !important;
        line-height: 1 !important;

        text-decoration: none !important;

        transition:
            background-color .2s ease,
            color .2s ease,
            border-color .2s ease;
    }

    .propera-header__mobile-button--primary {
        color: #fff !important;
        background: #8f2a91 !important;
        border: 1px solid #8f2a91 !important;
    }

    .propera-header__mobile-button--primary:hover,
    .propera-header__mobile-button--primary:focus {
        color: #fff !important;
        background: #762078 !important;
        border-color: #762078 !important;
    }

    .propera-header__mobile-button--secondary {
        color: #8f2a91 !important;
        background: #fff !important;
        border: 1px solid #8f2a91 !important;
    }

    .propera-header__mobile-button--secondary:hover,
    .propera-header__mobile-button--secondary:focus {
        color: #fff !important;
        background: #8f2a91 !important;
        border-color: #8f2a91 !important;
    }

    /* mobile extra links */
    .propera-header__mobile-extra {
        display: flex;
        flex-direction: column;

        padding-top: 10px;
        border-top: 1px solid #eee;
    }

    .propera-header__mobile-extra a,
    .propera-header__mobile-extra a:visited {
        display: flex;
        align-items: center;

        min-height: 42px;

        color: #555 !important;
        background: transparent !important;

        font-size: 14px !important;
        line-height: 1.2 !important;

        text-decoration: none !important;
    }

    .propera-header__mobile-extra a:hover,
    .propera-header__mobile-extra a:focus {
        color: #8f2a91 !important;
    }

    /* sticky mobile */
    .propera-header.is-sticky .propera-header__main,
    .propera-header__main {
        height: 70px !important;
    }

    .propera-header.is-sticky .propera-header__mega {
        top: 70px;
    }

    body.admin-bar .propera-header.is-sticky {
        top: 46px;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 520px) {

    .propera-header__main .propera-header__container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .propera-header__icons {
        gap: 10px !important;
    }

    .propera-header__icon {
        width: 24px !important;
        height: 24px !important;
    }

    .propera-header__svg,
    .propera-header__svg--wishlist,
    .propera-header__svg--account,
    .propera-header__svg--cart {
        width: 20px !important;
        height: 20px !important;
    }

    .propera-header__logo img.custom-logo {
        max-width: 24px !important;
        max-height: 24px !important;
    }

    .propera-header__mobile-menu-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* ---------------------------------------------------------
   WORDPRESS ADMIN BAR — MOBILE
   --------------------------------------------------------- */

@media (max-width: 782px) {

    body.admin-bar .propera-header.is-sticky {
        top: 46px;
    }
}





/* =========================================================
   FORCE HIDE MOBILE HEADER ELEMENTS ON DESKTOP
   ========================================================= */

@media (min-width: 901px) {

    .propera-header__mobile-toggle,
    .propera-header__mobile-menu,
    .propera-header__mobile-search {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

}




/* =========================================================
   MOBILE CATALOG
   ========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------------------
       CATALOG CONTAINER
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown {
        display: block;

        width: 100%;

        margin: 0;
        padding: 0;

        background: #fff;

        border: 0;
        border-radius: 0;

        box-shadow: none;
    }


    .propera-header__mobile-catalog-dropdown[hidden] {
        display: none !important;
    }


    /* -----------------------------------------------------
       CATEGORY LIST
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-list {
        margin: 0;
        padding: 0;

        border-top: 0;
    }


    /* -----------------------------------------------------
       CATEGORY ITEM
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-item {
        width: 100%;

        margin: 0;
        padding: 0;

        border: 0;
    }


    /* -----------------------------------------------------
       CATEGORY LINK
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-link {

        display: flex !important;
        align-items: center;
        justify-content: space-between;

        width: 100% !important;

        min-height: 44px;

        margin: 0 !important;
        padding: 0 16px 0 28px !important;

        color: #333 !important;
        background: #fff !important;

        border: 0 !important;
        border-bottom: 1px solid #eee !important;

        border-radius: 0 !important;

        font-size: 14px !important;
        font-weight: 400 !important;

        text-align: left;

        box-shadow: none !important;
    }


    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-link:hover,

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-link:focus {

        color: #8f2a91 !important;
        background: #faf7fa !important;
    }


    /* -----------------------------------------------------
       PARENT CATEGORY
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-link--parent {

        font-weight: 500 !important;
    }


    /* -----------------------------------------------------
       ARROW
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-arrow {

        width: 8px;
        height: 12px;

        flex: 0 0 8px;

        margin-left: 10px;
    }


    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-arrow svg {

        width: 8px;
        height: 12px;
    }


    /* -----------------------------------------------------
       OPEN CATEGORY ARROW
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-item.is-open
    .propera-header__catalog-arrow {

        transform: rotate(90deg);
    }


    /* -----------------------------------------------------
       SUBMENU
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu {

        position: static;

        display: block;

        width: 100%;

        margin: 0;
        padding: 8px 0 10px;

        background: #fafafa;

        border: 0;
        border-bottom: 1px solid #eee;

        border-radius: 0;

        box-shadow: none;

        z-index: auto;
    }


    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu[hidden] {

        display: none !important;
    }


    /* -----------------------------------------------------
       SUBMENU TITLE
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu-title {

        display: block;

        margin: 0;

        padding: 7px 16px 7px 44px;

        color: #333 !important;

        font-size: 13px !important;
        font-weight: 500 !important;

        line-height: 1.3 !important;
    }


    /* -----------------------------------------------------
       SUBMENU LIST
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu ul {

        margin: 0;
        padding: 0;

        list-style: none;
    }


    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu li {

        margin: 0;
        padding: 0;
    }


    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu li a {

        display: block;

        padding: 7px 16px 7px 44px;

        color: #777 !important;

        font-size: 13px !important;
        font-weight: 400 !important;

        line-height: 1.35;

        border: 0;

        background: transparent !important;
    }


    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu li a:hover,

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-submenu li a:focus {

        color: #8f2a91 !important;
    }


    /* -----------------------------------------------------
       ALL PRODUCTS
       ----------------------------------------------------- */

    .propera-header__mobile-catalog-dropdown
    .propera-header__catalog-all {

        margin: 0;

        padding: 14px 16px 14px 28px;

        color: #8f2a91 !important;

        background: #fff;

        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;

        font-size: 14px !important;
        font-weight: 500 !important;
    }

}