/* ── PDF Cadeau Dynamique — Front-office CSS ─────────────────────────────── */

.ksgc-gift-fields {
    margin: 16px 0;
    padding: 16px;
    background: #fdf6f0;
    border: 1px solid #f0d5b8;
    border-radius: 6px;
}

.ksgc-gift-fields h4 {
    margin: 0 0 14px;
    color: #7a4a2a;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ksgc-gift-fields label {
    color: #7a4a2a;
    font-size: 13px;
}

.ksgc-gift-fields input[type="text"],
.ksgc-gift-fields textarea {
    border-color: #f0d5b8 !important;
    background: #fff !important;
    transition: border-color .2s;
}

.ksgc-gift-fields input[type="text"]:focus,
.ksgc-gift-fields textarea:focus {
    border-color: #c8a882 !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(200, 168, 130, .25);
}

.ksgc-char-counter {
    display: block;
    font-size: 11.5px;
    color: #a07850;
    text-align: right;
    margin-top: 3px;
}

.ksgc-char-counter.ksgc-over-limit { color: #d63638; font-weight: 600; }

/* Erreur de validation */
.ksgc-field-error { border-color: #d63638 !important; }
.ksgc-field-error-msg {
    display: block;
    font-size: 12px;
    color: #d63638;
    margin-top: 3px;
}

/* Badge "Carte cadeau PDF" sur la page produit */
.ksgc-gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px;
    color: #c2410c;
    margin-bottom: 12px;
}

/* Section PDF dans Mon compte */
.ksgc-gift-section { margin-top: 24px; }
.ksgc-gift-section h2 { font-size: 16px; margin-bottom: 12px; }
