/* Mzuri Kalkulator - bazowy layout, dziedziczy style ze strony */
.mzuri-kalkulator-wrap,
.mzuri-contact-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.mzuri-form .mzuri-field {
    margin-bottom: 16px;
}

.mzuri-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.mzuri-form .required {
    color: #e74c3c;
}

.mzuri-form select,
.mzuri-form input[type="email"],
.mzuri-form input[type="text"],
.mzuri-form input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: inherit;
    font-family: inherit;
    background: #fff;
    color: inherit;
    box-sizing: border-box;
}

.mzuri-form select:focus,
.mzuri-form input:focus {
    border-color: #1a3a5c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(26,58,92,0.15);
}

.mzuri-form select:disabled {
    background: #f5f5f5;
    color: #999;
}

.mzuri-rodo label {
    font-weight: 400;
    font-size: 0.85em;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mzuri-rodo input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.mzuri-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #1a3a5c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: inherit;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
    line-height: 1.4;
}

.mzuri-btn:hover {
    opacity: 0.85;
}

.mzuri-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mzuri-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 0.9em;
    line-height: 1.5;
}

.mzuri-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mzuri-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mzuri-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: mzuri-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes mzuri-spin {
    to { transform: rotate(360deg); }
}

/* Step header */
.mzuri-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mzuri-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
    font-weight: 700;
    font-size: 0.9em;
    flex-shrink: 0;
}

.mzuri-step-title {
    font-weight: 600;
    font-size: 1.1em;
}

/* Two buttons side by side */
.mzuri-buttons {
    display: flex;
    gap: 10px;
}

.mzuri-buttons .mzuri-btn {
    flex: 1;
}

.mzuri-btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #ccc;
}

.mzuri-btn-secondary:hover {
    border-color: #999;
    opacity: 1;
}

/* Contact form (step 2) */
.mzuri-contact-wrap .mzuri-field {
    margin-bottom: 16px;
}

.mzuri-contact-wrap label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.mzuri-result-summary {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.mzuri-result-summary strong {
    display: block;
    margin-bottom: 4px;
}
