/* Yarn Explorers — shop header (Figma-aligned). Scope under .ye-header-figma */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.ye-header-figma.ye-global-header {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.ye-header-figma .ye-global-header-bar {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    min-height: 76px;
    gap: 16px 20px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

/* ---- Brand (icon + wordmark + tagline) ---- */
.ye-header-figma .ye-brand {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #0a1629;
    flex-shrink: 0;
    min-width: 0;
}

.ye-header-figma .ye-brand:hover {
    color: #0a1629;
    opacity: 0.92;
}

/* Channel / default Bagisto logo (build/assets/logo.svg is white-on-transparent — wrong for white header) */
.ye-header-figma .ye-brand--logo {
    align-items: center;
}

.ye-header-figma .ye-brand-logo {
    display: block;
    width: auto;
    max-width: min(190px, 38vw);
    height: auto;
    max-height: 44px;
    object-fit: contain;
}

.ye-header-figma .ye-brand-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ye-header-figma .ye-brand-icon svg {
    width: 52px;
    height: 52px;
}

.ye-header-figma .ye-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.ye-header-figma .ye-brand-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a1629;
}

.ye-header-figma .ye-brand-tagline {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    color: #4b5563;
}

/* ---- Center nav ---- */
.ye-header-figma .ye-global-top-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 2.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.ye-header-figma .ye-global-top-nav::-webkit-scrollbar {
    height: 4px;
}

.ye-header-figma .ye-global-top-nav a {
    color: #4b5563;
    text-decoration: none;
    padding: 0.35rem 0 0.6rem;
    border-bottom: 3px solid transparent;
    transition:
        color 0.15s ease,
        border-color 0.15s ease;
}

.ye-header-figma .ye-global-top-nav a:hover {
    color: #0a1629;
}

.ye-header-figma .ye-global-top-nav a.is-active {
    color: #0a1629;
    font-weight: 600;
    border-bottom-color: #0a1629;
}

/* ---- Right utilities ---- */
.ye-header-figma .ye-global-right {
    justify-self: end;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    flex-shrink: 0;
    min-width: min-content;
    max-width: 100%;
}

/* Icon rail: search, bell, cart, profile share one baseline (v-dropdown host is custom element) */
.ye-header-figma .ye-global-right > a.ye-global-icon,
.ye-header-figma .ye-global-right > .ye-global-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    box-sizing: border-box;
    line-height: 1;
}

.ye-header-figma .ye-global-right > v-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    min-height: 2.5rem;
}

.ye-header-figma .ye-global-right > v-dropdown > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.ye-header-figma .ye-global-right button.ye-global-icon {
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    box-sizing: border-box;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
}

.ye-header-figma .ye-global-icon {
    color: #0a1629;
    text-decoration: none;
    font-size: 1.25rem;
}

.ye-header-figma .ye-global-icon:hover {
    color: #111827;
}

.ye-header-figma .ye-global-bell,
.ye-header-figma .ye-global-profile {
    transform: none;
}

.ye-header-figma .ye-global-bell-icon {
    width: 22px;
    height: 22px;
    color: #0a1629;
    flex-shrink: 0;
}

.ye-header-figma .ye-global-bell--guest {
    align-items: center;
    justify-content: center;
}

.ye-header-figma .ye-global-cart .ye-mini-cart-trolley {
    color: #0a1629;
    font-size: 1.25rem !important;
    line-height: 1;
}

.ye-header-figma .ye-global-cart .ye-mini-cart-trolley-svg {
    color: inherit;
    width: 22px;
    height: 22px;
}

.ye-header-figma .ye-global-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0a1629;
    background: #fff;
    cursor: pointer;
    gap: 6px;
}

.ye-header-figma .ye-global-pill--static {
    cursor: default;
    pointer-events: none;
}

.ye-header-figma .ye-global-pill .icon-arrow-down {
    font-size: 0.65rem;
    opacity: 0.75;
}

.ye-header-figma .ye-global-locale-icon {
    width: 15px;
    height: 15px;
    color: #0a1629;
}

/* Primary LOGIN (guest) */
.ye-header-figma .ye-header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 1.35rem;
    border-radius: 50px;
    background: #0a1629;
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.ye-header-figma .ye-header-login:hover {
    background: #152a45;
    color: #fff !important;
}

.ye-header-figma .ye-header-login:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.ye-header-figma .ye-global-profile.ye-global-icon {
    border-radius: 50%;
}

.ye-header-figma .ye-global-pill:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Currency / language: native <details> (reliable vs v-dropdown in this header layout) */
.ye-header-figma .ye-global-right,
.ye-header-figma .ye-global-header-bar,
.ye-header-figma .ye-shell,
.ye-header-figma .ye-header-figma__inner {
    overflow: visible;
}

/* Expandable header search (icon toggles panel, same field pattern as mobile row) */
.ye-header-figma .ye-header-figma__inner {
    width: 100%;
    max-width: 100%;
}

.ye-header-figma .ye-header-search-panel {
    width: 100%;
    padding: 0.65rem 0 0.85rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.ye-header-figma .ye-header-search-panel[hidden] {
    display: none !important;
}

.ye-header-figma .ye-header-search-form {
    width: 100%;
    margin: 0;
}

.ye-header-figma .ye-header-search-toggle {
    cursor: pointer;
}

/* Pill search field (matches mobile / reference: one bar, search left, camera right) */
.ye-header-figma .ye-header-search-field {
    position: relative;
    width: 100%;
}

.ye-header-figma .ye-header-search-field__icon {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 1.1rem;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 1.35rem;
    line-height: 1;
    color: #0f172a;
}

.ye-header-figma .ye-header-search-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #e3e8ef;
    border-radius: 9999px;
    background: #fff;
    padding-block: 0.72rem;
    padding-inline: 2.85rem 1.1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.35;
    color: #0f172a;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.ye-header-figma .ye-header-search-field--has-camera .ye-header-search-input {
    padding-inline-end: 3.15rem;
}

.ye-header-figma .ye-header-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.ye-header-figma .ye-header-search-input:hover {
    border-color: #d1dae4;
}

.ye-header-figma .ye-header-search-input:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

/* Vue image-search: labels are inside a root div; center in pill on the right */
.ye-header-figma .ye-header-search-field v-image-search {
    position: absolute;
    inset-block-start: 0;
    inset-block-end: 0;
    inset-inline-end: 0.35rem;
    display: flex;
    align-items: center;
    z-index: 2;
}

.ye-header-figma .ye-header-search-field v-image-search > div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.ye-header-figma .ye-header-search-field v-image-search label {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.2rem;
    line-height: 1;
    color: #0f172a;
    cursor: pointer;
    border-radius: 50%;
}

.ye-header-figma .ye-header-search-field v-image-search label:hover {
    background: rgba(15, 23, 42, 0.06);
}

.ye-header-figma .ye-header-details {
    position: relative;
    z-index: 80;
}

.ye-header-figma .ye-header-details[open] {
    z-index: 100;
}

.ye-header-figma .ye-header-details__summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ye-header-figma .ye-header-details__summary::-webkit-details-marker {
    display: none;
}

.ye-header-figma .ye-header-details__panel {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: max(100%, 10rem);
    max-height: min(320px, 70vh);
    overflow-y: auto;
    z-index: 90;
    margin: 0;
    padding: 0.35rem 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.ye-header-figma .ye-header-details__link {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    color: #111827;
    text-decoration: none;
    white-space: nowrap;
}

.ye-header-figma .ye-header-details__link:hover {
    background: #f3f4f6;
}

@media (max-width: 1280px) {
    .ye-header-figma .ye-global-top-nav {
        gap: 1.5rem;
        font-size: 0.875rem;
    }

    .ye-header-figma .ye-global-right {
        gap: 10px;
    }
}

@media (max-width: 1100px) {
    .ye-header-figma .ye-brand-title {
        font-size: 0.95rem;
    }

    .ye-header-figma .ye-brand-tagline {
        font-size: 0.68rem;
    }
}

/* ---- Customer login modal (two-column) ---- */
.ye-login-modal {
    max-width: calc(100vw - 2rem);
    width: min(920px, 100%);
    padding: 0;
    border: none;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #0a1629;
}

.ye-login-modal::backdrop {
    background: rgba(15, 23, 42, 0.45);
}

.ye-login-modal__panel {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.ye-login-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #64748b;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.15s ease,
        background 0.15s ease;
}

.ye-login-modal__close:hover {
    color: #0f172a;
    background: rgba(148, 163, 184, 0.2);
}

.ye-login-modal__cols {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 420px;
}

@media (max-width: 800px) {
    .ye-login-modal__cols {
        grid-template-columns: 1fr;
    }

    .ye-login-modal__aside {
        display: none;
    }
}

.ye-login-modal__aside {
    background: #f0f2f4;
    padding: 2.5rem 1.75rem 2rem;
    display: flex;
    align-items: stretch;
}

.ye-login-modal__aside-inner {
    margin: auto;
    text-align: center;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ye-login-modal__aside-logo {
    width: min(200px, 72vw);
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.ye-login-modal__aside-title {
    margin: 0.5rem 0 0;
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.25;
    color: #001529;
}

.ye-login-modal__aside-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
}

.ye-login-modal__dots {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 1.5rem;
    justify-content: center;
}

.ye-login-modal__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #cbd5e1;
}

.ye-login-modal__dots span.is-active {
    background: #001529;
    border-color: #001529;
}

.ye-login-modal__main {
    padding: 2.75rem 2.5rem 2.25rem;
    position: relative;
    max-height: min(78vh, 580px);
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 800px) {
    .ye-login-modal__main {
        padding: 3rem 1.5rem 1.75rem;
    }
}

.ye-login-modal__title {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #001529;
}

.ye-login-modal__subtitle {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    color: #64748b;
}

.ye-login-modal__alert-host {
    margin: 0 0 1rem;
}

.ye-login-modal__alert-host[hidden] {
    display: none;
}

.ye-login-modal__alert {
    margin: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.875rem;
    line-height: 1.45;
}

.ye-login-modal__alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.ye-login-modal__alert--warning {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.ye-login-modal__alert--info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.ye-login-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ye-login-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
}

.ye-login-modal__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.ye-login-modal__req {
    color: #dc2626;
}

.ye-login-modal__input-wrap {
    position: relative;
    display: block;
}

.ye-login-modal__input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 2.75rem 0.75rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: #0f172a;
    background: #fff;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.ye-login-modal__input:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.25);
}

.ye-login-modal__input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    display: flex;
}

.ye-login-modal__pw-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 6px;
    cursor: pointer;
    color: #94a3b8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.15s ease,
        background 0.15s ease;
}

.ye-login-modal__pw-toggle:hover {
    color: #475569;
    background: rgba(148, 163, 184, 0.15);
}

.ye-login-modal__eye {
    display: block;
}

.ye-login-modal__eye--show {
    display: none;
}

.ye-login-modal__pw-toggle.is-visible .ye-login-modal__eye--hide {
    display: none;
}

.ye-login-modal__pw-toggle.is-visible .ye-login-modal__eye--show {
    display: block;
}

.ye-login-modal__field-error {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: #ef4444;
    font-style: italic;
}

.ye-login-modal__input-wrap + .ye-login-modal__field-error,
.ye-login-modal__captcha .ye-login-modal__field-error {
    margin-top: 0.25rem;
}

.ye-login-modal__row-forgot {
    display: flex;
    justify-content: flex-end;
    margin-top: -0.25rem;
}

.ye-login-modal__link {
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.ye-login-modal__link:hover {
    text-decoration: underline;
}

.ye-login-modal__captcha {
    margin-top: 0.25rem;
}

.ye-login-modal__submit {
    margin-top: 0.25rem;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    background: #001529;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease;
}

.ye-login-modal__submit:hover {
    background: #0a2744;
}

.ye-login-modal__or {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0 1rem;
    color: #94a3b8;
    font-size: 0.8125rem;
}

.ye-login-modal__or::before,
.ye-login-modal__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.ye-login-modal__google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.ye-login-modal__google:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.ye-login-modal__google-icon {
    display: flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.ye-login-modal__google-icon svg {
    width: 28px;
    height: 28px;
}

.ye-login-modal__cols--even {
    grid-template-columns: 1fr 1fr;
}

.ye-login-modal__link--btn {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: 500;
    color: #2563eb;
    cursor: pointer;
    text-align: inherit;
    text-decoration: none;
}

.ye-login-modal__link--btn:hover {
    text-decoration: underline;
}

.ye-login-modal__alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.ye-forgot-password-modal .ye-login-modal__main {
    max-height: min(78vh, 520px);
}

.ye-login-modal__field-messages {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-height: 0;
}

.ye-forgot-password-modal__wordmark {
    display: flex;
    justify-content: center;
    margin: 0 0 1.25rem;
}

.ye-forgot-password-modal__wordmark-img {
    max-width: 160px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.ye-forgot-password-modal__back {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

/* Create account modal */
.ye-register-modal__main {
    max-height: min(78vh, 640px);
    overflow-y: auto;
    padding-right: 0.35rem;
}

.ye-register-modal__form .ye-login-modal__label.required::after {
    content: " *";
    color: #dc2626;
}

.ye-login-modal__input--invalid {
    border-color: #ef4444 !important;
}

.ye-register-modal__pw-rules {
    list-style: none;
    margin: -0.25rem 0 0.75rem;
    padding: 0;
}

.ye-register-modal__pw-rules li {
    position: relative;
    padding-left: 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

.ye-register-modal__pw-rules li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #64748b;
    transition: background-color 0.15s ease;
}

.ye-register-modal__pw-rules li.is-met {
    color: #059669;
    font-weight: 500;
}

.ye-register-modal__pw-rules li.is-met::before {
    background: #059669;
}

.ye-register-modal__grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 520px) {
    .ye-register-modal__grid2 {
        grid-template-columns: 1fr;
    }
}

.ye-register-modal__pw-hints {
    margin: -0.35rem 0 0.5rem;
    padding-left: 1.1rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #64748b;
}

.ye-register-modal__pw-hints li {
    margin: 0.1rem 0;
}

.ye-register-modal__check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #334155;
    user-select: none;
}

.ye-register-modal__check input {
    margin-top: 0.2rem;
    accent-color: #001529;
}

.ye-register-modal__check--terms {
    align-items: flex-start;
}

.ye-register-modal__terms-note {
    margin: 0 0 0.25rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.ye-register-modal__footer-login {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

.ye-register-modal__form {
    gap: 0.75rem;
}

.ye-register-modal__hidden {
    display: none !important;
}

.ye-register-modal__state-field .ye-login-modal__input + .ye-login-modal__input {
    margin-top: 0;
}

.ye-register-modal__submit-btn.ye-login-modal__submit {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
}

/* Mobile menu drawer: currency/locale panels open upward (fixed footer) */
.ye-mobile-drawer-footer .ye-header-details {
    position: relative;
    z-index: 5;
}

.ye-mobile-drawer-footer .ye-header-details__panel {
    top: auto;
    bottom: calc(100% + 6px);
    inset-inline-start: 50%;
    inset-inline-end: auto;
    transform: translateX(-50%);
    min-width: 10rem;
}
