/**
 * Surface Pricing CSS — Manemos Reportage v2.1.0
 * Styles pour le sélecteur de forfait surface (produit 105917).
 */

/* ── Conteneur principal ──────────────────────────────────────────────────── */
.mnmr-surface-selector {
    margin: 0 0 1.5em;
    font-family: inherit;
}

/* ── Label de section ─────────────────────────────────────────────────────── */
.mnmr-surface-label {
    font-size: 1em;
    font-weight: 600;
    margin: 0 0 .75em;
    color: #333;
}

.mnmr-surface-label .required {
    color: #e2401c;
    font-weight: 400;
    margin-left: .25em;
    text-decoration: none;
    border: none;
}

/* ── Grille d'options ─────────────────────────────────────────────────────── */
.mnmr-surface-options {
    display: flex;
    gap: .75em;
    flex-wrap: wrap;
}

/* ── Carte d'option ───────────────────────────────────────────────────────── */
.mnmr-surface-option {
    flex: 1 1 200px;
    min-width: 180px;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1em 1.1em;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    user-select: none;
}

.mnmr-surface-option:hover {
    border-color: #2c9e5a;
    box-shadow: 0 2px 8px rgba(44,158,90,.12);
}

.mnmr-surface-option.is-selected {
    border-color: #2c9e5a;
    background: #f1faf4;
    box-shadow: 0 0 0 3px rgba(44,158,90,.18);
}

/* Cacher le radio natif */
.mnmr-surface-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ── Contenu intérieur de la carte ───────────────────────────────────────── */
.mnmr-surface-option-inner {
    display: flex;
    align-items: flex-start;
    gap: .7em;
    width: 100%;
}

.mnmr-surface-option-icon {
    font-size: 1.6em;
    line-height: 1;
    flex-shrink: 0;
    margin-top: .05em;
}

.mnmr-surface-option-text {
    display: flex;
    flex-direction: column;
    gap: .25em;
}

.mnmr-surface-option-name {
    font-weight: 600;
    font-size: .95em;
    color: #222;
    line-height: 1.3;
}

.mnmr-surface-option.is-selected .mnmr-surface-option-name {
    color: #1b7a3c;
}

.mnmr-surface-option-meta {
    font-size: .85em;
    color: #555;
    line-height: 1.4;
}

.mnmr-surface-option-meta strong {
    color: #2c9e5a;
    font-size: 1.05em;
}

/* ── Message d'erreur ─────────────────────────────────────────────────────── */
.mnmr-surface-error {
    margin-top: .6em;
    padding: .5em .8em;
    background: #fff3f3;
    border-left: 3px solid #e2401c;
    color: #c0392b;
    font-size: .9em;
    border-radius: 0 4px 4px 0;
}

/* ── Masquer le sélecteur de durée WC Bookings (géré par le forfait) ─────── */
.mnmr-surface-duration-hidden,
.wc-bookings-booking-form-option.mnmr-surface-duration-hidden {
    display: none !important;
}