/* --- BASE LAYOUT GLOBAL (toutes les pages kiosque) --- */

.rk-kiosk-scope {
    margin: 0;
    padding: 0;
    font-family: 'saira', sans-serif;
    font-size: 1rem !important;
    width: 100%;
    box-sizing: border-box;
}

.rk-kiosk-scope h1,
.rk-kiosk-scope h2,
.rk-kiosk-scope h3,
.rk-kiosk-scope h4,
.rk-kiosk-scope h5,
.rk-kiosk-scope h6,
.rk-kiosk-scope p {
    font-size: 1.1rem !important;
}

.rk-kiosk-scope select,
.rk-kiosk-scope input,
.rk-kiosk-scope button,
.rk-kiosk-scope textarea,
.rk-kiosk-scope ul,
.rk-kiosk-scope li {
    font-size: 1rem !important;
}

.rk-kiosk-scope a {
    text-decoration: none;
    color: inherit;
}

/* Container plein écran pour toutes les pages kiosk */
.rk-kiosk-scope.kiosk-page,
.rk-kiosk-scope .kiosk-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
}

/* Champs */
.kiosk-field {
    margin-bottom: 18px;
}

.kiosk-field label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.kiosk-field input[type="email"],
.kiosk-field input[type="password"],
.kiosk-field input[type="text"],
.kiosk-field input[type="number"] {
    width: 100%;
    font-size: 1.2rem;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Boutons */
.kiosk-btn-primary {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 14px 16px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.kiosk-divider {
    width: 100%;
    margin: 24px 0 12px;
    border-top: 1px solid #e5e5e5;
}

.kiosk-subtitle {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.kiosk-helper-text,
.kiosk-order-note {
    margin: 0 0 16px;
    color: #444;
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive global */
@media (max-width: 768px) {

    .rk-kiosk-scope .kiosk-login-card,
    .rk-kiosk-scope .kiosk-content-card {
        padding: 24px 16px;
        border-radius: 0;
        box-shadow: none;
    }
}
