.abz-container02 {
        width: 700px;
        height: 400px;
        background: white;
        border-radius: 32px;
        box-shadow: 0 25px 50px -12px rgba(38, 76, 71, 0.3);
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    /* هدر مبلغ */
    .abz-amount-header {
        background: #f0f7f4;
        padding: 8px 16px;
        border-radius: 20px;
        margin-bottom: 12px;
        border: 1px solid #d0e2db;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 48px;
    }

    .abz-title {
        font-size: 14px;
        font-weight: 600;
        color: #264C47;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .abz-amount-box {
        background: white;
        padding: 4px 16px;
        border-radius: 30px;
        border: 1px solid #264C47;
        display: flex;
        align-items: center;
        gap: 4px;
        height: 36px;
    }

    .abz-amount-label {
        font-size: 22px;
        font-weight: 800;
        color: #264C47;
        line-height: 1;
    }

    .abz-amount-unit {
        font-size: 12px;
        color: #5a7b73;
        background: #eef6f3;
        padding: 3px 8px;
        border-radius: 30px;
    }

    /* اسلایدر */
    .abz-slider-wrap {
        background: white;
        padding: 5px 16px 10px 16px;
        border-radius: 20px;
        border: 1px solid #d0e2db;
        margin-bottom: 15px;
        height: 60px;
    }

    .abz-slider-header {
        height: 5px;
    }

    .abz-slider {
        width: 100%;
        height: 4px;
        border-radius: 10px;
        background: #d0e2db;
        outline: none;
        -webkit-appearance: none;
        margin: 8px 0 5px 0;
    }

    .abz-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(38, 76, 71, 0.3);
        cursor: pointer;
        border: 2px solid #264C47;
    }

    .abz-slider-labels {
        display: flex;
        justify-content: space-between;
        font-size: 10px;
        color: #7b9b93;
        font-weight: 500;
    }

    .abz-slider-labels span:first-child::after {
        content: " میلیون";
    }
    
    .abz-slider-labels span:nth-child(2)::after {
        content: " میلیون";
    }
    
    .abz-slider-labels span:last-child::after {
        content: " میلیون";
    }

    /* ماه‌ها */
    .abz-months-section {
        margin-bottom: 20px;
        height: 60px;
    }

    .abz-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .abz-section-title {
        font-size: 13px;
        font-weight: 600;
        color: #264C47;
    }

    .abz-months-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 5px;
    }

    .abz-month-card {
        background: #f5faf8;
        border: 1px solid #d0e2db;
        border-radius: 16px;
        padding: 5px 0;
        text-align: center;
        cursor: pointer;
        transition: all 0.15s;
        height: 38px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .abz-month-card.active {
        background: #264C47;
        border-color: #264C47;
    }

    .abz-month-number {
        font-size: 14px;
        font-weight: 700;
        color: #264C47;
        line-height: 1.2;
    }

    .abz-month-card.active .abz-month-number {
        color: white;
    }

    .abz-month-text {
        font-size: 8px;
        color: #7b9b93;
    }

    .abz-month-card.active .abz-month-text {
        color: rgba(255, 255, 255, 0.8);
    }

    /* نتایج */
    .abz-stats-row {
        display: flex;
        gap: 10px;
        height: 100px;
    }

    .abz-stat-card {
        flex: 1;
        background: #f5faf8;
        border-radius: 20px;
        padding: 15px;
        border: 1px solid #d0e2db;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .abz-stat-card.large {
        flex: 1.3;
    }

    .abz-stat-label {
        font-size: 12px;
        font-weight: 600;
        color: #5a7b73;
        margin-bottom: 8px;
    }

    .abz-stat-value {
        font-size: 24px;
        font-weight: 800;
        color: #264C47;
        direction: ltr;
        unicode-bidi: plaintext;
        display: flex;
        align-items: center;
        gap: 5px;
        line-height: 1.2;
        justify-content: flex-end;
        flex-direction: row;
    }

    .abz-stat-value small {
        font-size: 12px;
        font-weight: 500;
        color: #7b9b93;
        order: 2;
    }

    @media (max-width: 700px) {
        .abz-container02 {
            width: 100%;
            height: auto;
            min-height: 400px;
        }
        
        .abz-months-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .abz-stats-row {
            flex-direction: column;
            height: auto;
        }
    }