.product-installment-wrapper {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    direction: rtl;
    font-size: 14px;
}

.installment-main-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

.installment-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.installment-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 178px;
    padding: 14px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fafafa;
}

.installment-plan-card--active {
    border-color: #cfcfcf;
    background: #fff;
}

.installment-plan-header {
    min-height: 40px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #222;
}

.installment-plan-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
}

.installment-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e3e3e3;
}

.installment-info-item:first-child {
    padding-top: 0;
    border-top: none;
}

.installment-label {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
}

.installment-value {
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

.installment-info-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #555;
    font-size: 13px;
    line-height: 1.8;
}

.installment-info-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    border: 1px dashed #dfdfdf;
    border-radius: 8px;
    color: #777;
    font-size: 13px;
}

.installment-add-to-cart {
    width: 100%;
    margin-top: 14px;
    border-color: #030045;
    background: #030045;
    color: #fff;
    text-align: center;
}

.installment-add-to-cart:hover,
.installment-add-to-cart:focus {
    border-color: #030045;
    background: #030045;
    color: #fff;
}

.installment-add-to-cart.is-disabled {
    cursor: not-allowed;
    opacity: .55;
}

@media (max-width: 900px) {
    .installment-plans {
        grid-template-columns: 1fr;
    }

    .product-installment-wrapper {
        padding: 14px;
    }

    .installment-plan-card {
        min-height: 0;
    }

    .installment-plan-header {
        min-height: 0;
    }
}
