/**
 * BNPL Installments for WooCommerce - Frontend Styles
 *
 * @package BNPL_Installments_For_WooCommerce
 */

.bnplw-product-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.bnplw-product-section h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2em;
}

.bnplw-teaser {
    margin: 10px 0;
    font-style: italic;
    color: #666;
}

.bnplw-selector {
    margin: 15px 0;
}

.bnplw-selector label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.bnplw-selector select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.bnplw-installment-results {
    margin: 15px 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.bnplw-installment-results h4 {
    margin-top: 0;
    color: #333;
}

.bnplw-installment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bnplw-installment-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.bnplw-installment-item:last-child {
    border-bottom: none;
}

.bnplw-institution-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.bnplw-institution-logo {
    max-height: 40px;
    max-width: 100px;
    margin-right: 15px;
    object-fit: contain;
}

.bnplw-tenure {
    font-weight: normal;
    color: #555;
}

.bnplw-monthly-amount {
    font-weight: bold;
    color: #222;
}

.bnplw-documents-section {
    margin-top: 15px;
    padding: 10px;
    background-color: #f0f8ff;
    border: 1px solid #cce5ff;
    border-radius: 4px;
}

.bnplw-documents-section h5 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #004085;
    font-size: 1em;
}

.bnplw-documents-list {
    margin: 0;
    color: #004085;
    font-size: 0.9em;
}

.bnplw-disclaimer {
    margin-top: 15px;
    font-size: 0.9em;
    color: #888;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bnplw-installment-item {
        flex-direction: column;
    }
    
    .bnplw-monthly-amount {
        margin-top: 5px;
    }
}