/* ============================================================
   QUOTE REDESIGN — france-deneigement.fr
   Page /demande-de-devis — Formulaire B2B collectivités
   Design system V1.2
   Version : 1.0 — mai 2026
   ============================================================ */

/* 1. CONTEXTE GÉNÉRAL */
body#cms .columns-container { background: #fafafa; }
body#cms #center_column {
    background: transparent; padding-top: 30px; padding-bottom: 60px;
    max-width: 1250px; margin: 0 auto;
}
body#cms .breadcrumb { margin-bottom: 20px; }
body#cms .quote-page h1.page-heading { display: none !important; }

/* 2. WRAPPER PRINCIPAL */
.quote-wrapper {
    background: #fafafa;
    overflow: hidden; font-family: Arial, sans-serif;
}

/* 3. HEADER */
.quote-header {
    padding: 60px 0px 16px; border-bottom: 1px solid #dbdbdb;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 24px; flex-wrap: wrap;
}
.quote-header-text h1 {
    color: #1d496f;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.2;
    padding: 0;
    border: 0;
    background: none;
    text-transform: none;
}
.quote-header-text p { color: #888; font-size: 13px; font-weight: 300; margin: 0; }
.quote-counter {
    background: #1d496f; border-radius: 8px; padding: 10px 18px;
    text-align: center; min-width: 200px;
}
.quote-counter-value {
    font-size: 12px; color: #ffffff; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
}
.quote-counter-label { font-size: 12px; color: #ffffff; }

/* 4. CONTENU */
.quote-content { padding: 0px; }

/* 5. SECTIONS */
.quote-section {
    background: #fafafa; border-radius: 8px;
    padding: 24px 24px 28px; margin-bottom: 0px;
}
.quote-section-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 18px; flex-wrap: wrap;
}
.quote-section-title { display: flex; align-items: center; gap: 12px; }
.quote-section-number {
    background: #004778; color: #fff; width: 26px; height: 26px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.quote-section-name {
    font-size: 14px; font-weight: 600; color: #1D3557;
    text-transform: uppercase; letter-spacing: .04em;
}

/* 6. PLACEHOLDER DES SECTIONS (Étape 2 uniquement) */
.quote-placeholder {
    text-align: center; padding: 30px 20px; color: #888;
    font-size: 13px; font-style: italic;
}

/* 7. BANDEAU CONTACT */
.quote-contact-banner {
    background: #1D3557; border-radius: 8px; padding: 22px 26px;
    margin-top: 24px; color: #fff;
    display: none; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
}
.quote-contact-icon {
    width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 22px;
}
.quote-contact-label {
    font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase;
    letter-spacing: .06em; font-weight: 600; margin-bottom: 4px;
}
.quote-contact-phone { font-size: 18px; font-weight: 600; color: #fff; }
.quote-contact-hours { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.quote-contact-cta {
    background: #fff; color: #1D3557; padding: 12px 24px; border-radius: 6px;
    font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .2s;
}
.quote-contact-cta:hover { opacity: .9; text-decoration: none; color: #1D3557; }

/* 8. RESPONSIVE TABLETTE */
@media (max-width: 992px) {
    .quote-header { padding: 40px 20px 16px; }
    .quote-header-text h1 { font-size: 26px; }
    .quote-content { padding: 22px 20px; }
    .quote-section { padding: 22px 20px; }
    .quote-contact-banner { grid-template-columns: 1fr; text-align: center; }
    .quote-contact-icon { margin: 0 auto; }
}

/* 9. RESPONSIVE MOBILE */
@media (max-width: 767px) {
    body#cms #center_column { padding-top: 16px; padding-bottom: 30px; }
    .quote-header { padding: 28px 18px 14px; flex-direction: column; gap: 14px; }
    .quote-header-text h1 { font-size: 22px; }
    .quote-counter { align-self: stretch; }
    .quote-content { padding: 18px 16px; }
    .quote-section { padding: 18px 16px 22px; }
    .quote-section-name { font-size: 13px; }
}

/* ============================================================
   AJOUT ÉTAPE 3 — STYLES DE FORMULAIRE
   ============================================================ */

/* 10. CHAMPS DE FORMULAIRE */
.quote-field { margin-bottom: 14px; }
.quote-field:last-child { margin-bottom: 0; }
.quote-field-row { display: grid; gap: 14px; margin-bottom: 14px; }
.quote-field-row:last-child { margin-bottom: 0; }
.quote-field-row.cols-2 { grid-template-columns: 1fr 1fr; }
.quote-field-row.cols-2-uneven { grid-template-columns: 1fr 1.5fr; }
.quote-field-row.cols-1-1-2 { grid-template-columns: 1fr 1fr 2fr; }

.quote-field label {
    display: block; font-size: 12px; color: #3f3f3f; margin-bottom: 6px;
    font-family: Arial, sans-serif;
}
.quote-field label .quote-required {color: #ff0000;font-size: 14px;}
.quote-field label .quote-optional { color: #3f3f3f; font-weight: 300; font-size: 12px; }

.quote-field input[type="text"],
.quote-field input[type="email"],
.quote-field input[type="tel"],
.quote-field input[type="number"],
.quote-field textarea {
    width: 100%; padding: 10px 12px; border: 1px solid #e5e5e5; border-radius: 6px;
    font-size: 13px; color: #1D3557; font-family: Arial, sans-serif;
    background: #fff; box-sizing: border-box;
}
.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
    outline: none; border-color: #1D6FA4; box-shadow: 0 0 0 3px rgba(29, 111, 164, 0.1);
}
.quote-field textarea { resize: vertical; min-height: 80px; }

/* 11. SELECTS AVEC FLÈCHE */
.quote-select-wrap { position: relative; }
.quote-select-wrap select {
    width: 100%; padding: 10px 36px 10px 12px; border: 1px solid #e5e5e5;
    border-radius: 6px; font-size: 13px; background: #fff; color: #1D3557;
    font-family: Arial, sans-serif; appearance: none; -webkit-appearance: none;
    cursor: pointer; box-sizing: border-box;
}
.quote-select-wrap::after {
    content: ""; position: absolute; right: 14px; top: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid #1D6FA4; border-bottom: 2px solid #1D6FA4;
    transform: translateY(-70%) rotate(45deg); pointer-events: none;
}

/* 12. ENCART INFO */
.quote-info-box {
    background: #f0f4f8; border-radius: 6px; padding: 14px 16px;
    margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start;
    font-size: 12px; color: #1D3557; line-height: 1.5;
}

/* 13. TOGGLE ADRESSE LIVRAISON */
.quote-toggle-shipping {
    display: flex; align-items: center; gap: 12px; cursor: pointer;
    padding: 14px 16px; border: 1px solid #e5e5e5; border-radius: 6px;
    background: #fff; transition: all .2s; margin-bottom: 16px;
}
.quote-toggle-shipping:hover { border-color: #1D6FA4; }
.quote-toggle-shipping input[type="checkbox"] {
    accent-color: #004778; width: 18px; height: 18px; cursor: pointer; flex-shrink: 0;
}
.quote-toggle-shipping-label { font-size: 13px; font-weight: 600; color: #1D3557; }
.quote-toggle-shipping-help { font-size: 11px; color: #888; margin-top: 2px; }

/* 14. ZONE D'AJOUT PRODUIT */
.quote-add-product {
    background: #fff; border: 1px solid #1D6FA4; border-radius: 8px;
    padding: 18px 20px; margin-bottom: 16px;
}
.quote-add-product-title { font-size: 13px; font-weight: 600; color: #1D3557; margin-bottom: 12px; }
.quote-add-product-row {
    display: grid; grid-template-columns: 1fr 1.4fr 80px 100px auto;
    gap: 10px; align-items: center;
}
.quote-btn-add {
    background: #004778; color: #fff; border: none; padding: 10px 18px;
    border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer;
    white-space: nowrap; font-family: Arial, sans-serif;
}
.quote-btn-add:hover { background: #003a63; }

/* 15. LABEL "PRODUITS SÉLECTIONNÉS" */
.quote-products-label {
    font-size: 11px; color: #888; text-transform: uppercase;
    letter-spacing: .04em; font-weight: 600; margin-bottom: 10px; padding: 0 4px;
}

/* 16. UPLOAD FICHIER */
.quote-upload {
    background: #fff; border: 1px dashed #1D6FA4; border-radius: 8px;
    padding: 16px 20px; display: flex; align-items: center; gap: 14px; margin-top: 16px;
}
.quote-upload-icon {
    width: 40px; height: 40px; background: #1D3557; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: #fff; font-size: 18px;
}
.quote-upload-text { flex: 1; min-width: 0; }
.quote-upload-title { font-size: 13px; font-weight: 600; color: #1D3557; margin-bottom: 2px; }
.quote-upload-subtitle { font-size: 12px; color: #888; }
.quote-btn-browse {
    background: #fff; color: #1D6FA4; border: 1px solid #1D6FA4;
    padding: 8px 16px; border-radius: 6px; font-size: 12px; font-weight: 600;
    cursor: pointer; font-family: Arial, sans-serif; flex-shrink: 0;
}
.quote-btn-browse:hover { background: #1D6FA4; color: #fff; }

/* 17. RGPD */
.quote-rgpd {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px;
    padding: 14px 16px; background: #fafafa; border-radius: 6px;
}
.quote-rgpd input[type="checkbox"] {
    accent-color: #004778; width: 16px; height: 16px;
    margin-top: 2px; flex-shrink: 0; cursor: pointer;
}
.quote-rgpd label { font-size: 12px; font-weight: 300; color: #888; line-height: 1.5; cursor: pointer; }
.quote-rgpd a { color: #1D6FA4; text-decoration: underline; }

/* 18. BOUTON SOUMISSION */
.quote-submit-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.quote-btn-submit {
    flex: 1; min-width: 280px; background: #004778; color: #fff; border: none;
    padding: 14px 24px; border-radius: 8px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: Arial, sans-serif;
}
.quote-btn-submit:hover { background: #003a63; }
.quote-trust-signals { display:none; gap: 18px; flex-wrap: wrap; }
.quote-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: #1D3557; font-weight: 600;
}
.quote-trust-icon { color: #27ae60; font-weight: 700; }

/* 19. RESPONSIVE FORM (à intégrer dans la media query mobile existante) */
@media (max-width: 992px) {
    .quote-add-product-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .quote-add-product-row > *:nth-child(5) { grid-column: 1 / -1; }
    .quote-field-row.cols-1-1-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .quote-add-product-row { grid-template-columns: 1fr; }
    .quote-add-product-row > * { grid-column: 1 / -1; }
    .quote-field-row.cols-2,
    .quote-field-row.cols-2-uneven,
    .quote-field-row.cols-1-1-2 { grid-template-columns: 1fr; }
    .quote-upload { flex-wrap: wrap; }
    .quote-btn-browse { flex-basis: 100%; text-align: center; }
    .quote-btn-submit { flex-basis: 100%; min-width: auto; }
    .quote-trust-signals { gap: 12px; margin-top: 12px; justify-content: center; width: 100%; }
}

/* ============================================================
   AJOUT — RESTRUCTURATION TOGGLE TINYMCE-PROOF
   ============================================================ */

/* Nouvelle structure du toggle (sans <label> englobant) */
.quote-toggle-wrap {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; border: 1px solid #e5e5e5; border-radius: 6px;
    background: #fff; transition: all .2s; margin-bottom: 16px;
    cursor: pointer;
}
.quote-toggle-wrap:hover { border-color: #1D6FA4; }
.quote-toggle-wrap input[type="checkbox"] {
    accent-color: #004778; width: 18px; height: 18px; cursor: pointer;
    flex-shrink: 0; margin-top: 2px;
}
.quote-toggle-wrap-text { flex: 1; }
.quote-toggle-wrap-title {
    font-size: 13px; font-weight: 600; color: #1D3557; cursor: pointer;
    display: block;
}
.quote-toggle-wrap-help {
    font-size: 11px; color: #888; margin-top: 2px;
}

/* Encart info avec icône stylisée */
.quote-info-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%; background: #1D6FA4;
    color: #fff; font-size: 11px; font-weight: 700; font-style: normal;
    flex-shrink: 0; font-family: Arial, sans-serif;
}

/* Bandeau contact — icône stylisée */
.quote-contact-banner-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: #fff;
    font-size: 22px; flex-shrink: 0;
}

/* Trust signal — icône check verte */
.quote-trust-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px; border-radius: 50%; background: #27ae60;
    color: #fff; font-size: 10px; font-weight: 700; font-style: normal;
    flex-shrink: 0;
}

/* ============================================================
   AJOUT ÉTAPE 4 — STYLES TOGGLE ACTIF + BLOC ADRESSE
   ============================================================ */

/* État actif du toggle */
.quote-toggle-wrap.is-active {
    border: 2px solid #004778;
    background: #f0f4f8;
    padding: 13px 15px;
}
.quote-toggle-wrap.is-active .quote-toggle-wrap-help {
    color: #1D6FA4;
    font-weight: 600;
}

/* Bloc adresse de livraison */
.quote-shipping-fields {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 16px;
}

/* ============================================================
   AJOUT ÉTAPE 6 — STYLES PANIER MULTI-PRODUITS
   ============================================================ */

/* Liste des produits sélectionnés */
.quote-products-list {
    margin-bottom: 8px;
}

.quote-product-line {
    background: #fff; border: 1px solid #e5e5e5; border-radius: 8px;
    padding: 14px 16px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 14px;
    animation: quoteSlideIn .25s ease-out;
}
.quote-product-line:last-of-type { margin-bottom: 0; }

.quote-product-thumb {
    width: 56px; height: 56px; background: #f0f4f8; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
}
.quote-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.quote-product-thumb-fallback {
    font-size: 10px; color: #1D6FA4; font-weight: 600;
    text-align: center; line-height: 1.1;
}

.quote-product-info { flex: 1; min-width: 0; }
.quote-product-category {
    font-size: 11px; color: #1D6FA4; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2px;
}
.quote-product-name {
    font-size: 14px; font-weight: 600; color: #1D3557;
    margin-bottom: 2px; line-height: 1.3;
}
.quote-product-meta { font-size: 12px; color: #888; }

.quote-product-quantity {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.quote-product-quantity input[type="number"] {
    width: 70px; padding: 9px; border: 1px solid #e5e5e5; border-radius: 6px;
    font-size: 13px; text-align: center; color: #1D3557;
    font-family: Arial, sans-serif; background: #fff;
}
.quote-product-quantity .quote-unit-display {
    padding: 9px 12px; font-size: 13px; color: #1D3557;
    background: #f0f4f8; border-radius: 6px; min-width: 80px; text-align: center;
}

.quote-product-remove {
    background: none; border: none; color: #888; cursor: pointer;
    padding: 8px; border-radius: 4px; transition: all .2s; flex-shrink: 0;
    font-size: 16px;
}
.quote-product-remove:hover { color: #d4453a; background: #fef2f2; }

/* Animation d'entrée */
@keyframes quoteSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bouton désactivé */
.quote-btn-add:disabled {
    background: #c5cdd6 !important;
    cursor: not-allowed !important;
}

/* Responsive panier mobile */
@media (max-width: 767px) {
    .quote-product-line { flex-wrap: wrap; padding: 14px; gap: 12px; position: relative; }
    .quote-product-info { flex-basis: calc(100% - 70px); }
    .quote-product-quantity { flex-basis: 100%; justify-content: flex-end; gap: 6px; }
    .quote-product-quantity input[type="number"] { width: 60px; }
    .quote-product-remove { position: absolute; right: 8px; top: 8px; }
}

/* ============================================================
   AJOUT ÉTAPE 7 — STYLES VALIDATION
   ============================================================ */

/* Champs en erreur */
.quote-field.has-error input,
.quote-field.has-error select,
.quote-field.has-error textarea {
    border-color: #d4453a !important;
    background: #fef2f2 !important;
}

.quote-field-error {
    color: #d4453a;
    font-size: 11px;
    margin-top: 4px;
    display: none;
    font-weight: 600;
}

.quote-field.has-error .quote-field-error {
    display: block;
}

/* RGPD en erreur */
.quote-rgpd.has-error {
    background: #fef2f2;
    border: 1px solid #d4453a;
}
.quote-rgpd.has-error label {
    color: #d4453a;
}

/* Section produits en erreur (panier vide) */
.quote-info-box.has-error {
    background: #fef2f2;
    color: #d4453a;
    animation: quoteShake .4s ease-in-out;
}
.quote-info-box.has-error .quote-info-icon {
    background: #d4453a;
}

/* Animation shake pour attirer l'œil */
@keyframes quoteShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Animation focus sur erreur */
.quote-field-row .quote-field.has-error {
    animation: quoteShake .4s ease-in-out;
}

/* Bouton submit en cours de chargement */
.quote-btn-submit.is-loading {
    background: #c5cdd6 !important;
    cursor: wait !important;
}

/* ============================================================
   PAGE DE REMERCIEMENT
   ============================================================ */
body#cms .quote-thanks-page {
    text-align: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.quote-thanks-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 60px 50px;
}

.quote-thanks-icon {
    margin-bottom: 28px;
}

.quote-thanks-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #27ae60;
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    animation: quoteCheckPulse 0.6s ease-out;
}

@keyframes quoteCheckPulse {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.quote-thanks-title {
    color: #1d496f;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
}

.quote-thanks-subtitle {
    color: #666;
    font-size: 15px;
    margin: 0 0 32px;
    line-height: 1.6;
}

.quote-thanks-reference {
    background: #f0f4f8;
    border-radius: 8px;
    padding: 18px 24px;
    margin-bottom: 32px;
    display: inline-block;
}
.quote-thanks-reference-label {
    font-size: 11px;
    color: #1D6FA4;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
    margin-bottom: 4px;
}
.quote-thanks-reference-value {
    font-size: 22px;
    font-weight: 700;
    color: #1D3557;
    letter-spacing: .02em;
    font-family: 'Courier New', monospace;
}

.quote-thanks-info {
    text-align: left;
    margin-bottom: 32px;
    background: #fafafa;
    border-radius: 8px;
    padding: 20px 24px;
}
.quote-thanks-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}
.quote-thanks-info-row:last-child {
    border-bottom: none;
}
.quote-thanks-info-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.quote-thanks-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 2px;
}
.quote-thanks-info-help {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}
.quote-thanks-info-help a {
    color: #1D6FA4;
    font-weight: 600;
    text-decoration: none;
}

.quote-thanks-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.quote-thanks-btn-primary,
.quote-thanks-btn-secondary {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    font-family: Arial, sans-serif;
}
.quote-thanks-btn-primary {
    background: #004778;
    color: #fff;
}
.quote-thanks-btn-primary:hover {
    background: #003a63;
    color: #fff;
    text-decoration: none;
}
.quote-thanks-btn-secondary {
    background: #fff;
    color: #004778;
    border: 1px solid #004778;
}
.quote-thanks-btn-secondary:hover {
    background: #004778;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .quote-thanks-wrapper { padding: 40px 24px; }
    .quote-thanks-title { font-size: 22px; }
    .quote-thanks-checkmark { width: 70px; height: 70px; font-size: 36px; }
    .quote-thanks-actions { flex-direction: column; }
    .quote-thanks-btn-primary,
    .quote-thanks-btn-secondary { width: 100%; box-sizing: border-box; text-align: center; }
}

/* ============================================================
   ICÔNES STYLISÉES PAGE REMERCIEMENT (TinyMCE-proof)
   ============================================================ */

/* Conteneur générique remplaçant les emojis */
.quote-thanks-info-icon-svg {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1D6FA4;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

/* Variante "email" — un cercle bleu avec une enveloppe stylée en CSS */
.quote-icon-email::before {
    content: "";
    width: 18px;
    height: 13px;
    border: 2px solid #1D6FA4;
    border-radius: 2px;
    position: relative;
    background: #fff;
}
.quote-icon-email::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #1D6FA4;
    border-right: 2px solid #1D6FA4;
    transform: rotate(-45deg);
    margin-top: -4px;
    background: transparent;
}

/* Variante "horloge" — un cercle vide avec aiguilles stylées */
.quote-icon-clock {
    position: relative;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #1D6FA4;
    border-radius: 50%;
    flex-shrink: 0;
}
.quote-icon-clock::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 2px;
    height: 9px;
    background: #1D6FA4;
    transform-origin: bottom center;
    border-radius: 1px;
}
.quote-icon-clock::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background: #1D6FA4;
    transform-origin: left center;
    border-radius: 1px;
    margin-top: -1px;
}

/* Variante "téléphone" — un cercle bleu avec un texte stylé */
.quote-icon-phone {
    width: 36px;
    height: 36px;
    background: #1D6FA4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}

/* ============================================================
   STYLE DES PLACEHOLDERS
   ============================================================ */

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #b5b5b5;
    font-style: italic;
    font-weight: 300;
    opacity: 1; /* Firefox réduit l'opacité par défaut, on la force à 1 */
}

/* Compatibilité anciens navigateurs */
.quote-field input:-ms-input-placeholder,
.quote-field textarea:-ms-input-placeholder {
    color: #b5b5b5;
    font-style: italic;
    font-weight: 300;
}
/* ============================================================
   HARMONISATION INPUT NOMBRE QUANTITÉ
   ============================================================ */

#quote-add-quantity {
    width: 80px;
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 13px;
    color: #1D3557;
    font-family: Arial, sans-serif;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
}

#quote-add-quantity:focus {
    outline: none;
    border-color: #1D6FA4;
    box-shadow: 0 0 0 3px rgba(29, 111, 164, 0.1);
}