.order-status-form-block {
        position: relative;
        z-index: 20;
        margin-bottom: 40px;
    }

    .order-status-form-block .contact-form-style .row {
        align-items: flex-start;
    }

    .order-status-form-block .billing-select {
        margin-bottom: 19px;
    }

    .order-status-form-block .billing-select .ts-wrapper.single .ts-control {
        min-height: 40px !important;
        height: 40px !important;
    }

    .order-status-form-block #order {
        width: 100% !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 12px !important;
        margin-bottom: 19px !important;
        box-sizing: border-box;
        line-height: normal !important;
        font-size: 15px;
    }

    .order-status-form-block #order::placeholder {
        font-size: 14px;
    }

    .order-status-form-block #submit {
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 24px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px;
        line-height: 1 !important;
        text-align: center;
        white-space: nowrap;
    }

    .order-status-form-block #submit i {
        line-height: 1 !important;
        display: inline-flex;
        align-items: center;
    }

    /* ===== TRACKING ESTILO AMAZON ===== */
    .tracking-wrapper {
        margin: 40px auto 80px;
        max-width: 1100px;
        padding: 0 15px;
    }

    .tracking-card {
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        overflow: hidden;
        display: none;
    }

    .tracking-card.is-visible {
        display: block;
    }

    .tracking-card-header {
        padding: 22px 28px 14px;
        border-bottom: 1px solid #f0f0f0;
        background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    }

    .tracking-card-header h3 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #232f3e;
    }

    .tracking-card-header p {
        margin: 8px 0 0;
        color: #5f6b7a;
        font-size: 15px;
    }

    .tracking-progress {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 28px;
        position: relative;
        flex-wrap: wrap;
    }

    .tracking-progress::before {
        content: "";
        position: absolute;
        left: 60px;
        right: 60px;
        top: 56px;
        height: 6px;
        background: #e7eaee;
        border-radius: 999px;
        z-index: 0;
    }

    .tracking-progress-bar {
        position: absolute;
        left: 60px;
        top: 56px;
        height: 6px;
        background: linear-gradient(90deg, #ffb300 0%, #ff9900 100%);
        border-radius: 999px;
        z-index: 1;
        transition: width 0.35s ease;
        width: 0%;
    }

    .tracking-step {
        flex: 1 1 140px;
        min-width: 140px;
        text-align: center;
        position: relative;
        z-index: 2;
        opacity: 0.45;
        transition: all 0.25s ease;
    }

    .tracking-step.active,
    .tracking-step.done,
    .tracking-step.cancelled {
        opacity: 1;
    }

    .tracking-step-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 12px;
        border-radius: 50%;
        background: #eef1f4;
        border: 3px solid #d9dee3;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    }

    .tracking-step.done .tracking-step-icon,
    .tracking-step.active .tracking-step-icon {
        background: linear-gradient(180deg, #ffcc4d 0%, #ff9900 100%);
        border-color: #ff9900;
    }

    .tracking-step.cancelled .tracking-step-icon {
        background: linear-gradient(180deg, #ff8f8f 0%, #e53935 100%);
        border-color: #e53935;
    }

    .tracking-step-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .tracking-step-title {
        font-size: 15px;
        font-weight: 700;
        color: #232f3e;
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .tracking-step-date {
        font-size: 13px;
        color: #677281;
        min-height: 18px;
    }

    .tracking-step.active .tracking-step-date,
    .tracking-step.done .tracking-step-date,
    .tracking-step.cancelled .tracking-step-date {
        color: #232f3e;
        font-weight: 500;
    }

    .tracking-summary {
        padding: 0 28px 28px;
    }

    .tracking-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff6e5;
        color: #a15c00;
        border: 1px solid #ffd58a;
        border-radius: 999px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 700;
    }

    .tracking-badge.badge-green {
        background: #eaf8ee;
        color: #1f7a39;
        border-color: #b7e3c4;
    }

    .tracking-badge.badge-red {
        background: #fdecec;
        color: #b42318;
        border-color: #f5b5b5;
    }

    @media (max-width: 991px) {
        .tracking-progress {
            gap: 18px 10px;
        }

        .tracking-progress::before,
        .tracking-progress-bar {
            left: 50px;
            right: 50px;
        }

        .tracking-card-header h3 {
            font-size: 24px;
        }
    }

    @media (max-width: 767px) {
        .tracking-progress {
            flex-direction: column;
            align-items: flex-start;
            padding: 22px 20px;
        }

        .tracking-progress::before {
            left: 27px;
            right: auto;
            top: 32px;
            width: 6px;
            height: calc(100% - 64px);
        }

        .tracking-progress-bar {
            left: 27px;
            top: 32px;
            width: 6px !important;
            height: 0%;
        }

        .tracking-step {
            width: 100%;
            min-width: 0;
            display: flex;
            align-items: center;
            text-align: left;
            gap: 14px;
        }

        .tracking-step-icon {
            margin: 0;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
        }

        .tracking-step-icon img {
            width: 22px;
            height: 22px;
        }

        .tracking-step-title {
            margin-bottom: 2px;
        }

        .tracking-card-header,
        .tracking-summary {
            padding-left: 20px;
            padding-right: 20px;
        }
    }