.aj-wizard-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Montserrat', sans-serif;
    min-height: 500px;
    position: relative;
}

.aj-wizard-header {
    background: #f8fbff;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.aj-progress-bar {
    height: 4px;
    background: #e67e22;
    transition: width 0.5s ease;
    margin-bottom: 15px;
    border-radius: 2px;
}
.aj-wizard-header h3 { margin: 0; color: #2c3e50; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; }

.aj-wizard-body { padding: 30px; }

/* Grid Opcji */
.aj-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.aj-option-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 25px 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}
.aj-option-card:hover, .aj-option-card.active {
    border-color: #e67e22;
    background: #fff5eb;
    transform: translateY(-3px);
}

.aj-opt-icon { font-size: 40px; margin-bottom: 10px; }
.aj-opt-label { font-weight: 700; color: #444; font-size: 14px; }

/* Formularz Końcowy */
.aj-final-form { max-width: 500px; margin: 0 auto; }
.aj-form-row { margin-bottom: 15px; }
.aj-form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.aj-final-form label { display: block; font-weight: 700; margin-bottom: 5px; font-size: 12px; text-transform: uppercase; color: #777; }
.aj-final-form input, .aj-final-form textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px;
}
.aj-final-form input:focus { border-color: #e67e22; outline: none; }

.aj-submit-btn {
    width: 100%;
    background: #2c3e50;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}
.aj-submit-btn:hover { background: #e67e22; }

/* Inne */
.aj-next-btn { margin-top: 20px; width: 100%; padding: 15px; background: #e67e22; color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; }
.aj-back-btn { background: none; border: none; color: #999; cursor: pointer; padding: 10px; }
.aj-wizard-footer { padding: 10px 30px; border-top: 1px solid #eee; background: #fcfcfc; }
.aj-rodo { font-size: 10px; color: #bbb; text-align: center; margin-top: 10px; }

.aj-loader, .aj-success-screen { text-align: center; padding: 50px; }
.aj-success-icon { font-size: 60px; margin-bottom: 20px; }
/* Nowe Elementy dla wersji PRO Tekstyliów */

.aj-material-selector {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eef2f7;
}

.aj-sub-label {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CHIPS (Kategorie) */
.aj-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aj-chip {
    padding: 10px 20px;
    background: #f0f2f5;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid transparent;
}

.aj-chip:hover { background: #e2e6ea; }
.aj-chip.active {
    background: #2c3e50;
    color: #fff;
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

/* SELECT */
.aj-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #eef2f7;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    cursor: pointer;
    background: #fff;
}
.aj-select:focus { border-color: #e67e22; outline: none; }

/* Grid dla Gramatur (Mniejszy) */
.aj-options-grid.small-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}
.aj-option-card.small {
    padding: 15px 5px;
    font-size: 14px;
}

/* Podsumowanie w formularzu */
.aj-summary-box {
    background: #fffbf0;
    border-left: 4px solid #e67e22;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    border-radius: 4px;
}

.aj-next-btn-small {
    float: right;
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}