﻿
    :root {
        --arzico-order-sticky-top: 110px;
    }

    .arzico-order-sidebar {
        width: 100%;
        direction: rtl;
        font-family: inherit;
        box-sizing: border-box;
    }

    .arzico-order-sidebar *,
    .arzico-order-sidebar *::before,
    .arzico-order-sidebar *::after {
        box-sizing: border-box;
    }

    .arzico-order-sidebar__card {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 22px;
        border: 1px solid rgba(46, 125, 246, 0.16);
        border-radius: 22px;
        background:
            radial-gradient(circle at top right, rgba(46, 125, 246, 0.16), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
        box-shadow: 0 16px 42px rgba(20, 35, 70, 0.10);
    }

    .arzico-order-sidebar__card::before {
        content: "";
        position: absolute;
        inset-inline-end: -54px;
        top: -54px;
        width: 130px;
        height: 130px;
        border-radius: 999px;
        background: rgba(46, 125, 246, 0.10);
    }

    .arzico-order-sidebar__content {
        position: relative;
        z-index: 1;
    }

    .arzico-order-sidebar__badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(46, 125, 246, 0.10);
        color: #2164d8;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.8;
    }

    .arzico-order-sidebar__title {
        margin: 0 0 10px;
        color: #14213d;
        font-size: 21px;
        font-weight: 900;
        line-height: 1.7;
    }

    .arzico-order-sidebar__text {
        margin: 0 0 16px;
        color: #5d6778;
        font-size: 14px;
        font-weight: 400;
        line-height: 2;
    }

    .arzico-order-sidebar__list {
        display: grid;
        gap: 9px;
        margin: 0 0 20px;
        padding: 0;
        list-style: none;
    }

    .arzico-order-sidebar__list li {
        position: relative;
        padding-inline-start: 24px;
        color: #3e4a5f;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.9;
    }

    .arzico-order-sidebar__list li::before {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 11px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #88a67e;
        box-shadow: 0 0 0 4px rgba(46, 125, 246, 0.11);
    }

    .arzico-order-sidebar__button {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        padding: 13px 20px;
        border: 0;
        border-radius: 16px;
        background: #88a67e;
        color: #ffda7c !important;
        font-size: 16px;
        font-weight: 900;
        line-height: 1.8;
        text-align: center;
        text-decoration: none !important;
        box-shadow: 0 12px 28px rgba(46, 125, 246, 0.28);
        transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .arzico-order-sidebar__button:hover {
        color: #ffffff !important;
        transform: translateY(-2px);
        filter: brightness(1.03);
        box-shadow: 0 16px 34px rgba(46, 125, 246, 0.36);
    }

    .arzico-order-sidebar__button:focus-visible {
        outline: 3px solid rgba(46, 125, 246, 0.26);
        outline-offset: 4px;
    }

    @media (min-width: 1025px) {
        .elementor-element-853bde8 {
            overflow: visible !important;
            align-items: flex-start !important;
        }

        .elementor-element-671b577 {
            align-self: stretch !important;
            overflow: visible !important;
        }

        .arzico-order-sidebar {
            position: sticky;
            top: var(--arzico-order-sticky-top);
            z-index: 30;
            margin-top: 22px;
        }

        .arzico-order-sidebar__card {
            padding: 24px;
        }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        body {
            padding-bottom: 96px;
        }

        .arzico-order-sidebar {
            position: fixed;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 9999;
            padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 -12px 32px rgba(20, 35, 70, 0.12);
        }

        .arzico-order-sidebar__card {
            display: grid;
            grid-template-columns: 1fr 220px;
            align-items: center;
            gap: 16px;
            max-width: 920px;
            margin: 0 auto;
            padding: 14px;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 10px 28px rgba(20, 35, 70, 0.10);
        }

        .arzico-order-sidebar__badge,
        .arzico-order-sidebar__text,
        .arzico-order-sidebar__list {
            display: none;
        }

        .arzico-order-sidebar__title {
            margin: 0;
            font-size: 16px;
            line-height: 1.8;
        }

        .arzico-order-sidebar__button {
            min-height: 48px;
            border-radius: 14px;
            font-size: 15px;
        }
    }

    @media (max-width: 767px) {
        body {
            padding-bottom: 92px;
        }

        .arzico-order-sidebar {
            position: fixed;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 9999;
            padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 -10px 30px rgba(20, 35, 70, 0.14);
        }

        .arzico-order-sidebar__card {
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .arzico-order-sidebar__card::before,
        .arzico-order-sidebar__content {
            display: none;
        }

        .arzico-order-sidebar__button {
            min-height: 54px;
            border-radius: 16px;
            font-size: 16px;
            box-shadow: 0 12px 26px rgba(46, 125, 246, 0.34);
        }
    }
