/* ================================
   WRAPPER
================================ */

.two-emi-wrapper {
    display: flex;
    gap: 40px;
    background: #f5f7fa;
    padding: 40px;
    border-radius: 12px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .two-emi-wrapper {
        flex-direction: column;
    }
}


/* ================================
   LEFT COLUMN
================================ */

.two-emi-left {
    flex: 1;
}

.two-emi-left h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.emi-field {
    margin-bottom: 30px;
}

.emi-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.emi-field span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a4fd7;
}


/* ================================
   RANGE SLIDER
================================ */

.two-emi-left input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e0e6ed;
    border-radius: 5px;
    outline: none;
    appearance: none;
}

/* Slider Thumb */
.two-emi-left input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.two-emi-left input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}


/* ================================
   RIGHT COLUMN
================================ */

.two-emi-right {
    flex: 1;
    background: #e9eef5;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.two-emi-right h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* ================================
   RESULT BOX
================================ */

.emi-result-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.emi-monthly {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.emi-total {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}


/* ================================
   BUTTON
================================ */

.emi-btn {
    background: #1a4fd7;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.emi-btn:hover {
    background: #153eb3;
}

/* =========================
   RESULT CARD STYLE
========================= */

.emi-result-card {
    background: #f3f4f6;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.emi-result-card hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

.emi-monthly {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.emi-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emi-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 16px;
}

.emi-icon {
    font-size: 18px;
}

.emi-term-display,
.emi-total {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
}
.emi-estimate-note {
    margin-top: 25px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}