.sce-widget-slot,
.sce-basket-top-widget-slot,
.sce-checkout-top-widget-slot,
.sce-checkout-review-widget-slot,
.sce-basket-top-widget,
.sce-cart-drawer-widget,
.sce-top-shell,
.sce-drawer-shell {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.sce-banner-root {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483000;
    display: flex;
    justify-content: center;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
}

.sce-banner-root[hidden] {
    display: none !important;
}

.sce-banner-shell {
    width: min(960px, calc(100vw - 28px));
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(9, 9, 11, 0.98), rgba(24, 24, 27, 0.98), rgba(39, 39, 42, 0.98));
    color: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.sce-banner-root[data-sce-state="success"] .sce-banner-shell {
    border-color: rgba(0, 255, 214, 0.22);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0, 255, 214, 0.08) inset;
}

.sce-banner-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 255, 214, 0.18), rgba(122, 55, 255, 0.22), rgba(255, 47, 179, 0.2));
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.sce-banner-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sce-banner-message {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
}

.sce-banner-meta {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.35;
}

.sce-banner-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.sce-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    background: #ffffff;
    color: #09090b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.sce-banner-cta[hidden] {
    display: none !important;
}

.sce-banner-cta:hover,
.sce-banner-cta:focus {
    background: rgba(255, 255, 255, 0.92);
    color: #09090b;
}

.sce-banner-close {
    flex: 0 0 auto;
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.sce-banner-close:hover,
.sce-banner-close:focus {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .sce-banner-root {
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .sce-banner-shell {
        width: min(100%, 900px);
        gap: 12px;
        padding: 13px 16px;
        border-radius: 16px;
    }
}

@media screen and (max-width: 782px) {
    .sce-banner-root {
        padding: 8px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .sce-banner-shell {
        width: 100%;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
        min-height: 0;
        padding: 12px 14px;
        border-radius: 15px;
    }

    .sce-banner-label {
        font-size: 10px;
        padding: 0 10px;
    }

    .sce-banner-copy {
        flex: 1 1 calc(100% - 46px);
    }

    .sce-banner-message {
        font-size: 13px;
    }

    .sce-banner-meta {
        font-size: 11px;
    }

    .sce-banner-actions {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }

    .sce-banner-cta {
        flex: 1 1 auto;
        min-height: 44px;
        padding: 0 14px;
    }

    .sce-banner-close {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .sce-banner-root {
        padding: 8px 8px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .sce-banner-shell {
        gap: 10px;
        padding: 12px;
        border-radius: 14px;
    }

    .sce-banner-copy {
        flex-basis: 100%;
        order: 2;
    }

    .sce-banner-label {
        order: 1;
    }

    .sce-banner-actions {
        order: 3;
        width: 100%;
        align-items: stretch;
    }

    .sce-banner-cta {
        width: 100%;
    }
}
