#shop-item-action-sheet {
    position: fixed;
    inset: 0;
    z-index: 120000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: color-mix(in srgb, var(--mobile-shop-bg) 42%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mobile-shop-action-sheet-shell {
    width: 100%;
    max-width: 520px;
    padding: 16px 18px calc(20px + env(safe-area-inset-bottom, 0px));
}

.mobile-shop-action-sheet-card {
    margin-bottom: 10px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid var(--mobile-shop-border);
    background: var(--mobile-shop-bg);
    color: var(--mobile-shop-text);
    box-shadow: 0 26px 70px color-mix(in srgb, var(--mobile-shop-text) 14%, transparent);
}

.mobile-shop-action-sheet-kicker {
    margin-bottom: 7px;
    color: var(--mobile-shop-muted);
    font-size: 10px;
    font-weight: 840;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-shop-action-sheet-title {
    margin-bottom: 16px;
    color: var(--mobile-shop-text);
    font-size: 24px;
    line-height: 1;
    font-weight: 860;
    letter-spacing: 0 !important;
}

.mobile-shop-action-sheet-actions {
    display: grid;
    gap: 10px;
}

.mobile-shop-action-sheet-button,
.mobile-shop-action-sheet-cancel {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 830;
    cursor: pointer;
}

.mobile-shop-action-sheet-button i,
.mobile-shop-action-sheet-cancel i {
    margin-right: 8px;
}

.mobile-shop-action-sheet-edit {
    border: 1px solid color-mix(in srgb, var(--primary-color, #4f46e5) 28%, transparent);
    background: color-mix(in srgb, var(--primary-color, #4f46e5) 10%, transparent);
    color: var(--primary-color, #4f46e5);
    -webkit-text-fill-color: var(--primary-color, #4f46e5);
}

.mobile-shop-action-sheet-delete {
    border: 1px solid rgba(220, 38, 38, 0.24);
    background: transparent;
    color: #b91c1c;
    -webkit-text-fill-color: #b91c1c;
}

.mobile-shop-action-sheet-cancel {
    border: 1px solid var(--mobile-shop-border);
    background: var(--mobile-shop-button-bg);
    color: var(--mobile-shop-text);
    -webkit-text-fill-color: var(--mobile-shop-text);
}

[data-theme="dark"] #shop-item-action-sheet,
[data-theme="dark-accent"] #shop-item-action-sheet {
    background: rgba(0, 0, 0, 0.34);
}
