.letak-notification-dialog,
.letak-notification-dialog * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.letak-notification-dialog {
    width: min(520px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: var(--lk-radius, 8px);
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    box-shadow: var(--lk-shadow, 0 14px 40px rgba(31, 41, 51, 0.16));
}

.letak-notification-dialog::backdrop {
    background: rgba(23, 33, 43, 0.5);
}

.letak-notification-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
}

.letak-notification-dialog__head h2 {
    margin: 0;
    color: var(--lk-ink, #1f2933);
    font-size: 20px;
    line-height: 1.25;
}

.letak-notification-dialog__head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.letak-notification-dialog__body {
    padding: 18px;
}

.letak-notification-dialog__body > p:first-child {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.letak-notification-dialog__note {
    margin: 8px 0 0;
    color: var(--lk-muted, #667085);
    font-size: 14px;
}

.letak-notification-dialog__actions {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.letak-notification-dialog__actions button {
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-weight: 700;
    cursor: pointer;
}

.letak-notification-dialog__actions button.is-primary {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
}

.letak-notification-dialog__actions button:hover,
.letak-notification-dialog__head button:hover {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
}

.letak-notification-dialog__actions button.is-primary:hover {
    border-color: var(--lk-green-dark, #147a51);
    background: var(--lk-green-dark, #147a51);
    color: var(--lk-white, #fff);
}

.letak-notification-dialog button:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letak-notification-dialog button:disabled {
    opacity: 0.58;
    cursor: wait;
}

.letak-notification-dialog__feedback {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--lk-green-dark, #147a51);
    font-size: 14px;
    font-weight: 700;
}

.letak-notification-dialog__feedback.is-error {
    color: #b42318;
}

.letak-store-notification-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--lk-line, #dbe3ea);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-weight: 700;
    cursor: pointer;
}

.letak-store-notification-button .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.letak-store-notification-button:hover,
.letak-store-notification-button.is-active {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
}

.letak-store-notification-button:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letak-store-notification-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.letak-favorite-flyer-form {
    margin: 0;
}

.letak-favorite-flyer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--lk-line, #dbe3ea);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.letak-favorite-flyer-button.is-card,
.letak-favorite-flyer-button.is-account {
    width: 40px;
    min-height: 40px;
    padding: 0;
    box-shadow: 0 4px 14px rgba(31, 41, 51, 0.14);
}

.letak-favorite-flyer-button:hover,
.letak-favorite-flyer-button:focus-visible,
.letak-favorite-flyer-button.is-active {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
}

.letak-favorite-flyer-button:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letak-guest-subscription,
.letak-guest-subscription * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.letak-guest-subscription {
    display: grid;
    gap: 9px;
    width: min(100%, 520px);
    margin: 0;
    padding: 13px;
    border: 1px solid var(--lk-line, #dbe3ea);
    border-radius: 7px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    text-align: left;
}

.letak-guest-subscription__heading {
    display: flex;
    align-items: center;
    gap: 9px;
}

.letak-guest-subscription__heading .dashicons {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: var(--lk-green-dark, #147a51);
    font-size: 22px;
}

.letak-guest-subscription__heading strong,
.letak-guest-subscription__heading small {
    display: block;
}

.letak-guest-subscription__heading strong {
    font-size: 15px;
    line-height: 1.25;
}

.letak-guest-subscription__heading small {
    margin-top: 2px;
    color: var(--lk-muted, #667085);
    font-size: 12px;
}

.letak-guest-subscription__fields {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto;
    gap: 7px;
}

.letak-guest-subscription__fields input[type="email"] {
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid var(--lk-line, #cfd8e3);
    border-radius: 5px;
    background: #fff;
    color: var(--lk-ink, #1f2933);
    font: inherit;
}

.letak-guest-subscription__fields button {
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--lk-green, #1f9f68);
    border-radius: 5px;
    background: var(--lk-green, #1f9f68);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.letak-guest-subscription__fields button:hover,
.letak-guest-subscription__fields button:focus-visible {
    border-color: var(--lk-green-dark, #147a51);
    background: var(--lk-green-dark, #147a51);
}

.letak-guest-subscription__fields input:focus-visible,
.letak-guest-subscription__consent input:focus-visible,
.letak-guest-subscription__fields button:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letak-guest-subscription__consent {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: start;
    gap: 7px;
    color: var(--lk-muted, #667085);
    font-size: 11px;
    line-height: 1.35;
}

.letak-guest-subscription__consent input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.letak-guest-subscription__consent a {
    color: var(--lk-green-dark, #147a51);
}

.letak-guest-subscription__consent span,
.letak-guest-subscription__consent a {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
}

.letak-newsletter-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.letak-guest-subscription__notice {
    margin: 0;
    padding: 8px 10px;
    border-left: 3px solid var(--lk-green, #1f9f68);
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
    font-size: 12px;
    font-weight: 700;
}

.letak-guest-subscription__notice.is-error {
    border-color: #b42318;
    background: #fff3f2;
    color: #b42318;
}

.letakuj-store-controls.is-guest {
    display: grid;
    justify-items: stretch;
    gap: 9px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.letakuj-store-follow {
    width: min(100%, 760px);
}

.letakuj-store-follow__title {
    margin: 0;
    color: var(--lk-ink, #1f2933);
    font-size: 18px;
    line-height: 1.25;
}

.letakuj-store-follow__actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.letak-guest-subscription-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 9px 15px;
    border: 1px solid var(--lk-green-dark, #147a51);
    border-radius: 6px;
    background: var(--lk-green-dark, #147a51);
    color: #fff;
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
}

.letak-guest-subscription-toggle .dashicons {
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    font-size: 21px;
}

.letak-guest-subscription-toggle:hover,
.letak-guest-subscription-toggle:focus-visible,
.letak-guest-subscription-toggle[aria-expanded="true"] {
    border-color: #0f603f;
    background: #0f603f;
    color: #fff;
}

.letak-guest-subscription-toggle:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letakuj-store-follow__actions .letakuj-follow-button {
    min-height: 44px;
    padding: 9px 15px;
    white-space: nowrap;
}

.letakuj-store-follow__benefits {
    margin: 0;
    color: var(--lk-muted, #667085);
    font-size: 14px;
    line-height: 1.4;
}

.letakuj-store-follow__benefits a {
    margin-left: 3px;
    color: var(--lk-green-dark, #147a51);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.letakuj-store-follow__panel {
    width: 100%;
    padding-top: 3px;
}

.letakuj-store-follow__panel[hidden] {
    display: none !important;
}

.letakuj-store-follow__panel .letak-guest-subscription {
    width: 100%;
    max-width: 100%;
}

.letakuj-store-follow__panel .letak-guest-subscription.is-flyer-notification {
    width: 100%;
}

.letak-guest-subscription.is-flyer-notification {
    width: min(100%, 460px);
}

@media (max-width: 1500px) {
    .single-letak .flyer-hero .page-title {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .letak-guest-subscription {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .letak-guest-subscription__fields {
        grid-template-columns: 1fr;
    }

    .letakuj-store-controls.is-guest {
        justify-items: stretch;
    }

    .letakuj-store-follow__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .letakuj-store-follow__actions .letakuj-follow-button,
    .letak-guest-subscription-toggle {
        width: 100%;
        white-space: normal;
    }

    .single-letak .flyer-hero__action {
        grid-column: 1 / -1;
        justify-self: stretch;
    }
}

.letak-frontend-toast {
    position: fixed;
    z-index: 100001;
    left: 50%;
    bottom: 22px;
    width: min(440px, calc(100% - 24px));
    padding: 12px 16px;
    border: 1px solid var(--lk-green, #1f9f68);
    border-radius: 6px;
    background: var(--lk-green-dark, #147a51);
    color: #fff;
    box-shadow: 0 12px 30px rgba(31, 41, 51, 0.2);
    font-weight: 700;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.letak-frontend-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.letak-frontend-toast.is-error {
    border-color: #b42318;
    background: #b42318;
}

.letak-account-dialog,
.letak-account-dialog * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.letak-account-dialog {
    width: min(500px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: var(--lk-radius, 8px);
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    box-shadow: var(--lk-shadow, 0 14px 40px rgba(31, 41, 51, 0.16));
}

.letak-account-dialog::backdrop {
    background: rgba(23, 33, 43, 0.5);
}

.letak-account-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
}

.letak-account-dialog__head h2 {
    margin: 0;
    color: var(--lk-ink, #1f2933);
    font-size: 20px;
    line-height: 1.25;
}

.letak-account-dialog__head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.letak-account-dialog__body {
    padding: 18px;
}

.letak-account-dialog__body > p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.letak-account-dialog__actions {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.letak-account-dialog__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.letak-account-dialog__actions a.is-primary {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
}

.letak-account-dialog__actions a:hover,
.letak-account-dialog__head button:hover {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
}

.letak-account-dialog__actions a.is-primary:hover {
    border-color: var(--lk-green-dark, #147a51);
    background: var(--lk-green-dark, #147a51);
    color: var(--lk-white, #fff);
}

.letak-account-dialog a:focus-visible,
.letak-account-dialog button:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letak-list-picker-dialog,
.letak-list-picker-dialog *,
.letak-shopping-dock,
.letak-shopping-dock * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.letak-list-picker-dialog {
    width: min(520px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: var(--lk-radius, 8px);
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    box-shadow: var(--lk-shadow, 0 14px 40px rgba(31, 41, 51, 0.16));
}

.letak-list-picker-dialog::backdrop {
    background: rgba(23, 33, 43, 0.5);
}

.letak-list-picker-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
}

.letak-list-picker-dialog__head > div {
    min-width: 0;
}

.letak-list-picker-dialog__head > div > span {
    display: block;
    margin-bottom: 2px;
    color: var(--lk-green-dark, #147a51);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.letak-list-picker-dialog__head h2 {
    margin: 0;
    color: var(--lk-ink, #1f2933);
    font-size: 21px;
    line-height: 1.25;
}

.letak-list-picker-dialog__head button,
.letak-shopping-dock__panel header button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    cursor: pointer;
}

.letak-list-picker-dialog__body {
    max-height: calc(100vh - 92px);
    padding: 18px;
    overflow: auto;
}

.letak-list-picker-dialog__product {
    margin: 0 0 12px;
    color: var(--lk-muted, #667085);
    font-size: 15px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.letak-list-picker-dialog__choices {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 7px;
}

.letak-list-choice {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    width: 100%;
    min-height: 62px;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    text-align: left;
    cursor: pointer;
}

.letak-list-choice:last-child {
    border-bottom: 0;
}

.letak-list-choice:hover:not(:disabled),
.letak-list-choice:focus-visible {
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
}

.letak-list-choice:focus-visible,
.letak-list-picker-dialog__head button:focus-visible,
.letak-shopping-dock button:focus-visible,
.letak-shopping-dock a:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: -3px;
}

.letak-list-choice:disabled {
    background: #f7f9f8;
    color: var(--lk-muted, #667085);
    cursor: wait;
}

.letak-list-choice.is-busy {
    opacity: 0.62;
    cursor: wait;
}

.letak-list-choice .dashicons {
    color: var(--lk-green, #1f9f68);
}

.letak-list-choice.is-added {
    background: #fff8f7;
}

.letak-list-choice.is-added:hover:not(:disabled),
.letak-list-choice.is-added:focus-visible {
    background: #fff0ed;
    color: #a4262c;
}

.letak-list-choice.is-added .dashicons,
.letak-list-choice.is-added .letak-list-choice__status {
    color: #b4232c;
}

.letak-list-choice > span:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.letak-list-choice strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.letak-list-choice small {
    color: var(--lk-muted, #667085);
    font-size: 12px;
}

.letak-list-choice__status {
    color: var(--lk-green-dark, #147a51);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.letak-list-picker-dialog__feedback {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--lk-muted, #667085);
    font-size: 13px;
}

.letak-list-picker-dialog__empty {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 12px;
    border: 1px dashed var(--lk-line, #e5e9ef);
    border-radius: 7px;
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-muted, #667085);
    font-size: 14px;
}

.letak-list-picker-dialog__empty[hidden],
.letak-list-picker-dialog__choices[hidden] {
    display: none;
}

.letak-list-picker-dialog__empty .dashicons {
    flex: 0 0 auto;
    color: var(--lk-green, #1f9f68);
}

.letak-list-picker-dialog__create {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    padding: 9px 13px;
    border: 1px solid var(--lk-green, #1f9f68);
    border-radius: 6px;
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.letak-list-picker-dialog__create:hover,
.letak-list-picker-dialog__create:focus-visible {
    border-color: var(--lk-green-dark, #147a51);
    background: var(--lk-green-dark, #147a51);
    color: var(--lk-white, #fff);
}

.letak-list-picker-dialog__create:focus-visible {
    outline: 3px solid rgba(31, 159, 104, 0.22);
    outline-offset: 2px;
}

.letak-shopping-dock__create {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 9px 13px;
    border: 1px solid var(--lk-green, #1f9f68);
    border-radius: 6px;
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.letak-shopping-dock__create:hover {
    border-color: var(--lk-green-dark, #147a51);
    background: var(--lk-green-dark, #147a51);
    color: var(--lk-white, #fff);
}

.letak-create-list-dialog__form label {
    color: var(--lk-ink, #1f2933);
    font-size: 13px;
    font-weight: 800;
}

.letak-create-list-dialog__form input {
    width: 100%;
    min-height: 43px;
    padding: 8px 10px;
    border: 1px solid #b8c3cf;
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font: inherit;
}

.letak-create-list-dialog__form input:focus {
    border-color: var(--lk-green, #1f9f68);
    outline: 3px solid rgba(31, 159, 104, 0.18);
    outline-offset: 1px;
}

.letak-create-list-dialog__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.letak-create-list-dialog__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 6px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font-weight: 800;
    cursor: pointer;
}

.letak-create-list-dialog__actions button.is-primary {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
}

.letak-create-list-dialog__actions button:disabled {
    opacity: 0.62;
    cursor: wait;
}

.letak-create-list-dialog__form {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.letak-create-list-dialog__feedback {
    min-height: 20px;
    margin: 0;
    color: var(--lk-muted, #667085);
    font-size: 13px;
}

.letak-create-list-dialog__feedback.is-error {
    color: #a52635;
}

.letak-list-picker-dialog__manage {
    display: inline-flex;
    margin-top: 8px;
    color: var(--lk-green-dark, #147a51);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.letak-list-picker-dialog__manage:hover {
    color: var(--lk-green, #1f9f68);
    text-decoration: underline;
}

.letak-shopping-dock {
    position: fixed;
    z-index: 100000;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
}

.letak-shopping-dock__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 174px;
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid var(--lk-green-dark, #147a51);
    border-radius: 8px;
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
    box-shadow: 0 12px 28px rgba(20, 122, 81, 0.24);
    font-weight: 800;
    cursor: pointer;
}

.letak-shopping-dock__trigger:hover,
.letak-shopping-dock.is-open .letak-shopping-dock__trigger {
    border-color: var(--lk-green-dark, #147a51);
    background: var(--lk-green-dark, #147a51);
    color: var(--lk-white, #fff);
}

.letak-shopping-dock__trigger .dashicons {
    width: 22px;
    height: 22px;
    font-size: 22px;
}

.letak-shopping-dock__count {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    background: var(--lk-white, #fff);
    color: var(--lk-green-dark, #147a51);
    font-size: 12px;
    line-height: 1;
}

.letak-shopping-dock__count[hidden] {
    display: none;
}

.letak-shopping-dock__panel {
    display: flex;
    width: min(400px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 96px));
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 8px;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    box-shadow: var(--lk-shadow, 0 14px 40px rgba(31, 41, 51, 0.16));
}

.letak-shopping-dock__panel[hidden] {
    display: none;
}

.letak-shopping-dock__panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
}

.letak-shopping-dock__panel header > div > span {
    display: block;
    margin-bottom: 1px;
    color: var(--lk-green-dark, #147a51);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.letak-shopping-dock__panel header h2 {
    margin: 0;
    color: var(--lk-ink, #1f2933);
    font-size: 18px;
    line-height: 1.25;
}

.letak-shopping-dock__lists {
    display: block;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
}

.letak-shopping-dock__guest-note {
    margin: 0;
    padding: 10px 14px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
    background: #fff8e8;
    color: #6b521a;
    font-size: 12px;
    line-height: 1.4;
}

.letak-shopping-dock__guest-note[hidden],
.letak-shopping-dock__create[hidden] {
    display: none;
}

.letak-shopping-dock.is-guest .flyer-guest-shopping__list,
.letak-shopping-dock.is-guest .letak-shopping-list-group {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: var(--lk-white, #fff);
}

.letak-shopping-dock.is-guest .letak-shopping-list-group {
    padding: 0 0 14px;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    padding: 14px 14px 9px;
    border: 0;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__titleline {
    display: block;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__titlewrap h3 {
    margin: 0;
    color: var(--lk-ink, #1f2933);
    font-size: 17px;
    line-height: 1.2;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__meta {
    display: block;
    margin-top: 3px;
    color: var(--lk-muted, #667085);
    font-size: 10px;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__total {
    display: grid;
    min-width: 82px;
    justify-items: end;
    gap: 1px;
    text-align: right;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__total span {
    color: var(--lk-muted, #667085);
    font-size: 10px;
    font-weight: 700;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__total strong {
    color: var(--lk-green, #1f9f68);
    font-size: 17px;
    line-height: 1.1;
}

.letak-shopping-dock.is-guest .letak-shopping-list-group__total.is-unavailable strong {
    max-width: 112px;
    color: var(--lk-muted, #667085);
    font-size: 10px;
    white-space: normal;
}

.letak-shopping-dock.is-guest .letak-shopping-progress {
    width: calc(100% - 28px);
    height: 5px;
    margin: 3px 14px 0;
    overflow: hidden;
    border-radius: 999px;
    background: #e3ece7;
}

.letak-shopping-dock.is-guest .letak-shopping-progress > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--lk-green, #1f9f68);
}

.letak-shopping-dock.is-guest .letak-shopping-progress__caption {
    display: flex;
    gap: 4px;
    margin: 6px 14px 0;
    color: var(--lk-muted, #667085);
    font-size: 10px;
}

.letak-shopping-dock.is-guest .letak-shopping-list__stores {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px 8px;
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__identity {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__logo {
    display: grid;
    place-items: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    overflow: hidden;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 50%;
    background: var(--lk-white, #fff);
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__logo .dashicons {
    color: var(--lk-muted, #667085);
    font-size: 18px;
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__identity h3 {
    margin: 0;
    overflow: hidden;
    color: var(--lk-muted, #667085);
    font-size: 11px;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.letak-shopping-dock.is-guest .letak-shopping-store-group__total strong {
    color: var(--lk-green, #1f9f68);
    font-size: 13px;
    white-space: nowrap;
}

.letak-shopping-dock.is-guest .letak-shopping-list__items {
    display: grid;
    margin: 0 10px;
    overflow: hidden;
    border: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 14px;
    background: var(--lk-white, #fff);
}

.letak-shopping-dock.is-guest .letak-shopping-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto 26px;
    align-items: center;
    gap: 8px;
    min-height: 72px;
    padding: 11px 10px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
    background: var(--lk-white, #fff);
}

.letak-shopping-dock.is-guest .letak-shopping-item:last-child {
    border-bottom: 0;
}

.letak-shopping-dock.is-guest .letak-shopping-item__check-form,
.letak-shopping-dock.is-guest .letak-shopping-item__remove-form {
    margin: 0;
}

.letak-shopping-dock.is-guest .letak-shopping-item__check {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border: 2px solid #c9d9d0;
    border-radius: 50%;
    background: var(--lk-white, #fff);
    color: transparent;
    cursor: pointer;
}

.letak-shopping-dock.is-guest .letak-shopping-item.is-checked .letak-shopping-item__check {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
}

.letak-shopping-dock.is-guest .letak-shopping-item__check .dashicons {
    width: 19px;
    height: 19px;
    font-size: 19px;
}

.letak-shopping-dock.is-guest .letak-shopping-item h3 {
    display: -webkit-box;
    margin: 0 0 3px;
    overflow: hidden;
    color: var(--lk-ink, #1f2933);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.letak-shopping-dock.is-guest .letak-shopping-item__details {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 5px;
    color: var(--lk-muted, #667085);
    font-size: 9px;
    line-height: 1.25;
}

.letak-shopping-dock.is-guest .letak-shopping-item__price {
    color: var(--lk-ink, #1f2933);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.letak-shopping-dock.is-guest .letak-shopping-item__remove {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    min-height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d92d20;
    cursor: pointer;
}

.letak-shopping-dock.is-guest .letak-shopping-item__remove .dashicons {
    width: 19px;
    height: 19px;
    font-size: 19px;
}

.letak-shopping-dock.is-guest .letak-shopping-item.is-checked h3,
.letak-shopping-dock.is-guest .letak-shopping-item.is-checked .letak-shopping-item__price {
    color: #8b958f;
    text-decoration: line-through;
}

.letak-shopping-dock.is-guest .flyer-guest-shopping__actions {
    display: flex;
    grid-column: 2 / -1;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.letak-shopping-dock.is-guest .flyer-guest-shopping__actions button {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 1px solid #c9d9d0;
    border-radius: 50%;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.letak-shopping-dock.is-guest .flyer-guest-shopping__actions span {
    min-width: 36px;
    color: var(--lk-muted, #667085);
    font-size: 11px;
    text-align: center;
}

.letak-shopping-dock__empty {
    margin: 0;
    padding: 14px;
    color: var(--lk-muted, #667085);
    font-size: 13px;
    text-align: center;
}

.letak-shopping-dock__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    padding: 10px 14px;
    border: 0;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
    border-radius: 0;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.letak-shopping-dock__list:hover {
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
}

.letak-shopping-dock__list-label {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.letak-shopping-dock__list strong {
    min-width: 0;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.letak-shopping-dock__list-count {
    flex: 0 0 auto;
    color: var(--lk-muted, #667085);
    font-size: 12px;
}

.letak-shopping-dock__chevron {
    flex: 0 0 auto;
    color: var(--lk-muted, #667085);
    transition: transform 160ms ease;
}

.letak-shopping-dock__list-group.is-expanded .letak-shopping-dock__chevron {
    transform: rotate(180deg);
}

.letak-shopping-dock__items {
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
    background: var(--lk-soft, #f4f8f6);
}

.letak-shopping-dock__item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--lk-line, #e5e9ef);
}

.letak-shopping-dock__item:last-of-type {
    border-bottom: 0;
}

.letak-shopping-dock__item.is-guest {
    grid-template-columns: 30px minmax(0, 1fr) auto;
}

.letak-shopping-dock__guest-actions {
    display: flex;
    grid-column: 2 / -1;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.letak-shopping-dock__guest-actions button {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #c9d9d0;
    border-radius: 50%;
    background: var(--lk-white, #fff);
    color: var(--lk-ink, #1f2933);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.letak-shopping-dock__guest-actions button:hover,
.letak-shopping-dock__guest-actions button:focus-visible {
    border-color: var(--lk-green, #1f9f68);
    color: var(--lk-green-dark, #147a51);
}

.letak-shopping-dock__guest-actions span {
    min-width: 38px;
    color: var(--lk-muted, #667085);
    font-size: 12px;
    text-align: center;
}

.letak-shopping-dock__check {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 2px solid #c9d9d0;
    border-radius: 50%;
    background: var(--lk-white, #fff);
    color: transparent;
    cursor: pointer;
}

.letak-shopping-dock__check:hover,
.letak-shopping-dock__check:focus-visible {
    border-color: var(--lk-green, #1f9f68);
}

.letak-shopping-dock__item.is-checked .letak-shopping-dock__check {
    border-color: var(--lk-green, #1f9f68);
    background: var(--lk-green, #1f9f68);
    color: var(--lk-white, #fff);
}

.letak-shopping-dock__check .dashicons {
    width: 17px;
    height: 17px;
    font-size: 17px;
}

.letak-shopping-dock__item-content {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.letak-shopping-dock__item-content strong {
    overflow: hidden;
    color: var(--lk-ink, #1f2933);
    font-size: 13px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.letak-shopping-dock__item-content span {
    color: var(--lk-muted, #667085);
    font-size: 11px;
}

.letak-shopping-dock__item-price {
    color: var(--lk-ink, #1f2933);
    font-size: 13px;
    white-space: nowrap;
}

.letak-shopping-dock__item.is-checked .letak-shopping-dock__item-content strong {
    color: #87928c;
    text-decoration: line-through;
}

.letak-shopping-dock__item.is-checked .letak-shopping-dock__item-price,
.letak-shopping-dock__item.is-inactive .letak-shopping-dock__item-price {
    color: #87928c;
}

.letak-shopping-dock__empty-list {
    margin: 0;
    padding: 14px;
    color: var(--lk-muted, #667085);
    font-size: 12px;
    text-align: center;
}

.letak-shopping-dock__open-list {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    color: var(--lk-green-dark, #147a51);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.letak-shopping-dock__open-list:hover {
    background: #e9f4ef;
    color: var(--lk-green-dark, #147a51);
}

.letak-shopping-dock__create {
    min-height: 44px;
    border-width: 1px 0 0;
    border-radius: 0;
}

.letak-shopping-dock__manage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 14px;
    background: var(--lk-soft, #f4f8f6);
    color: var(--lk-green-dark, #147a51);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.letak-shopping-dock__manage:hover {
    background: #e9f4ef;
    color: var(--lk-green-dark, #147a51);
}

.has-letak-shopping-dock .letak-frontend-toast {
    bottom: 84px;
}

@media (max-width: 560px) {
    .letak-notification-dialog__actions,
    .letak-account-dialog__actions {
        grid-template-columns: 1fr;
    }

    .letak-list-picker-dialog__body {
        padding: 14px;
    }

    .letak-list-choice {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    .letak-list-choice__status {
        grid-column: 2;
    }

    .letak-create-list-dialog__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .letak-shopping-dock {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }

    .letak-shopping-dock__panel {
        position: fixed;
        right: 8px;
        bottom: calc(76px + env(safe-area-inset-bottom));
        left: 8px;
        width: auto;
        max-height: 75dvh;
        border-radius: 8px;
    }

    .letak-shopping-dock__trigger {
        min-width: 56px;
        width: 56px;
        min-height: 56px;
        padding: 8px;
    }

    .letak-shopping-dock__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .letak-shopping-dock__count {
        position: absolute;
        top: -7px;
        right: -5px;
        border: 2px solid var(--lk-white, #fff);
    }

    .letak-shopping-dock__item {
        grid-template-columns: 30px minmax(0, 1fr) auto;
        min-height: 58px;
        padding: 9px 12px;
    }

    .has-letak-shopping-dock .letak-frontend-toast {
        bottom: 82px;
    }
}

/* Guest shopping list: selected compact mobile direction. */
.flyer-guest-shopping__list .letak-shopping-list-group__meta > span,
.flyer-guest-shopping__list .letak-shopping-list-group__meta > strong {
    color: inherit;
    font: inherit;
}

.flyer-guest-shopping__list .letak-shopping-list-group__meta > span::after {
    content: " ";
}

.flyer-guest-shopping__list .letak-shopping-store-group__toggle,
.letak-guest-sync-link__devices,
.letak-guest-sync-link__arrow {
    display: none;
}

@media (max-width: 720px) {
    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group {
        width: 100%;
        margin: 0;
        padding: 0 0 12px;
        border: 0;
        border-radius: 0;
        background: var(--lk-white, #fff);
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__header {
        position: relative;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 0 16px !important;
        padding: 15px 14px 14px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: var(--lk-soft, #f4f8f6) !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__header::after {
        content: "";
        grid-column: 2;
        grid-row: 2;
        align-self: stretch;
        width: 1px;
        min-height: 52px;
        background: #d7e1da;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__titlewrap {
        display: contents !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__titleline {
        grid-column: 1 / -1;
        margin: 0 0 14px;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__titlewrap h3 {
        margin: 0 !important;
        color: var(--lk-ink, #1f2933) !important;
        font-size: 20px !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        letter-spacing: -0.25px;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__meta {
        grid-column: 1;
        display: grid !important;
        align-content: start;
        gap: 3px;
        margin: 0 !important;
        color: var(--lk-muted, #667085) !important;
        font-size: 12px !important;
        line-height: 1.2;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__meta > span::after {
        content: none;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__meta > strong {
        color: var(--lk-green, #1f9f68) !important;
        font-size: 29px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        white-space: nowrap;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__total {
        grid-column: 3;
        display: grid !important;
        align-content: start;
        justify-items: start !important;
        min-width: 0 !important;
        gap: 3px !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__total > span {
        color: var(--lk-muted, #667085) !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__total > strong {
        order: 0 !important;
        color: var(--lk-green, #1f9f68) !important;
        font-size: 29px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        white-space: nowrap;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list-group__total.is-unavailable > strong {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--lk-muted, #667085) !important;
        font-size: 12px !important;
        white-space: normal;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-progress {
        width: calc(100% - 28px) !important;
        height: 5px !important;
        margin: 13px 14px 0 !important;
        border-radius: 999px !important;
        background: #e3ebe6 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-progress__caption {
        margin: 7px 14px 0 !important;
        color: var(--lk-muted, #667085) !important;
        font-size: 11px !important;
        font-weight: 700 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-progress__caption span:nth-child(2),
    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-progress__caption span:nth-child(3) {
        display: none;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list__stores {
        display: grid;
        gap: 18px !important;
        margin-top: 15px !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__header {
        display: grid !important;
        grid-template-columns: 40px minmax(0, 1fr) auto 36px;
        align-items: center !important;
        gap: 10px !important;
        min-height: 52px;
        padding: 0 12px 10px !important;
        border: 0 !important;
        background: transparent !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__identity {
        display: contents !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__logo {
        grid-column: 1;
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__logo img {
        width: 32px !important;
        height: 32px !important;
        object-fit: contain;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__identity > div {
        grid-column: 2;
        min-width: 0;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__identity h3 {
        margin: 0 !important;
        overflow: hidden;
        color: var(--lk-ink, #1f2933) !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        letter-spacing: 1.7px !important;
        line-height: 1.2 !important;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__total {
        grid-column: 3;
        margin-left: auto;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__total strong {
        color: var(--lk-green, #1f9f68) !important;
        font-size: 15px !important;
        font-weight: 800;
        white-space: nowrap;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__toggle {
        grid-column: 4;
        display: inline-grid !important;
        place-items: center;
        width: 36px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--lk-green-dark, #147a51);
        cursor: pointer;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group__toggle .dashicons {
        width: 20px;
        height: 20px;
        font-size: 20px;
        transition: transform 160ms ease;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-store-group.is-collapsed
    .letak-shopping-store-group__toggle .dashicons {
        transform: rotate(-90deg);
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list__items {
        display: grid;
        margin: 0 !important;
        overflow: hidden;
        border: solid var(--lk-line, #e5e9ef) !important;
        border-width: 1px 0 !important;
        border-radius: 0 !important;
        background: var(--lk-white, #fff) !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-list__items[hidden] {
        display: none !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item {
        display: grid !important;
        grid-template-columns: 42px minmax(0, 1fr) auto 32px !important;
        align-items: center !important;
        gap: 8px 10px !important;
        min-height: 104px !important;
        padding: 13px 12px !important;
        border: 0 !important;
        border-bottom: 1px solid var(--lk-line, #e5e9ef) !important;
        border-radius: 0 !important;
        background: var(--lk-white, #fff) !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item:last-child {
        border-bottom: 0 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item__check {
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
        border-width: 3px !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item h3 {
        margin: 0 0 3px !important;
        color: var(--lk-ink, #1f2933) !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.22 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item__details {
        gap: 2px 5px !important;
        color: var(--lk-muted, #667085) !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item__price {
        color: var(--lk-ink, #1f2933) !important;
        font-size: 15px !important;
        font-weight: 800 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .letak-shopping-item__remove {
        width: 32px !important;
        height: 44px !important;
        min-height: 44px !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .flyer-guest-shopping__actions {
        display: flex !important;
        grid-column: 2 / -1 !important;
        align-items: center;
        justify-content: flex-end !important;
        gap: 10px !important;
        margin-top: 2px;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .flyer-guest-shopping__actions button {
        display: inline-grid !important;
        place-items: center;
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
        padding: 0 !important;
        border: 1px solid var(--lk-green, #1f9f68) !important;
        border-radius: 10px !important;
        background: var(--lk-green, #1f9f68) !important;
        color: var(--lk-white, #fff) !important;
        font-size: 20px !important;
        font-weight: 800 !important;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .flyer-guest-shopping__list.is-compact-mobile .flyer-guest-shopping__actions span {
        min-width: 42px !important;
        color: var(--lk-muted, #667085) !important;
        font-size: 12px !important;
        text-align: center;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    :is(.flyer-guest-shopping__sync, .letak-shopping-dock__manage) {
        display: grid !important;
        grid-template-columns: 28px minmax(0, 1fr) 20px;
        align-items: center;
        gap: 9px;
        min-height: 52px;
        padding: 9px 14px;
        background: var(--lk-soft, #f4f8f6);
        color: var(--lk-green-dark, #147a51);
        font-size: 13px;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    :is(.letak-guest-sync-link__devices, .letak-guest-sync-link__arrow) {
        display: inline-block;
        width: 20px;
        height: 20px;
        color: var(--lk-green, #1f9f68);
        font-size: 20px;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .letak-guest-sync-link__devices {
        width: 28px;
        height: 28px;
        font-size: 28px;
    }

    .single-letak :is(.letak-shopping-dock.is-guest, .flyer-shopping-panel.is-guest-shopping)
    .letak-guest-sync-link__label {
        min-width: 0;
    }
}
