/* Web18 Chatbot v1.8 — design "à la Crisp" */

:root {
    --gmc-primary: #009D28;
    --gmc-secondary: #36353D;
}

/* === Placeholder léger affiché immédiatement (avant chargement JS) === */
.gmc-launcher-placeholder {
    position: fixed;
    right: 20px;
    bottom: var(--gmc-launcher-bottom-desktop, 20px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 9997;
    overflow: hidden;
}
.gmc-launcher-placeholder-with-text {
    width: auto;
    height: auto;
    min-height: 56px;
    border-radius: 32px;
    padding: 8px 8px 8px 22px;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    overflow: visible;
}
.gmc-launcher-placeholder-text {
    white-space: nowrap;
}
.gmc-launcher-placeholder-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.gmc-launcher-placeholder-icon {
    width: 24px;
    height: 24px;
}
.gmc-launcher-placeholder.gmc-hidden {
    display: none;
}
@media (max-width: 480px) {
    .gmc-launcher-placeholder {
        right: 12px;
        bottom: var(--gmc-launcher-bottom-mobile, 90px);
    }
    .gmc-launcher-placeholder-with-text {
        width: 60px;
        height: 60px;
        min-height: 60px;
        border-radius: 50%;
        padding: 0;
        gap: 0;
    }
    .gmc-launcher-placeholder-text {
        display: none;
    }
    .gmc-launcher-placeholder-with-text .gmc-launcher-placeholder-avatar {
        width: 60px;
        height: 60px;
        border: 3px solid #fff;
    }
}

/* === Bulle flottante === */
.gmc-launcher {
    position: fixed;
    right: 20px;
    bottom: var(--gmc-launcher-bottom-desktop, 20px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gmc-launcher, var(--gmc-primary));
    color: var(--gmc-on-launcher, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    border: none;
    padding: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.gmc-launcher:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.gmc-launcher-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Variante pilule avec texte (sur desktop uniquement) */
.gmc-launcher-with-text {
    width: auto;
    height: auto;
    min-height: 56px;
    border-radius: 32px;
    padding: 8px 8px 8px 22px;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}
.gmc-launcher-text {
    white-space: nowrap;
    line-height: 1.2;
}
.gmc-launcher-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.gmc-preview-badge {
    position: fixed;
    right: 86px;
    bottom: 32px;
    background: #dba617;
    color: #fff;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    cursor: help;
}

/* === Panneau principal === */
.gmc-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 40px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
}
.gmc-panel.gmc-open {
    display: flex;
}

/* === En-tête (logo + onglets) === */
.gmc-header {
    background: var(--gmc-primary);
    color: var(--gmc-on-primary, #fff);
    flex-shrink: 0;
}
.gmc-header-top {
    padding: 14px 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.gmc-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.gmc-header-logo {
    border-radius: 50%;
    background: #fff;
    padding: 0;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.gmc-avatar-S { width: 44px; height: 44px; }
.gmc-avatar-M { width: 60px; height: 60px; }
.gmc-avatar-L { width: 76px; height: 76px; }
.gmc-header-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gmc-primary);
    padding: 8px;
}
.gmc-header-logo-placeholder svg {
    width: 60%;
    height: 60%;
}
.gmc-header-title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gmc-text-S { font-size: 13px; }
.gmc-text-M { font-size: 15px; }
.gmc-text-L { font-size: 18px; }
.gmc-header-status {
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.gmc-text-sub-S { font-size: 10px; }
.gmc-text-sub-M { font-size: 11px; }
.gmc-text-sub-L { font-size: 13px; }
.gmc-status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}
.gmc-close {
    background: #fff;
    border: none;
    color: var(--gmc-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    padding: 0;
}
.gmc-close:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}
.gmc-close:active {
    transform: scale(0.96);
}

/* === Onglets (nav) === */
.gmc-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.1);
    padding: 4px;
    margin: 0 12px 12px;
    border-radius: 22px;
    gap: 2px;
}
.gmc-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--gmc-on-primary, #fff);
    opacity: 0.75;
    padding: 8px 10px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.gmc-tab svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.gmc-tab:hover {
    opacity: 1;
}
.gmc-tab-active {
    background: #fff;
    color: var(--gmc-primary);
    opacity: 1;
}

/* === Contenu des onglets === */
.gmc-tab-content {
    flex: 1;
    display: none;
    flex-direction: column;
    overflow: hidden;
    background: #f7f7f5;
    position: relative;
}
.gmc-tab-content-active {
    display: flex;
}

/* === Onglet Accueil === */
.gmc-tab-home {
    padding: 20px 16px;
    overflow-y: auto;
}
.gmc-home-greeting {
    margin-bottom: 20px;
}
.gmc-home-title {
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 8px;
    line-height: 1.3;
}
.gmc-home-title-S { font-size: 16px; }
.gmc-home-title-M { font-size: 20px; }
.gmc-home-title-L { font-size: 26px; }
.gmc-home-title:empty { display: none; margin: 0; }
.gmc-home-welcome {
    color: #555;
    line-height: 1.5;
}
.gmc-welcome-S { font-size: 12px; }
.gmc-welcome-M { font-size: 14px; }
.gmc-welcome-L { font-size: 16px; }
.gmc-home-welcome a {
    color: var(--gmc-primary);
    text-decoration: underline;
}
.gmc-home-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gmc-home-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e5e5e0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.15s, transform 0.1s;
}
.gmc-home-action:hover {
    border-color: var(--gmc-primary);
}
.gmc-home-action:active {
    transform: scale(0.99);
}
.gmc-home-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 157, 40, 0.1);
    color: var(--gmc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gmc-home-action-icon svg {
    width: 18px;
    height: 18px;
}
.gmc-home-action-body {
    flex: 1;
    min-width: 0;
}
.gmc-home-action-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 2px;
}
.gmc-home-action-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}
.gmc-home-action-arrow {
    color: #aaa;
    font-size: 22px;
    flex-shrink: 0;
}

/* === Onglet Messages === */
/* Bouton flottant "Nouvelle conversation" qui apparaît après quelques échanges */
.gmc-restart-floating {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--gmc-primary);
    color: var(--gmc-primary);
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: transform 0.15s, box-shadow 0.15s;
    animation: gmcFadeIn 0.3s ease-out;
}
.gmc-restart-floating:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.gmc-restart-floating svg {
    width: 13px;
    height: 13px;
}
@keyframes gmcFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Animation : 2 pulsations rapprochées (effet "tap-tap" pour attirer l'œil) */
@keyframes gmcPulse {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.12); }
    30% { transform: scale(1); }
    45% { transform: scale(1.12); }
    60% { transform: scale(1); }
}
/* Respect du paramètre système "réduire les animations" */
@media (prefers-reduced-motion: reduce) {
    .gmc-launcher {
        animation: none !important;
    }
}
.gmc-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gmc-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    line-height: 1.45;
    word-wrap: break-word;
    font-size: 13.5px;
}
.gmc-message-bot {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: #222;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.gmc-message-user {
    background: var(--gmc-primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.gmc-message-bot a {
    color: var(--gmc-primary);
    text-decoration: underline;
    word-break: break-word;
}
.gmc-message-bot a:hover {
    text-decoration: none;
}

/* Indicateur "écrit..." 3 points animés */
.gmc-typing {
    align-self: flex-start;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.gmc-typing span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: gmc-typing-anim 1.4s infinite;
}
.gmc-typing span:nth-child(2) { animation-delay: 0.2s; }
.gmc-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes gmc-typing-anim {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-4px); }
}

/* Produits dans message */
.gmc-products {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.gmc-product {
    display: flex;
    gap: 10px;
    padding: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s;
}
.gmc-product:hover {
    border-color: var(--gmc-primary);
}
.gmc-product img, .gmc-product-img-placeholder {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #eee;
}
.gmc-product-info { flex: 1; min-width: 0; }
.gmc-product-name {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gmc-product-price {
    font-size: 12px;
    color: #666;
}

/* CTA email/téléphone */
.gmc-cta-row {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.gmc-cta,
.gmc-cta:link,
.gmc-cta:visited,
.gmc-cta:hover,
.gmc-cta:active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--gmc-primary);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
}
.gmc-cta-secondary,
.gmc-cta-secondary:link,
.gmc-cta-secondary:visited,
.gmc-cta-secondary:hover,
.gmc-cta-secondary:active {
    background: var(--gmc-secondary);
    color: #fff !important;
}
.gmc-cta svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
}

/* Suggestions toujours visibles au-dessus de la zone de saisie */
.gmc-suggestions {
    padding: 6px 12px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 4px;
    flex-shrink: 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.gmc-suggestions:empty {
    display: none;
}
.gmc-suggestion {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 11px;
    cursor: pointer;
    color: #555;
    font-family: inherit;
    line-height: 1.5;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gmc-suggestion:hover {
    background: #f0f0eb;
    border-color: var(--gmc-primary);
    color: var(--gmc-primary);
}

/* Mention de contact en bas du chat */
.gmc-footer-contact {
    padding: 6px 12px 10px;
    text-align: center;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    background: #fff;
    flex-shrink: 0;
}
.gmc-footer-contact:empty {
    display: none;
}
.gmc-footer-contact a {
    color: var(--gmc-primary);
    text-decoration: none;
    font-weight: 500;
}
.gmc-footer-contact a:hover {
    text-decoration: underline;
}

/* Zone de saisie */
.gmc-input-area {
    padding: 10px 12px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    background: #fff;
    flex-shrink: 0;
}
.gmc-input {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
}
.gmc-input:focus {
    border-color: var(--gmc-primary);
}
.gmc-send {
    width: 38px;
    height: 38px;
    background: var(--gmc-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gmc-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.gmc-send svg {
    width: 16px;
    height: 16px;
}

/* === Onglet Recherche === */
.gmc-search-bar {
    padding: 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 8px;
    background: #fff;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}
.gmc-search-icon {
    position: absolute;
    left: 22px;
    width: 14px;
    height: 14px;
    color: #888;
    pointer-events: none;
}
.gmc-search-input {
    flex: 1;
    padding: 9px 14px 9px 36px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
}
.gmc-search-input:focus {
    border-color: var(--gmc-primary);
}
.gmc-search-btn {
    padding: 0 14px;
    height: 36px;
    background: var(--gmc-primary);
    color: #fff;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 12.5px;
    font-family: inherit;
    flex-shrink: 0;
}
.gmc-search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.gmc-search-results {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}
.gmc-search-hint {
    color: #888;
    font-size: 13px;
    text-align: center;
    padding: 30px 12px;
    font-style: italic;
}
.gmc-search-group {
    margin-bottom: 16px;
}
.gmc-search-group-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    padding: 0 4px;
}
.gmc-search-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 6px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-align: left;
    width: 100%;
    font-family: inherit;
}
.gmc-search-item:hover {
    border-color: var(--gmc-primary);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.gmc-search-item-faq {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 3px solid var(--gmc-primary);
    border-radius: 4px;
    padding: 10px 14px;
    appearance: none;
    -webkit-appearance: none;
}
.gmc-search-item-faq .gmc-search-item-title {
    font-weight: 600;
    font-size: 13px;
    color: #1d2327;
    margin-bottom: 4px;
}
.gmc-search-item-faq .gmc-search-item-excerpt {
    font-size: 12px;
    color: #555;
    line-height: 1.45;
}
.gmc-search-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.gmc-search-item-body { flex: 1; min-width: 0; }
.gmc-search-item-title {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 2px;
    color: #1d2327;
}
.gmc-search-item-excerpt {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}
.gmc-search-item-price {
    font-size: 12px;
    color: var(--gmc-primary);
    font-weight: 500;
    margin-top: 4px;
}

/* === Mobile === */
@media (max-width: 480px) {
    .gmc-panel {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 80px;
        height: 65vh;
        max-height: 65vh;
        min-height: 420px;
        border-radius: 14px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }
    .gmc-launcher {
        right: 12px;
        bottom: var(--gmc-launcher-bottom-mobile, 90px);
    }
    /* Sur mobile, la bulle redevient ronde et compacte, sans texte */
    .gmc-launcher-with-text {
        width: 60px;
        height: 60px;
        min-height: 60px;
        border-radius: 50%;
        padding: 0;
        gap: 0;
    }
    .gmc-launcher-text {
        display: none;
    }
    /* Si un avatar est défini, on l'affiche en plein (à la place de l'icône) */
    .gmc-launcher-with-text .gmc-launcher-avatar {
        width: 60px;
        height: 60px;
        border: 3px solid #fff;
        box-shadow: none;
    }
    /* Une seule séquence d'animation 3s après chargement (2 pulsations rapprochées) */
    .gmc-launcher {
        animation: gmcPulse 2s ease-in-out 3s 1;
    }
    .gmc-launcher:hover,
    .gmc-launcher:focus {
        animation: none;
    }
    .gmc-close {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    .gmc-preview-badge {
        bottom: 80px;
        right: 20px;
    }
}

/* === Formulaire email (v1.11) === */
.gmc-email-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px;
    margin-top: 4px;
    align-self: flex-start;
    max-width: 100%;
}
.gmc-email-form-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gmc-email-form-title svg {
    width: 14px;
    height: 14px;
    color: var(--gmc-primary);
}
.gmc-email-form-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}
.gmc-email-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
    margin-bottom: 6px;
    font-family: inherit;
    outline: none;
}
.gmc-email-input:focus {
    border-color: var(--gmc-primary);
}
.gmc-email-input:disabled {
    background: #f5f5f5;
    color: #888;
}
.gmc-email-submit {
    width: 100%;
    padding: 9px;
    background: var(--gmc-primary);
    color: var(--gmc-on-primary, #fff);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}
.gmc-email-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.gmc-email-rgpd {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
    line-height: 1.4;
}
.gmc-email-feedback {
    font-size: 12px;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 4px;
    line-height: 1.4;
}
.gmc-email-feedback-error {
    background: #fef0f0;
    color: #b32d2e;
    border: 1px solid #f5c2c2;
}
.gmc-email-success {
    text-align: center;
    padding: 8px 0;
}
.gmc-email-success svg {
    width: 32px;
    height: 32px;
    color: var(--gmc-primary);
    margin-bottom: 8px;
}
.gmc-email-success-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 4px;
}
.gmc-email-success-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Textarea du formulaire email standalone */
.gmc-email-message {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 8px;
    resize: vertical;
    min-height: 70px;
    outline: none;
    line-height: 1.4;
}
.gmc-email-message:focus {
    border-color: var(--gmc-primary);
}
.gmc-email-message:disabled {
    background: #f5f5f5;
    color: #888;
}
