/**
 * L'Entrepot CRM - frontend.css
 * Palette brocante : noyer, laiton, ivoire, bleu patine
 * Charge sur toutes les pages contenant un shortcode lentrepot_*
 */

:root {
    --lent-noyer: #8B5A2B;
    --lent-noyer-fonce: #6E4621;
    --lent-laiton: #C9A961;
    --lent-laiton-clair: #E8D9B8;
    --lent-ivoire: #FAF7F0;
    --lent-ivoire-fonce: #F5EFE0;
    --lent-bleu-patine: #5C7C8A;
    --lent-anthracite: #2A2A2A;
    --lent-ocre: #A87E5A;
    --lent-bord: #E5DCC8;
    --lent-rouge: #B54E3F;
    --lent-vert: #6B8E5A;
}

/* ============================================================
 * FORMULAIRES
 * ============================================================ */

.lent-form-wrap {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--lent-bord);
    border-radius: 6px;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--lent-anthracite);
}

.lent-form-title {
    font-size: 28px;
    color: var(--lent-noyer);
    margin: 0 0 24px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: Georgia, serif;
}

.lent-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lent-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .lent-form-row {
        grid-template-columns: 1fr;
    }
    .lent-form-wrap {
        padding: 20px;
    }
}

.lent-form-field,
.lent-form-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lent-form label {
    font-size: 14px;
    color: var(--lent-anthracite);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.lent-required {
    color: var(--lent-rouge);
    font-weight: 700;
}

.lent-optional {
    color: #888;
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
}

.lent-form input[type="text"],
.lent-form input[type="email"],
.lent-form input[type="tel"],
.lent-form input[type="password"] {
    padding: 12px 14px;
    border: 1px solid var(--lent-bord);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: var(--lent-ivoire);
    color: var(--lent-anthracite);
    transition: border-color 0.2s, background 0.2s;
}

.lent-form input:focus {
    outline: none;
    border-color: var(--lent-noyer);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.12);
}

.lent-hint {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.lent-form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.lent-form-checkbox label {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.lent-form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--lent-noyer);
    cursor: pointer;
}

.lent-form-checkbox a {
    color: var(--lent-noyer);
    text-decoration: underline;
}

.lent-form-actions {
    margin-top: 8px;
}

/* Selecteurs blindes pour resister aux styles Elementor / Hello Elementor */
.lent-form-wrap button.lent-btn,
.lent-form-wrap .lent-btn,
button.lent-btn.lent-btn-primary,
.lent-btn.lent-btn-primary {
    width: 100% !important;
    padding: 14px 24px !important;
    border: 0 !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer;
    font-family: inherit !important;
    text-transform: uppercase !important;
    transition: background 0.2s;
    background: var(--lent-noyer) !important;
    color: var(--lent-ivoire) !important;
    line-height: 1.4 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.lent-form-wrap button.lent-btn:hover:not(:disabled),
.lent-form-wrap .lent-btn:hover:not(:disabled),
button.lent-btn.lent-btn-primary:hover:not(:disabled),
.lent-btn.lent-btn-primary:hover:not(:disabled) {
    background: var(--lent-noyer-fonce) !important;
    color: var(--lent-ivoire) !important;
}

.lent-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Garde l'ancien selecteur en backup pour compat */
.lent-btn {
    width: 100%;
    padding: 14px 24px;
    border: 0;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    transition: background 0.2s;
}

.lent-btn-primary {
    background: var(--lent-noyer);
    color: var(--lent-ivoire);
}

.lent-btn-primary:hover:not(:disabled) {
    background: var(--lent-noyer-fonce);
}

.lent-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================================
 * MESSAGES & NOTICES
 * ============================================================ */

.lent-form-message {
    padding: 0;
    border-radius: 4px;
    font-size: 14px;
}

.lent-form-message:not(:empty) {
    padding: 12px 16px;
    margin-top: 8px;
}

.lent-msg-error {
    background: #FCEBEA;
    color: var(--lent-rouge);
    border: 1px solid #F5C6C2;
}

.lent-msg-success {
    background: #EAF2E5;
    color: var(--lent-vert);
    border: 1px solid #C7DCB9;
}

.lent-notice {
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Georgia, serif;
}

.lent-notice-info {
    background: #EAF0F3;
    color: var(--lent-bleu-patine);
    border: 1px solid #C7D5DC;
}

.lent-notice-success {
    background: #EAF2E5;
    color: var(--lent-vert);
    border: 1px solid #C7DCB9;
}

.lent-notice-error {
    background: #FCEBEA;
    color: var(--lent-rouge);
    border: 1px solid #F5C6C2;
}

.lent-notice a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

/* ============================================================
 * LIENS ALTERNATIFS
 * ============================================================ */

.lent-form-altlink,
.lent-form-altlinks {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #666;
    font-family: Georgia, serif;
}

.lent-form-altlinks a,
.lent-form-altlink a {
    color: var(--lent-noyer);
    text-decoration: none;
    font-weight: 600;
}

.lent-form-altlinks a:hover,
.lent-form-altlink a:hover {
    text-decoration: underline;
}

.lent-sep {
    color: var(--lent-laiton);
    margin: 0 8px;
}

/* ============================================================
 * MON COMPTE
 * ============================================================ */

.lent-mon-compte {
    max-width: 960px;
    margin: 0 auto;
    font-family: Georgia, 'Times New Roman', serif;
}

.lent-mc-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lent-bord);
}

.lent-mc-title {
    font-size: 32px;
    color: var(--lent-noyer);
    margin: 0 0 8px 0;
    font-weight: 700;
    font-family: Georgia, serif;
    letter-spacing: 0.5px;
}

.lent-mc-sub {
    color: #888;
    font-style: italic;
    margin: 0;
    font-size: 15px;
}

.lent-mc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 720px) {
    .lent-mc-grid {
        grid-template-columns: 1fr;
    }
}

.lent-mc-card {
    background: var(--lent-ivoire);
    border: 1px solid var(--lent-bord);
    border-radius: 6px;
    padding: 24px;
}

.lent-mc-card-title {
    font-size: 18px;
    color: var(--lent-noyer);
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--lent-laiton);
    font-family: Georgia, serif;
}

.lent-mc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.lent-mc-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--lent-bord);
    vertical-align: top;
}

.lent-mc-table td:first-child {
    color: #888;
    font-weight: 400;
    width: 40%;
}

.lent-mc-table td:last-child {
    color: var(--lent-anthracite);
    font-weight: 600;
}

.lent-mc-table tr:last-child td {
    border-bottom: 0;
}

.lent-mc-statut {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lent-mc-statut-pending {
    background: #FFF8E1;
    color: var(--lent-ocre);
}

.lent-mc-statut-actif {
    background: #EAF2E5;
    color: var(--lent-vert);
}

.lent-mc-statut-suspended {
    background: #FCEBEA;
    color: var(--lent-rouge);
}

.lent-mc-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lent-mc-actions li {
    padding: 12px 0;
    border-bottom: 1px solid var(--lent-bord);
    font-size: 15px;
}

.lent-mc-actions li:last-child {
    border-bottom: 0;
}

.lent-mc-actions a {
    color: var(--lent-noyer);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.lent-mc-actions a:hover {
    color: var(--lent-noyer-fonce);
    text-decoration: underline;
}

.lent-mc-soon {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 8px;
    background: var(--lent-ivoire-fonce);
    color: var(--lent-ocre);
    border: 1px solid var(--lent-bord);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
}

.lent-mc-logout {
    color: var(--lent-rouge) !important;
}

.lent-mc-logout:hover {
    color: #8E3A2E !important;
}

/* ============================================================
 * VENDRE - FORMULAIRE SOUMISSION OBJET
 * ============================================================ */

.lent-vendre-wrap {
    max-width: 720px;
    margin: 0 auto;
    font-family: Georgia, 'Times New Roman', serif;
}

.lent-vendre-intro {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lent-bord);
}

.lent-vendre-sub {
    color: var(--lent-texte);
    font-size: 15px;
    margin: 8px 0 0;
    line-height: 1.6;
}

.lent-form-vendre {
    background: var(--lent-ivoire);
    border: 1px solid var(--lent-bord);
    border-radius: 6px;
    padding: 32px;
}

.lent-fieldset {
    border: 0;
    border-top: 1px solid var(--lent-bord);
    padding: 24px 0;
    margin: 0;
}

.lent-fieldset:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.lent-fieldset legend {
    font-family: Georgia, serif;
    font-weight: 600;
    color: var(--lent-noyer);
    font-size: 18px;
    padding: 0 12px 0 0;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.lent-form-vendre textarea {
    padding: 12px 14px;
    border: 1px solid var(--lent-bord);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    color: var(--lent-anthracite);
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
    transition: border-color 0.2s;
}

.lent-form-vendre textarea:focus {
    outline: none;
    border-color: var(--lent-noyer);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.12);
}

.lent-form-vendre select {
    padding: 12px 14px;
    border: 1px solid var(--lent-bord);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: var(--lent-ivoire);
    color: var(--lent-anthracite);
    cursor: pointer;
    transition: border-color 0.2s;
}

.lent-form-vendre select:focus {
    outline: none;
    border-color: var(--lent-noyer);
}

.lent-form-vendre input[type="number"] {
    -moz-appearance: textfield;
}

.lent-form-vendre input[type="file"] {
    padding: 10px;
    border: 1.5px dashed var(--lent-laiton);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background: var(--lent-ivoire-fonce);
    cursor: pointer;
}

.lent-checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    font-size: 14px;
    cursor: pointer;
    color: var(--lent-anthracite);
    font-weight: 400;
}

.lent-checkbox-inline input[type="checkbox"] {
    accent-color: var(--lent-noyer);
}

.lent-photos-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.lent-photo-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--lent-bord);
}

.lent-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lent-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 30, 18, 0.85);
    color: var(--lent-ivoire);
    padding: 4px 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.lent-vendre-disclaimer {
    margin-top: 24px;
    padding: 14px 18px;
    background: var(--lent-ivoire-fonce);
    border-left: 3px solid var(--lent-laiton);
    font-size: 13px;
    color: var(--lent-texte);
    line-height: 1.6;
    font-style: italic;
}

.lent-vendre-disclaimer a {
    color: var(--lent-noyer);
    text-decoration: underline;
}

/* ============================================================
 * MES OBJETS - GRILLE VENDEUR
 * ============================================================ */

.lent-mes-objets {
    max-width: 1080px;
    margin: 0 auto;
    font-family: Georgia, serif;
}

.lent-mes-objets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lent-bord);
    flex-wrap: wrap;
    gap: 16px;
}

.lent-btn-secondary-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--lent-noyer);
    color: var(--lent-ivoire) !important;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.lent-btn-secondary-link:hover {
    background: var(--lent-noyer-fonce);
    color: var(--lent-ivoire) !important;
}

.lent-mes-objets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.lent-objet-card {
    background: var(--lent-ivoire);
    border: 1px solid var(--lent-bord);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lent-objet-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(139, 90, 43, 0.08);
}

.lent-objet-photo {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-color: var(--lent-ivoire-fonce);
}

.lent-objet-photo-placeholder {
    background: linear-gradient(135deg, var(--lent-ivoire-fonce), var(--lent-laiton-clair));
}

.lent-objet-info {
    padding: 16px 20px;
    position: relative;
}

.lent-objet-statut {
    display: inline-block;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.lent-objet-titre {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--lent-anthracite);
    margin: 0 0 8px;
    line-height: 1.3;
}

.lent-objet-prix {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lent-noyer);
    margin-bottom: 12px;
}

.lent-objet-note {
    background: #FCEBEA;
    border-left: 3px solid var(--lent-rouge);
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 13px;
    color: #6E2A22;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.lent-objet-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--lent-bord);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.lent-objet-link {
    color: var(--lent-noyer) !important;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.lent-objet-link:hover {
    text-decoration: underline;
}

.lent-objet-date {
    color: #888;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
 * BOT CONTACT (v0.4)
 * ============================================================ */

.lent-bot-wrap {
    --noyer: #8B5A2B;
    --noyer-fonce: #6E4621;
    --noyer-tres-fonce: #3a2a1a;
    --laiton: #C9A961;
    --ivoire: #FAF7F0;
    --ivoire-fonce: #F5EFE0;
    --ocre: #A87E5A;
    --bord: #E5DCC8;
    --texte: #5A4530;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.lent-bot-hero {
    text-align: center;
    padding: 48px 0 32px;
}
.lent-bot-eyebrow {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    color: var(--ocre);
    font-size: 14px;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.lent-bot-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--noyer);
    margin: 0 0 16px;
    line-height: 1.2;
}
.lent-bot-soustitre {
    font-size: 16px;
    color: var(--texte);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto;
}

/* SUGGESTIONS */
.lent-bot-suggestions {
    margin: 32px 0 24px;
    padding: 24px 28px;
    background: var(--ivoire-fonce);
    border-radius: 6px;
    border: 1px solid var(--bord);
}
.lent-bot-sug-titre {
    font-size: 12px;
    color: var(--ocre);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin: 0 0 16px;
}
.lent-bot-sug-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.lent-bot-sug-btn {
    background: #fff !important;
    border: 1px solid var(--bord) !important;
    color: var(--noyer) !important;
    padding: 12px 18px !important;
    text-align: left !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.2s !important;
    width: 100% !important;
    line-height: 1.4 !important;
}
.lent-bot-sug-btn:hover {
    background: var(--noyer) !important;
    color: var(--ivoire) !important;
    border-color: var(--noyer) !important;
}

/* CHAT */
.lent-bot-chat {
    margin-top: 24px;
    background: #fff;
    border: 1px solid var(--bord);
    border-radius: 6px;
    overflow: hidden;
}
.lent-bot-messages {
    min-height: 200px;
    max-height: 480px;
    overflow-y: auto;
    padding: 24px;
    background: var(--ivoire-fonce);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lent-bot-messages:empty {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lent-bot-messages:empty::before {
    content: "Posez votre question ci-dessous ou cliquez sur une suggestion.";
    color: #999;
    font-style: italic;
    font-size: 13px;
}

.lent-bot-msg {
    display: flex;
    width: 100%;
}
.lent-bot-msg-user {
    justify-content: flex-end;
}
.lent-bot-msg-bot {
    justify-content: flex-start;
}
.lent-bot-msg-bulle {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}
.lent-bot-msg-user .lent-bot-msg-bulle {
    background: var(--noyer);
    color: var(--ivoire);
    border-bottom-right-radius: 3px;
}
.lent-bot-msg-bot .lent-bot-msg-bulle {
    background: #fff;
    color: var(--texte);
    border: 1px solid var(--bord);
    border-bottom-left-radius: 3px;
}
.lent-bot-msg-bot .lent-bot-msg-bulle a {
    color: var(--noyer);
    text-decoration: underline;
    text-decoration-color: var(--laiton);
    text-underline-offset: 2px;
}
.lent-bot-msg-bot .lent-bot-msg-bulle p {
    margin: 0 0 8px;
}
.lent-bot-msg-bot .lent-bot-msg-bulle p:last-child {
    margin-bottom: 0;
}
.lent-bot-msg-bot .lent-bot-msg-bulle ul {
    margin: 8px 0;
    padding-left: 20px;
}
.lent-bot-msg-bot .lent-bot-msg-bulle li {
    margin-bottom: 4px;
}

/* LOADING DOTS */
.lent-bot-loading .lent-bot-msg-bulle {
    padding: 16px 22px;
    display: inline-flex;
    gap: 6px;
}
.lent-bot-dot {
    width: 8px;
    height: 8px;
    background: var(--ocre);
    border-radius: 50%;
    display: inline-block;
    animation: lent-bot-bounce 1.4s infinite ease-in-out both;
}
.lent-bot-dot:nth-child(1) { animation-delay: -0.32s; }
.lent-bot-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes lent-bot-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* INPUT */
.lent-bot-input {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--bord);
    background: #fff;
}
.lent-bot-input textarea {
    flex: 1;
    border: 1px solid var(--bord);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    resize: none;
    line-height: 1.5;
    background: var(--ivoire-fonce);
    color: var(--texte);
}
.lent-bot-input textarea:focus {
    outline: none;
    border-color: var(--noyer);
    background: #fff;
}
.lent-bot-input button {
    background: var(--noyer) !important;
    color: var(--ivoire) !important;
    border: none !important;
    padding: 0 24px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    transition: background 0.2s !important;
    align-self: stretch !important;
}
.lent-bot-input button:hover:not(:disabled) {
    background: var(--noyer-fonce) !important;
}
.lent-bot-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.lent-bot-counter {
    text-align: right;
    padding: 6px 16px 12px;
    background: #fff;
    font-size: 11px;
    color: #999;
    font-style: italic;
}

/* ESCALADE */
.lent-bot-escalade {
    margin-top: 32px;
    padding: 32px 28px;
    background: var(--ivoire-fonce);
    border: 1px solid var(--bord);
    border-radius: 6px;
}
.lent-bot-escalade h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    color: var(--noyer);
    font-size: 22px;
    margin: 0 0 8px;
}
.lent-bot-escalade > p {
    color: var(--texte);
    font-size: 14px;
    margin: 0 0 20px;
}
.lent-bot-escalade input,
.lent-bot-escalade textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid var(--bord);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #fff;
    color: var(--texte);
    box-sizing: border-box;
}
.lent-bot-escalade input:focus,
.lent-bot-escalade textarea:focus {
    outline: none;
    border-color: var(--noyer);
}
.lent-bot-escalade button {
    background: var(--noyer) !important;
    color: var(--ivoire) !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
}
.lent-bot-escalade button:hover {
    background: var(--noyer-fonce) !important;
}

/* FOOTER BOT */
.lent-bot-footer {
    text-align: center;
    margin: 32px 0 48px;
    padding-top: 24px;
    border-top: 1px solid var(--bord);
}
.lent-bot-footer p {
    font-size: 12px;
    color: var(--ocre);
    font-style: italic;
    margin: 0;
}
.lent-bot-footer a {
    color: var(--noyer);
    text-decoration: underline;
    text-decoration-color: var(--laiton);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .lent-bot-sug-grid { grid-template-columns: 1fr; }
    .lent-bot-input { flex-direction: column; }
    .lent-bot-input button { padding: 12px 24px !important; }
}
