/* ============================================================
   🧱 SOCLE ADMIN – WP-FRANCE THEA
   ============================================================ */
.wrap {
    max-width: 1600px;
}

.thea-box-grey {
    background: #f1f3f5;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thea-box-grey h1 {
    margin-top: 0;
    font-size: 26px;
}

.thea-box-grey p {
    font-size: 15px;
    margin-bottom: 12px;
}

.thea-box-white {
    background: #ffffff;
    padding: 26px 30px;
    border-radius: 16px;
    margin-bottom: 26px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.thea-box-white h2,
.thea-box-white h3 {
    margin-top: 0;
}

.thea-footer-logo {
    margin-top: 30px;
}

.thea-footer-logo img {
    max-width: 200px;
    height: auto;
}

.tnn-admin-hero {
    margin-top: 18px;
}

.tnn-admin-hero img {
    display: block;
    max-width: 760px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border: 1px solid #e8eef9;
    background: #fff;
}

/* ============================================================
   🎯 FRONT – Nico Numérique
   ============================================================ */
.tnn-card {
    border: 3px solid #b9cdf9;
    border-radius: 34px;
    padding: 26px 28px 26px;
    background: #fff;
    margin: 24px 0 18px;
    box-shadow: 0 10px 28px rgba(64, 110, 186, 0.06);
}

.tnn-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tnn-card__dash {
    font-size: 30px;
    line-height: 1;
    color: #151515;
    font-weight: 700;
}

.tnn-card__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.tnn-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 18px;
}

.tnn-choice {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.tnn-choice input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tnn-choice__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #cfcfcf;
    background: #fff;
    flex: 0 0 22px;
    box-shadow: inset 0 0 0 0 #000;
    transition: all .18s ease;
}

.tnn-choice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 50px;
    padding: 9px 16px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
    border: 2px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.tnn-choice--paper .tnn-choice__button {
    background: #efe7e2;
    border-color: #d8c6bc;
    color: #8e7163;
}

.tnn-choice--digital .tnn-choice__button {
    background: #e6effe;
    border-color: #c7d5ee;
    color: #5874a3;
}

.tnn-choice:hover .tnn-choice__button {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.tnn-choice.is-selected .tnn-choice__dot {
    border-color: #111;
    background: #111;
    box-shadow: inset 0 0 0 4px #fff;
}

.tnn-choice[data-tnn-choice="paper"].is-selected .tnn-choice__button {
    box-shadow: 0 0 0 3px rgba(142, 113, 99, .14);
}

.tnn-choice[data-tnn-choice="digital"].is-selected .tnn-choice__button {
    box-shadow: 0 0 0 3px rgba(88, 116, 163, .16);
}

.tnn-digital-panel {
    margin-top: 22px;
    padding: 22px 24px;
    border-radius: 24px;
    background: #f5f8fe;
    border: 1px solid #dfe7f7;
}

.tnn-digital-panel__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.tnn-digital-panel__text {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

.tnn-digital-panel__text p {
    margin: 0 0 10px;
}

.tnn-digital-panel__price {
    margin: 14px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: #2f4f83;
}

.tnn-digital-panel__offer {
    margin-top: 16px;
}

.tnn-digital-panel__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f8ddea;
    color: #b04d73;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 16px rgba(176, 77, 115, 0.15);
}

.tnn-help {
    margin: 14px 0 0;
    font-size: 14px;
    color: #af2323;
}

.tnn-hide-important {
    display: none !important;
}

@media (max-width: 768px) {
    .tnn-card {
        border-radius: 26px;
        padding: 22px 18px 22px;
    }

    .tnn-card__title {
        font-size: 18px;
    }

    .tnn-choice-row {
        gap: 12px;
    }

    .tnn-choice {
        width: 100%;
    }

    .tnn-choice__button {
        min-width: 0;
        width: 100%;
        min-height: 58px;
        font-size: 16px;
    }

    .tnn-digital-panel__title {
        font-size: 20px;
    }
}
