/* SESSION 754 STOREFRONT CUSTOMER ACCOUNT ENTRY START */

.ep-account-menu {
    position: relative;
    flex: 0 0 auto;
}

.ep-account-menu__summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid var(--shop-border, #d7e5e9);
    border-radius: 999px;
    background: #ffffff;
    color: var(--shop-ink, #13243a);
    box-shadow: 0 1px 2px rgba(14, 42, 58, 0.06);
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.ep-account-menu__summary::-webkit-details-marker {
    display: none;
}

.ep-account-menu__summary:hover,
.ep-account-menu__summary:focus-visible,
.ep-account-menu[open] > .ep-account-menu__summary {
    border-color: rgba(21, 95, 159, 0.38);
    background: #eaf3fb;
    color: #0f4778;
    outline: none;
}

.ep-account-menu__summary:focus-visible {
    box-shadow:
        0 0 0 3px rgba(21, 95, 159, 0.18),
        0 1px 2px rgba(14, 42, 58, 0.06);
}

.ep-account-menu__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ep-account-menu.is-authenticated .ep-account-menu__summary {
    border-color: rgba(21, 95, 159, 0.34);
    background: #f4f9fd;
}

.ep-account-menu.is-authenticated .ep-account-menu__summary::after {
    width: 7px;
    height: 7px;
    margin-top: -15px;
    margin-left: -9px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #1769aa;
    content: "";
}

.ep-account-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 140;
    display: grid;
    min-width: 250px;
    padding: 10px;
    border: 1px solid var(--shop-border, #d7e5e9);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(14, 42, 58, 0.18);
}

.ep-account-menu:not([open]) > .ep-account-menu__panel {
    display: none;
}

.ep-account-menu [data-customer-account-signed-out],
.ep-account-menu [data-customer-account-signed-in] {
    display: grid;
    gap: 8px;
}

.ep-account-menu [hidden] {
    display: none !important;
}

.ep-account-menu__eyebrow {
    margin: 2px 4px 3px;
    color: #62748c;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ep-account-menu__identity {
    display: block;
    margin: 0 4px 6px;
    overflow: hidden;
    color: var(--shop-ink, #13243a);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header nav .ep-account-menu__panel a,
.ep-account-menu__logout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    padding: 10px 13px;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.site-header nav .ep-account-menu__primary {
    border: 1px solid #155f9f;
    background: #155f9f;
    color: #ffffff;
}

.site-header nav .ep-account-menu__primary:hover,
.site-header nav .ep-account-menu__primary:focus-visible {
    background: #0f4778;
    color: #ffffff;
}

.site-header nav .ep-account-menu__secondary,
.ep-account-menu__logout {
    border: 1px solid var(--shop-border, #d7e5e9);
    background: #ffffff;
    color: var(--shop-ink, #13243a);
}

.site-header nav .ep-account-menu__secondary:hover,
.site-header nav .ep-account-menu__secondary:focus-visible,
.ep-account-menu__logout:hover,
.ep-account-menu__logout:focus-visible {
    border-color: rgba(21, 95, 159, 0.34);
    background: #eaf3fb;
    color: #0f4778;
}

.ep-account-menu__logout:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 980px) {
    .site-header nav .ep-account-menu__panel a {
        display: flex;
    }
}

@media (max-width: 640px) {
    .ep-account-menu__summary {
        width: 40px;
        min-height: 38px;
        padding: 0;
    }

    .ep-account-menu__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .ep-account-menu__panel {
        min-width: min(280px, calc(100vw - 24px));
    }
}

/* SESSION 754 STOREFRONT CUSTOMER ACCOUNT ENTRY END */

/* SESSION 755 DESKTOP HEADER HERO WIDTH ALIGNMENT START */
@media (min-width: 981px) {
    .site-header .header-inner {
        width: min(1040px, calc(100% - 48px)) !important;
        max-width: 1040px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
/* SESSION 755 DESKTOP HEADER HERO WIDTH ALIGNMENT END */
