    /* css tombol order */

    .border {
        border: 5px solid #2196f3 !important;
    }

    .btnbim {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.135s ease;
        background: rgba(33, 150, 243, 0.03);
        border: 1px solid rgba(33, 150, 243, 0.08);
    }

    .btnbim::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle, rgba(33, 150, 243, 0.35) 0%, rgba(33, 150, 243, 0) 70%);
        opacity: 0;
        transform: scale(0.6);
        transition: all 0.145s ease;
        z-index: 1;
    }

    .btnbim:hover::before {
        opacity: 1;
        transform: scale(1.2);
    }

    .btnbim:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 25px rgba(33, 150, 243, 0.12);
        background: rgba(33, 150, 243, 0.06);
    }

    .btnbim img {
        position: relative;
        z-index: 2;
        transition: transform 0.135s ease, filter 0.135s ease;
    }

    .btnbim:hover img {
        transform: scale(1.06);
        filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.35));
    }


    /* CSS SHOPPING POJOK KANAN ATAS*/
    .order-widget {
        position: fixed;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        padding: 14px;
        z-index: 99999;
        width: 320px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all .4s ease;
    }

    .order-widget.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .order-widget-content {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .order-widget-icon img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
    }

    .order-widget-title {
        font-size: 14px;
        font-weight: 700;
        color: #111;
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .order-widget-live {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #00ff66;
        display: inline-block;
        animation: orderBlink 1s infinite;
        box-shadow: 0 0 10px #00ff66;
    }

    @keyframes orderBlink {
        0% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .4;
            transform: scale(.8);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .order-widget-desc {
        font-size: 13px;
        color: #555;
        line-height: 1.4;
    }

    .order-widget-time {
        font-size: 11px;
        color: #888;
        margin-top: 5px;
    }

    .order-widget-close {
        position: absolute;
        top: 6px;
        right: 8px;
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: #999;
    }

    .order-widget-close:hover {
        color: #000;
    }

    @media(max-width:768px) {
        .order-widget {
            width: calc(100% - 30px);
            right: 15px;
            top: 15px;
        }
    }




    /* CSS WIDGET SHOPPING TENGAH */

    .hero-live-widget {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 35px;
        margin-left: 35px;
        margin-right: 35px;
    }

    /* =========================
       LOADING SKELETON
    ========================== */

    .hero-live-skeleton {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;

        background: linear-gradient(135deg,
                rgba(59, 130, 246, 0.20),
                rgba(124, 58, 237, 0.18));

        border: 1px solid rgba(255, 255, 255, 0.08);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        padding: 14px 18px;
        border-radius: 18px;
        min-width: 260px;
        overflow: hidden;

        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    }

    .hero-live-skeleton::before {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-100%);
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.12),
                transparent);
        animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
        100% {
            transform: translateX(100%);
        }
    }

    .skeleton-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
    }

    .skeleton-content {
        flex: 1;
    }

    .skeleton-line {
        height: 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 10px;
    }

    .skeleton-line.title {
        width: 110px;
        height: 12px;
    }

    .skeleton-line.desc {
        width: 180px;
    }

    .skeleton-line.time {
        width: 90px;
        margin-bottom: 0;
    }

    /* =========================
       ORIGINAL WIDGET
    ========================== */

    .hero-live-item {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;

        background: linear-gradient(135deg,
                rgba(59, 130, 246, 0.38),
                rgba(124, 58, 237, 0.34));

        border: 1px solid rgba(255, 255, 255, 0.15);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        padding: 14px 18px;
        border-radius: 18px;
        min-width: 260px;
        transition: 0.3s;
        overflow: hidden;

        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.20);

        animation: fadeUp .5s ease;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-live-item:hover {
        transform: translateY(-4px);

        background: linear-gradient(135deg,
                rgba(59, 130, 246, 0.48),
                rgba(124, 58, 237, 0.45));
    }

    .hero-live-icon img {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        object-fit: cover;
    }

    .hero-live-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-live-title {
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 2px;
    }

    .hero-live-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.4;
    }

    .hero-live-time {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.70);
        margin-top: 4px;
    }

    .hero-live-status {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #00ff7b;
        margin-left: auto;
        animation: blinkLive 1.2s infinite;
        box-shadow: 0 0 10px #00ff7b;
    }

    @keyframes blinkLive {
        0% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .4;
            transform: scale(.8);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    @media(max-width:768px) {

        .hero-live-widget {
            gap: 10px;
            margin-left: 15px;
            margin-right: 15px;
        }

        .hero-live-item,
        .hero-live-skeleton {
            width: 100%;
            min-width: 100%;
        }

    }


    input::placeholder {
        color: #c2c7c9 !important;
        opacity: 0.5;
    }

    .hide {
        display: none !important;
    }

    .rbt-step-btn-next:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .multisteps-form__panel {
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .rbt-step-btn-next:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

    .swal2-popup {
        font-size: 2rem !important;
        width: 23em !important;
    }

    .swal2-title {
        font-size: 2.5rem !important;
        color: #000 !important;
    }

    .swal2-html-container {
        font-size: 2rem !important;
    }

    .btnbim-alert {
        animation: btnbimBlink 0.6s infinite alternate !important;
        border: 3px solid #ff3d3d !important;
        box-shadow: 0 0 20px rgba(255, 61, 61, .7) !important;
        transform: scale(1.05) !important;
    }

    @keyframes btnbimBlink {
        0% {
            opacity: 1 !important;
            transform: scale(1) !important;
        }

        100% {
            opacity: .6 !important;
            transform: scale(1.08) !important;
        }
    }