/*
 * Styles for the Installment Application Form plugin.
 *
 * These rules provide a modern, responsive layout for the multi‑step form.
 * A semi‑bold Persian font (Vazirmatn) is loaded via Google Fonts.  You can
 * replace the @import with your own font files if needed.  The body
 * background uses a warm gradient to evoke the feeling of household shopping.
 */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');

body.iaf-form-active {
    /* Gradient background evokes warmth and comfort */
    background: linear-gradient(135deg, #fde5b8 0%, #f7c16a 50%, #f09646 100%);
    background-attachment: fixed;
    font-family: 'Vazirmatn', sans-serif;
}

.iaf-form-container {
    max-width: 780px;
    margin: 45px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 35px 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.iaf-form-container h3 {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 22px;
    color: #333;
}

.iaf-step {
    display: none;
}

.iaf-step.active {
    display: block;
}

.iaf-form-container label {
    display: block;
    margin-top: 14px;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 15px;
}

.iaf-form-container input[type="text"],
.iaf-form-container input[type="tel"],
.iaf-form-container select,
.iaf-form-container input[type="number"],
.iaf-form-container input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 6px;
    transition: border 0.2s ease;
    font-family: inherit;
    font-size: 15px;
}

.iaf-form-container input:focus,
.iaf-form-container select:focus {
    border-color: #f09646;
    outline: none;
}

.iaf-navigation {
    margin-top: 20px;
    text-align: right;
}

.iaf-navigation button {
    background: #e38b33;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.2s ease;
    font-weight: 500;
}

.iaf-navigation button:hover {
    background: #d67925;
}

.iaf-product-list {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    background: #fafafa;
    margin-top: 10px;
}

.iaf-product-item {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.iaf-product-item input {
    margin-left: 6px;
}

.iaf-condition-group {
    margin-top: 10px;
    padding-left: 5px;
}

.iaf-condition-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.iaf-credit-tip {
    margin-top: 20px;
    background: #fff8e5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5dca6;
    font-size: 14px;
    line-height: 1.6;
}

.iaf-credit-tip a {
    color: #d97a24;
    text-decoration: underline;
}

.iaf-success {
    padding: 20px;
    background: #e6f7e8;
    border: 1px solid #b9e6bc;
    border-radius: 8px;
    color: #297a38;
    font-weight: 600;
    text-align: center;
}
