.bap-custom-scripts-installment-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9fb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: var(--minimog-typography-body-font-family, 'Geom');
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    height: 64px;
    box-sizing: border-box;
}

.bap-custom-scripts-installment-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.bap-custom-scripts-installment-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    color: #5a2d81;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.bap-custom-scripts-installment-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.bap-custom-scripts-installment-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.bap-custom-scripts-installment-title {
    font-size: 13px;
    font-weight: 700;
    color: #5a2d81;
}

.bap-custom-scripts-installment-sub {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
}

.bap-custom-scripts-installment-select-group {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.bap-custom-scripts-installment-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    padding: 5px 25px 5px 5px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    text-align: center;
    text-align-last: center;
    font-family: inherit;
    outline: none;
}

.bap-custom-scripts-installment-select:hover {
    border-bottom-color: #999;
}

.bap-custom-scripts-installment-select:focus {
    border-bottom-color: #5a2d81;
}

.bap-custom-scripts-installment-arrow {
    position: absolute;
    right: 50%;
    margin-right: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #777;
    pointer-events: none;
}

.bap-custom-scripts-installment-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 0 0 auto;
    min-width: 100px;
}

.bap-custom-scripts-installment-amount {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.bap-custom-scripts-installment-period {
    font-size: 12px;
    font-weight: 400;
    color: #777;
}

.bap-custom-scripts-installment-fee {
    font-size: 11px;
    font-weight: 600;
    color: #d63031;
    background: #fff0f0;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 5px;
}

@media (max-width: 500px) {
    .bap-custom-scripts-installment-strip {
        height: auto;
        padding: 12px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .bap-custom-scripts-installment-brand {
        width: 100%;
    }

    .bap-custom-scripts-installment-select-group {
        flex: 1;
        margin: 0;
        justify-content: flex-start;
    }

    .bap-custom-scripts-installment-select {
        text-align: left;
        text-align-last: left;
        padding-left: 0;
    }

    .bap-custom-scripts-installment-arrow {
        right: auto;
        left: 80px;
        margin: 0;
    }
}
