:root {
    --orange: #FF6B00;
    --orange-dark: #e65c00;
    --orange-col: #FF6B001C;
    --blue: #0066CC;
    --gray-light: #f7f7f7;
    --gray-medium: #888888;
    --gray-dark: #333333;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: 0.25s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--gray-light);
}

.alert-banner {
    background: var(--blue);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: bold;
	display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--orange);
}

h1 { 
    color: var(--blue); 
    text-align: center; 
    margin: 0; 
    font-size: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}

h1 svg { color: var(--orange); width: 28px; height: 28px; }

.subtitle { text-align: center; color: var(--gray-medium); margin-bottom: 25px; font-size: 14px; }

/* GRILLE DE BOUTONS INDÉPENDANTS */
.problem-grid-independent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.problem-card { cursor: pointer; display: block; }
.problem-card input { display: none; }

/* CARTES DE CHOIX D'EQUIPEMENT (volet roulant / store banne) */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}
.equipment-card { cursor: pointer; display: block; }
.equipment-card input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
.equipment-card .card-inner {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.equipment-card .icon-svg svg {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    color: var(--gray-medium);
    transition: color 0.2s ease;
}
.equipment-card .card-inner:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}
.equipment-card .card-title {
    font-weight: bold;
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 4px;
}
.equipment-card .card-desc {
    font-size: 12px;
    color: var(--gray-medium);
}
.equipment-card input:checked + .card-inner {
    background-color: var(--orange-col);
    border-color: var(--orange);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}
.equipment-card input:checked + .card-inner .icon-svg svg,
.equipment-card input:checked + .card-inner .card-title {
    color: var(--orange);
}

.card-inner {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
    box-sizing: border-box;
}

/* Style des icônes SVG */
.icon-svg svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    color: var(--gray-medium); /* Gris par défaut */
    transition: color 0.2s ease;
}

.card-inner:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.card-title {
    font-weight: bold;
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.card-desc {
    font-size: 11px;
    color: var(--gray-medium);
    line-height: 1.3;
}

/* État sélectionné */
.problem-card input:checked + .card-inner {
    background-color: var(--orange-col);
    border-color: var(--orange);
}

.problem-card input:checked + .card-inner .icon-svg svg,
.problem-card input:checked + .card-inner .card-title {
    color: var(--orange); /* L'icône et le titre passent en orange */
}

/* CHAMPS ET AUTRES */
form label { display: block; margin-top: 15px; font-weight: bold; font-size: 14px; }
form input, form textarea, form select {
    width: 100%; padding: 12px; margin-top: 6px; border: 1px solid #ccc;
    border-radius: var(--border-radius); font-size: 15px; box-sizing: border-box;
}

form select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 38px;
    cursor: pointer;
}

form input:focus, form textarea:focus, form select:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.urgent-box { background: #fff0f0; padding: 12px; border-radius: 8px; margin-top: 20px; }

.toggle { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.slider {
    width: 42px; height: 22px; background: #d1d5db; border-radius: 999px;
    position: relative; transition: .25s;
}
.slider::before {
    content:""; position: absolute; width: 18px; height: 18px;
    background: white; border-radius: 50%; top: 2px; left: 2px; transition: .25s;
}
.toggle input:checked + .slider { background: #27ae60; }
.toggle input:checked + .slider::before { transform: translateX(20px); }

button {
    margin-top: 25px; width: 100%; background: var(--orange); color: white;
    padding: 14px; font-size: 17px; border-radius: 8px;
    border: none; font-weight: bold; cursor: pointer;
}

button:hover { background-color: var(--orange-dark); }

.row { display: flex; gap: 10px; }

/* WRAPPER INTERVENTION URGENTE */
.urgent-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    margin-top: 25px;
    transition: all 0.3s ease;
}

/* Changement de style quand coché (via JS ou CSS parent-sibling) */
.urgent-wrapper:has(input:checked) {
    background: #fff5f5;
    border-color: #feb2b2;
}

.urgent-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.urgent-icon {
    font-size: 20px;
}

.urgent-texts {
    display: flex;
    flex-direction: column;
}

.urgent-title {
    font-weight: bold;
    font-size: 14px;
    color: var(--gray-dark);
}

.urgent-subtitle {
    font-size: 11px;
    color: var(--gray-medium);
}

/* LE SWITCH PRO */
.pro-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.pro-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pro-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e0;
    transition: .4s;
    border-radius: 34px;
}

.pro-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .pro-slider {
    background-color: #e53e3e; /* Rouge pro */
}

input:focus + .pro-slider {
    box-shadow: 0 0 1px #e53e3e;
}

input:checked + .pro-slider:before {
    transform: translateX(24px);
}

.gap1 {
    display: flex;
    align-items: center; /* Aligne l'icône avec le bloc de texte */
    gap: 0.75rem;
    margin-bottom: 15px;
}

/* Le fond rond orange autour de l'icône */
.icon-circle {
    background-color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Rend le fond parfaitement rond */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Empêche le cercle de s'écraser */
}

/* Alignement du texte sur deux lignes */
.label-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-label {
    margin: 0 !important; /* Enlève les marges par défaut */
    font-weight: bold;
    font-size: 15px;
    color: var(--gray-dark);
}

.note {
    margin: 0 !important;
    font-size: 12px;
    color: var(--gray-medium);
}

@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
}

@media (max-width: 500px) {
    .problem-grid-independent { grid-template-columns: 1fr; }
    .row { flex-direction: column; gap: 0; }
}
/* CRENEAUX D'INTERVENTION */
.slot-status {
    font-size: 13px;
    color: var(--gray-medium);
    margin: 8px 0;
    font-style: italic;
    transition: all 0.2s ease;
}

.slot-status.slot-status-warning {
    font-style: normal;
    font-weight: 700;
    color: #c53030;
    background: #fff5f5;
    border: 1.5px solid #fed7d7;
    border-radius: var(--border-radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.slot-status.slot-status-warning::before {
    content: "⚠️";
    font-size: 15px;
    flex-shrink: 0;
}

.slot-status.slot-status-info {
    font-style: normal;
    font-weight: 600;
    color: var(--blue-dark);
    background: #f0f7ff;
    border: 1.5px solid #cfe3fb;
    border-radius: var(--border-radius);
    padding: 10px 14px;
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin: 10px 0 5px;
}
.slot-btn {
    position: relative;
    padding: 10px 6px;
    border: 1.5px solid #ddd;
    border-radius: var(--border-radius);
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}
.slot-btn:hover:not(:disabled) {
    border-color: var(--orange);
    transform: translateY(-2px);
}
.slot-btn.slot-optimise {
    border-color: #2f9e44;
    background: #f0fdf4;
    color: #1a6b34;
}
.slot-btn.slot-selected {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35);
}
.slot-btn.slot-indisponible {
    background: #f5f5f5;
    color: #bbb;
    border-color: #eee;
    cursor: not-allowed;
    text-decoration: line-through;
}
.slot-badge { font-size: 11px; }

/* PARCOURS EN ETAPES */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0 30px;
}
.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gray-medium);
}
.stepper-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eee;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.25s ease;
}
.stepper-item.active .stepper-circle {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35);
}
.stepper-item.done .stepper-circle {
    background: var(--blue);
    color: #fff;
}
.stepper-item.active .stepper-label { color: var(--orange); font-weight: bold; }
.stepper-label { font-size: 11.5px; white-space: nowrap; }
.stepper-line {
    width: 40px;
    height: 2px;
    background: #eee;
    margin: 0 6px 18px;
}

.form-step { animation: fadeInStep 0.25s ease; }
@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}
.step-nav button { margin: 0; }
/* L'alerte de champs manquants doit occuper toute la largeur de la
   ligne pour forcer le bouton "Continuer" a passer en dessous, plutot
   que de s'afficher cote a cote avec lui dans ce conteneur flex. */
.step-nav .booking-alerte-champs {
    flex-basis: 100%;
    order: -1;
}
.btn-step-next {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-left: auto;
}
.btn-step-next:hover { background: var(--orange-dark); }
.btn-step-prev {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 14px;
    cursor: pointer;
    padding: 13px 10px;
}
.btn-step-prev:hover { color: var(--gray-dark); }

/* PRIX DETERMINE PAR SOBASO */
.price-display {
    margin: 12px 0;
    padding: 14px 16px;
    background: #fff7f0;
    border: 1.5px solid #ffd9b3;
    border-radius: 8px;
    font-size: 15px;
    color: var(--gray-dark);
}
.price-display strong { color: var(--orange-dark); font-size: 18px; }
.price-detail { font-size: 12.5px; color: var(--gray-medium); }
.price-note {
    margin-top: 6px;
    font-size: 11.5px;
    color: var(--gray-medium);
    line-height: 1.4;
}

/* CONSENTEMENT PAIEMENT CB -- case obligatoire avant envoi, sans elle
   aucun RDV ne peut etre pris (validation HTML5 native via required). */
.cb-consent-row {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 18px 0 4px;
    padding: 14px 16px;
    background: #f7f9fc;
    border: 1.5px solid #dce3ee;
    border-radius: 8px;
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.4;
    cursor: pointer;
}
.cb-consent-row input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
    accent-color: var(--orange);
}
.cb-consent-row strong { color: var(--blue); }

/* DIAGNOSTIC DYNAMIQUE */
.diagnostic-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 4px;
}
.diagnostic-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.diagnostic-option:hover { border-color: var(--orange); }
.diagnostic-option input[type="radio"] { accent-color: var(--orange); width: 16px; height: 16px; }
.diagnostic-option:has(input:checked) { border-color: var(--orange); background: #fff7f0; }

/* CHOIX DE L'ARTISAN -- liste de fiches detaillees (facon Uber/Doctolib),
   plusieurs artisans possibles par commune, le client compare et choisit
   en connaissance de cause plutot qu'une attribution automatique. */
.artisans-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 20px;
}

.artisan-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.18s ease;
    position: relative;
}
.artisan-row:hover { border-color: #ffd9b3; box-shadow: 0 6px 16px rgba(0,0,0,.07); }
.artisan-row.artisan-selected { border-color: var(--orange); background: #fff9f4; box-shadow: 0 4px 14px rgba(255,107,0,.15); }

/* Variante statique (pages locales SEO) -- pas de selection possible ici,
   la carte n'est qu'une presentation, le CTA de reservation est separe. */
.artisan-row-static { cursor: default; }
.artisan-row-static:hover { border-color: #eee; box-shadow: none; }

.artisan-row-avatar {
    width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue), #3399ff);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 22px;
    border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.artisan-row-avatar img { width: 100%; height: 100%; object-fit: cover; }

.artisan-row-body { flex: 1; min-width: 0; }

.artisan-row-top {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 8px; flex-wrap: wrap; margin-bottom: 4px;
}
.artisan-row-name { font-size: 15px; font-weight: 800; color: var(--gray-dark); }

.artisan-row-note { font-size: 12.5px; font-weight: 700; color: #e8a800; white-space: nowrap; }
.artisan-row-note-nb { color: var(--gray-medium); font-weight: 400; }

.artisan-row-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }

.artisan-row-line { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; margin-bottom: 6px; }
.artisan-row-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: #fff3ea; color: var(--orange, #FF6B00);
    margin-right: 4px;
}

.artisan-pill {
    font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px;
    white-space: nowrap;
}
.artisan-pill-metier { background: #eaf2fd; color: var(--blue-dark); }
.artisan-pill-marque { background: #f2f2f2; color: var(--gray-dark); }
.artisan-pill-info { background: #fff3ea; color: var(--orange-dark, #d8590d); }
.artisan-pill-commune { background: #f0faf4; color: #1e7e4e; }
.artisan-zone-label { font-size: 11.5px; color: var(--gray-medium); font-weight: 600; margin-right: 2px; }

.artisan-row-meta { font-size: 11.5px; color: var(--gray-medium); margin-top: 2px; }

/* GALERIE DE VIGNETTES -- aperçu du travail de l'artisan (chantier,
   vehicule, outils...) au-dela de la seule photo de profil deja
   utilisee comme avatar. */
.artisan-row-gallery { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.artisan-gallery-thumb {
    width: 48px; height: 48px; border-radius: 8px; overflow: hidden;
    flex-shrink: 0; position: relative; box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.artisan-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* AUTOCOMPLETION DU CHAMP VILLE -- evite qu'un client tape un code
   postal ou une orthographe approximative qui ne correspondrait a
   aucun artisan ensuite (le matching se fait par nom de commune exact). */
.city-autocomplete-wrap { position: relative; flex: 1 1 0; min-width: 0; }
.city-autocomplete-wrap input { width: 100%; box-sizing: border-box; }
.city-suggestions {
    display: none;
    position: absolute; z-index: 50; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1.5px solid #eee; border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    max-height: 220px; overflow-y: auto;
}
.city-suggestion {
    padding: 10px 14px; font-size: 13.5px; color: var(--gray-dark);
    cursor: pointer; border-bottom: 1px solid #f5f5f5;
}
.city-suggestion:last-child { border-bottom: none; }
.city-suggestion:hover, .city-suggestion.city-suggestion-active { background: #fff3e8; color: var(--orange-dark); }

/* GALERIE PHOTOS ARTISAN -- popup plein ecran, TOUTES les photos
   accessibles (l'artisan paie pour qu'elles soient vues, aucune ne
   doit rester cachee derriere un simple "+N" statique). */
.photo-gallery-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.9);
    align-items: center; justify-content: center;
    gap: 20px;
    padding: 20px;
}
.photo-gallery-main {
    max-width: 90vw; max-height: 85vh;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.photo-gallery-main img {
    max-width: 90vw; max-height: 75vh; object-fit: contain;
    border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.photo-gallery-caption { color: #fff; text-align: center; font-size: 14px; }
.photo-gallery-caption span { display: block; }
.photo-gallery-compteur { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

.photo-gallery-close {
    position: absolute; top: 18px; right: 20px;
    background: rgba(255,255,255,.12); color: #fff; border: none;
    width: 40px; height: 40px; border-radius: 50%; font-size: 18px;
    cursor: pointer; transition: background .15s ease;
    display: flex; align-items: center; justify-content: center; padding: 0; line-height: 1;
}
.photo-gallery-close:hover { background: rgba(255,255,255,.25); }

.photo-gallery-nav {
    background: rgba(255,255,255,.12); color: #fff; border: none;
    width: 48px; height: 48px; border-radius: 50%; font-size: 26px;
    cursor: pointer; transition: background .15s ease;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; padding: 0; line-height: 1;
}
.photo-gallery-nav:hover { background: rgba(255,255,255,.25); }
/* Les caracteres "‹" et "›" retombent legerement bas dans la plupart
   des polices -- un tout petit decalage vers le haut les recentre
   visuellement dans le cercle. */
.photo-gallery-nav span, .photo-gallery-prev, .photo-gallery-next { position: relative; }
.photo-gallery-prev { padding-bottom: 2px; }
.photo-gallery-next { padding-bottom: 2px; }

@media (max-width: 640px) {
    .photo-gallery-nav { width: 40px; height: 40px; font-size: 22px; }
}

/* Alerte visible (pas seulement l'infobulle native, discrete et
   ephemere) quand le client tente de continuer sans avoir rempli tous
   les champs obligatoires. */
.booking-alerte-champs {
    background: #fff3e8; border: 1.5px solid #ffd9b3; border-radius: 10px;
    padding: 12px 16px; margin: 0 0 18px; font-size: 14px; font-weight: 600;
    color: #b35900; text-align: center;
}
/* Surligne TOUS les champs manquants d'un coup, pas seulement le
   premier signale par le navigateur -- le client voit immediatement
   tout ce qu'il reste a completer. */
.booking-champ-manquant {
    border-color: #e74c3c !important;
    background-color: #fff5f5 !important;
}
/* Les cartes de panne/equipement utilisent un input radio totalement
   invisible (display:none) -- surligner l'input directement n'a donc
   aucun effet visible. La VRAIE carte visible (.card-inner, la soeur
   immediate de l'input dans le meme label) doit recevoir le
   surlignage a la place. */
.problem-card input.booking-champ-manquant + .card-inner,
.equipment-card input.booking-champ-manquant + .card-inner {
    border-color: #e74c3c !important;
    background-color: #fff5f5 !important;
}


/* Temoignages clients sur les fiches artisan de la reservation --
   memes classes que les pages secteur, pour un rendu identique. */
.artisan-row-testimonial {
    background: #f8fafc; border: 1px solid #eef2f7; border-radius: 8px;
    padding: 7px 10px; margin: 5px 0 0; font-size: 12.5px; color: #475569;
    font-style: italic; line-height: 1.5;
}
.artisan-row-testimonial-stars { color: #f59e0b; font-style: normal; margin-right: 3px; white-space: nowrap; }
.artisan-row-avis-plus { font-size: 12px; color: #64748b; margin-top: 4px; font-weight: 600;
    text-decoration: none; text-align: left; display: block; cursor: pointer; transition: color .15s; }
.artisan-row-avis-plus:hover { color: #FF6B00; }
