body.mobile-redesign-page .mobile-favorite-host {
    position: relative;
}

body.mobile-redesign-page .mobile-favorite-toggle {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 1px solid #e5e8ea;
    border-radius: 50%;
    background: #fff;
    color: #252a2d;
    cursor: pointer;
}

body.mobile-redesign-page .mobile-favorite-toggle::before {
    content: '';
    width: 22px;
    height: 22px;
    background: currentColor;
    -webkit-mask: url('../images/mh-heart.svg') center / contain no-repeat;
    mask: url('../images/mh-heart.svg') center / contain no-repeat;
}

body.mobile-redesign-page .mobile-favorite-toggle.is-selected {
    border-color: #c92735;
    background: #fff2f3;
    color: #c92735;
}

body.mobile-redesign-page .mobile-favorite-toggle:focus-visible,
body.mobile-redesign-page #mobile-favorites a:focus-visible,
body.mobile-redesign-page .mobile-favorites-close:focus-visible {
    outline: 2px solid #df8a19;
    outline-offset: 2px;
}

body.mobile-redesign-page .mobile-home-bottom-nav [data-mobile-favorites-open] {
    position: relative;
}

body.mobile-redesign-page .mobile-favorites-count {
    position: absolute;
    top: 3px;
    left: calc(50% + 8px);
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: #c92735;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

body.mobile-redesign-page .mobile-favorites-count[hidden],
body.mobile-redesign-page .mobile-favorites-status[hidden],
body.mobile-redesign-page #mobile-favorites-notice[hidden] {
    display: none;
}

body.mobile-redesign-page.mobile-favorites-open {
    overflow: hidden;
}

body.mobile-redesign-page #mobile-favorites {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 768px;
    height: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0 auto;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #252a2d;
    font-family: inherit;
}

body.mobile-redesign-page #mobile-favorites::backdrop {
    background: rgba(36, 39, 42, .5);
}

body.mobile-redesign-page .mobile-favorites-head {
    position: sticky;
    z-index: 3;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e8ea;
    background: #fff;
}

body.mobile-redesign-page .mobile-favorites-head h2 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

body.mobile-redesign-page .mobile-favorites-close {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: #fff;
    color: #252a2d;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

body.mobile-redesign-page .mobile-favorites-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 14px max(24px, env(safe-area-inset-bottom));
}

body.mobile-redesign-page .mobile-favorites-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e5e8ea;
    border-radius: 6px;
}

body.mobile-redesign-page .mobile-favorites-card a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 10px;
    color: #252a2d;
    text-decoration: none;
}

body.mobile-redesign-page .mobile-favorites-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

body.mobile-redesign-page .mobile-favorites-card strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

body.mobile-redesign-page .mobile-favorites-price {
    margin-top: auto;
    padding-top: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body.mobile-redesign-page .mobile-favorites-empty {
    grid-column: 1 / -1;
    margin: 36px 0;
    color: #747b80;
    font-size: 16px;
    text-align: center;
}

body.mobile-redesign-page .mobile-favorites-status {
    margin: 12px 14px 0;
    padding: 10px;
    background: #fff2f3;
    color: #c92735;
    font-size: 13px;
    line-height: 1.4;
}

body.mobile-redesign-page #mobile-favorites-notice {
    position: fixed;
    z-index: 100001;
    right: 14px;
    bottom: 84px;
    left: 14px;
    width: fit-content;
    max-width: calc(100% - 28px);
    margin: auto;
    padding: 10px 14px;
    border-radius: 6px;
    background: #252a2d;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    pointer-events: none;
}
