
    .installment-options-wrapper {
        background: #f8f9fa;
        margin: 0 0 25px 0;
        padding: 20px;
        border-radius: 8px;
        border: 2px solid #e9ecef;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .installment-options-wrapper h4 {
        margin-top: 0;
        margin-bottom: 15px;
        color: #2c5aa0;
        font-size: 1.2em;
        font-weight: 600;
        border-bottom: 2px solid #2c5aa0;
        padding-bottom: 10px;
    }
    
    .installment-option {
        margin-bottom: 12px;
    }
    
    .installment-option label {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 12px 15px;
        border-radius: 6px;
        transition: all 0.2s ease;
        border: 1px solid #dee2e6;
        background: white;
    }
    
    .installment-option label:hover {
        background-color: #e3f2fd;
        border-color: #2c5aa0;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(44,90,160,0.1);
    }
    
    .installment-option input[type="radio"]:checked + span {
        font-weight: 600;
        color: #2c5aa0;
    }
    
    .installment-option input[type="radio"] {
        margin-right: 12px;
        transform: scale(1.3);
        accent-color: #2c5aa0;
    }
    
    .installment-option span {
        font-size: 1.1em;
        color: #495057;
    }
    
    .installment-info {
        background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
        border: 1px solid #28a745;
        border-radius: 6px;
        padding: 18px;
        margin-top: 15px;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .selected-amount {
        font-weight: bold;
        color: #155724;
        margin: 0 0 8px 0;
        font-size: 1.1em;
    }
    
    .remaining-amount {
        color: #856404;
        font-size: 1em;
        margin: 0;
        font-weight: 500;
    }
    
    /* Responsive design */
    @media (max-width: 768px) {
        .installment-options-wrapper {
            margin: 0 0 20px 0;
            padding: 15px;
        }
        
        .installment-option label {
            padding: 10px 12px;
        }
        
        .installment-option span {
            font-size: 1em;
        }
    }
    .woocommerce-page.woocommerce-checkout form #order_review td.product-name {
	font-weight: 500;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	min-width: 200px;
}