/*
 * kitchen-estimator.css — kitchen estimator additive styles
 * ═══════════════════════════════════════════════════════════
 * PATH: public/css/kitchen-estimator.css
 * ROLE: Only what estimator.css does not already cover: a native-button
 *       reset for the selectable cards (built as <button> for a11y, not
 *       <div onclick>), plus the kitchen conditions/results components.
 *       Purpose-named classes only — no appearance/data class names.
 * SEE: app/Views/public/estimator/kitchen.php
 */

/* Cards/dots are real buttons now — strip native chrome, keep card styling. */
.room-card,
.size-card,
.tier-card {
    font: inherit;
    width: 100%;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.est-progress-dot {
    padding: 0;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

/* Step 4 — conditions form on the dark card. */
.kx-field {
    margin: 0 0 18px;
}

.kx-field-note {
    font-size: 12px;
    color: #9aa4b2;
    margin: 6px 0 0;
    line-height: 1.5;
}

.kx-field--conditional {
    border-left: 3px solid var(--teal, #1F4D72);
    padding-left: 14px;
    margin-top: 14px;
}

.kx-toggles {
    display: grid;
    gap: 10px;
    margin: 18px 0 4px;
}

.kx-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
}

.kx-toggle input {
    margin-top: 3px;
    flex: 0 0 auto;
}

/* Step 5 — results. */
.kx-section-title {
    font-size: 16px;
    font-weight: 600;
    margin: 28px 0 6px;
    color: var(--dark, #131722);
}

.kx-schedule-summary {
    font-size: 13px;
    color: #555;
    margin: 10px 0 0;
    font-weight: 600;
}

.kx-schedule-disclaimer {
    font-size: 12px;
    color: var(--text-light, #8898aa);
    line-height: 1.5;
    margin: 8px 0 0;
    font-style: italic;
}

.kx-flags {
    background: #fff4e5;
    border: 1px solid #f0c27a;
    color: #8a5a00;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    margin: 16px 0;
}

.kx-list {
    text-align: left;
    margin: 8px auto 0;
    max-width: 620px;
    padding-left: 20px;
}

.kx-list li {
    margin: 6px 0;
}

/* ─── Intro limitations modal ─── */
.kx-intro-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(26, 31, 46, 0.72);
    overflow-y: auto;
}

.kx-intro-modal--dismissed {
    display: none;
}

.kx-intro-dialog {
    background: #fff;
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    padding: 32px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.kx-intro-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: var(--dark, #131722);
    margin: 0 0 16px;
}

.kx-intro-dialog p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark, #333);
    margin: 0 0 12px;
}

.kx-intro-list {
    margin: 4px 0 12px;
    padding-left: 20px;
}

.kx-intro-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark, #333);
    margin: 4px 0;
}

.kx-intro-dismiss {
    margin-top: 12px;
}
