/**
 * Sea Dolphin CRM - Frontend CSS v2.7
 * Mobile-first responsive design
 */

:root {
    --sd-primary: #2D6EB5;
    --sd-primary-light: #AECDF4;
    --sd-primary-lighter: #D9E9FF;
    --sd-primary-dark: #1a4d8f;
    --sd-success: #22c55e;
    --sd-success-light: #dcfce7;
    --sd-warning: #f59e0b;
    --sd-warning-light: #fef3c7;
    --sd-danger: #ef4444;
    --sd-danger-light: #fee2e2;
    --sd-neutral: #6b7280;
    --sd-neutral-light: #f3f4f6;
    --sd-text: #1f2937;
    --sd-text-light: #6b7280;
    --sd-white: #ffffff;
    --sd-bg: #ffffff;
    --sd-radius: 12px;
    --sd-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

/* ========================================
   GRILLE VOYAGES (MOBILE)
   ======================================== */
.sd-voyages-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sd-no-voyages {
    text-align: center;
    padding: 40px 20px;
    background: var(--sd-neutral-light);
    border-radius: var(--sd-radius);
    color: var(--sd-text-light);
}

/* ========================================
   CARTE VOYAGE (MOBILE)
   ======================================== */
.sd-voyage-card {
    background: var(--sd-white);
    border-radius: var(--sd-radius);
    overflow: hidden;
    box-shadow: var(--sd-shadow);
}

.sd-voyage-image {
    height: 180px;
    background: linear-gradient(135deg, var(--sd-primary-light) 0%, var(--sd-primary-lighter) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.sd-badge-float {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sd-badge-success { background: var(--sd-success); color: white; }
.sd-badge-warning { background: var(--sd-warning); color: white; }
.sd-badge-danger { background: var(--sd-danger); color: white; }

.sd-voyage-content {
    padding: 16px;
}

.sd-voyage-dates {
    font-size: 12px;
    color: var(--sd-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.sd-voyage-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: var(--sd-text);
}

.sd-voyage-theme {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 0 0 12px 0;
}

.sd-voyage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--sd-text-light);
}

.sd-voyage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--sd-neutral-light);
}

.sd-voyage-price {
    display: flex;
    flex-direction: column;
}

.sd-price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sd-primary);
}

/* ========================================
   DÉTAIL VOYAGE (MOBILE)
   ======================================== */
.sd-voyage-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.sd-voyage-hero {
    height: 350px;
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-primary-dark) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

/* Admin edit shortcut (visible only for admins) */
.sd-admin-edit-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #2D6EB5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    z-index: 10;
    text-decoration: none;
}

.sd-admin-edit-btn:hover {
    background: #2D6EB5;
    color: #fff;
    transform: scale(1.1);
}

.sd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.sd-hero-content {
    color: white;
    max-width: 700px;
}

.sd-voyage-type {
    display: inline-block;
    background: var(--sd-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.sd-hero-content h1 {
    font-size: 2.2rem;
    margin: 0 0 8px 0;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(45, 110, 181, 0.4), 0 4px 12px rgba(0,0,0,0.3);
}

.sd-hero-theme {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.sd-voyage-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
}

.sd-voyage-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sd-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px;
    background: var(--sd-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sd-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sd-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--sd-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-primary);
}

.sd-info-icon svg {
    width: 22px;
    height: 22px;
}

.sd-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sd-info-item strong {
    display: block;
    font-size: 11px;
    color: var(--sd-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.sd-info-item > div > span {
    font-size: 15px;
    color: var(--sd-text);
    font-weight: 500;
}

.sd-voyage-description,
.sd-voyage-programme,
.sd-voyage-equipe,
.sd-voyage-bateau {
    padding: 24px;
    background: var(--sd-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sd-voyage-description h2,
.sd-voyage-programme h2,
.sd-voyage-equipe h2,
.sd-voyage-bateau h2 {
    font-size: 1.25rem;
    margin: 0 0 16px 0;
    color: var(--sd-text);
    font-weight: 600;
}

.sd-voyage-description p,
.sd-voyage-programme p {
    color: var(--sd-text-light);
    line-height: 1.8;
    font-size: 15px;
    margin: 0 0 12px 0;
}

.sd-voyage-description p:last-child,
.sd-voyage-programme p:last-child {
    margin-bottom: 0;
}

/* Équipe */
.sd-equipe-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.sd-equipe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    width: 200px;
    min-height: 180px;
    padding: 20px 16px;
    background: var(--sd-bg);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sd-equipe-clickable {
    cursor: pointer;
}

.sd-equipe-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sd-equipe-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sd-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sd-equipe-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
}

.sd-equipe-card strong {
    font-size: 14px;
    color: var(--sd-text);
    line-height: 1.3;
}

.sd-equipe-card .sd-equipe-desc {
    font-size: 12px;
    color: var(--sd-text-light);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-equipe-card .sd-equipe-role {
    font-size: 12px;
    color: var(--sd-primary);
    font-weight: 500;
}

/* Modale Équipe */
.sd-front-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sd-front-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sd-front-modal-content {
    position: relative;
    background: var(--sd-white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: sdModalIn 0.25s ease-out;
}

@keyframes sdModalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sd-front-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--sd-neutral-light);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: var(--sd-text-light);
    transition: background 0.2s, color 0.2s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.sd-front-modal-close:hover {
    background: var(--sd-danger-light);
    color: var(--sd-danger);
}

.sd-equipe-modal-body {
    padding: 32px;
    text-align: center;
}

.sd-equipe-modal-photo {
    display: flex;
    justify-content: center;
}

.sd-equipe-modal-photo img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--sd-primary-light);
    box-shadow: 0 4px 20px rgba(45, 110, 181, 0.2);
}

.sd-equipe-avatar-large {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 700;
}

.sd-equipe-modal-info {
    margin-top: 20px;
}

.sd-equipe-modal-info h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: var(--sd-text);
}

.sd-equipe-modal-role {
    display: inline-block;
    padding: 4px 12px;
    background: var(--sd-primary-lighter);
    color: var(--sd-primary-dark);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sd-equipe-modal-info p {
    color: var(--sd-text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.sd-equipe-modal-specialites {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sd-neutral-light);
    font-size: 14px;
    color: var(--sd-text);
    text-align: left;
}

.sd-equipe-modal-specialites strong {
    color: var(--sd-primary);
}

@media (max-width: 480px) {
    .sd-equipe-modal-photo img {
        width: 180px;
        height: 180px;
    }

    .sd-equipe-card {
        width: 100%;
        max-width: 240px;
    }
}

/* Bateau */
.sd-bateau-card {
    padding: 16px;
    background: var(--sd-bg);
    border-radius: 12px;
}

.sd-bateau-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.sd-bateau-card p {
    color: var(--sd-text-light);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Sidebar réservation */
.sd-voyage-sidebar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--sd-white);
    padding: 20px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    z-index: 50;
    border-radius: 20px 20px 0 0;
}

/* Transferts & Points de RDV */
.sd-voyage-transferts {
    padding: 24px;
    background: var(--sd-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sd-voyage-transferts h2 {
    font-size: 1.25rem;
    margin: 0 0 16px 0;
    color: var(--sd-text);
    font-weight: 600;
}

.sd-section-intro {
    color: var(--sd-text-light);
    font-size: 14px;
    margin: 0 0 16px 0;
}

.sd-transferts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sd-transfert-card {
    padding: 20px;
    background: var(--sd-bg);
    border-radius: 12px;
    border: 1px solid rgba(45, 110, 181, 0.08);
}

.sd-transfert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.sd-transfert-icon {
    flex-shrink: 0;
    color: var(--sd-primary);
}

.sd-transfert-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--sd-text);
}

.sd-transfert-ville {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 0 0 6px 0;
}

.sd-transfert-horaires,
.sd-transfert-duree {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sd-transfert-instructions {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 8px 0 0 0;
    font-style: italic;
}

.sd-transfert-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--sd-primary);
    text-decoration: none;
    font-weight: 500;
}

.sd-transfert-maps-link:hover {
    text-decoration: underline;
}

.sd-transferts-placeholder {
    padding: 20px;
    background: var(--sd-bg);
    border-radius: 12px;
    text-align: center;
}

.sd-transferts-placeholder p {
    color: var(--sd-text-light);
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

.sd-booking-card {
    /* Sur mobile, pas de bordure supplémentaire */
}

.sd-booking-price {
    text-align: center;
    margin-bottom: 16px;
}

.sd-price-label {
    font-size: 12px;
    color: var(--sd-text-light);
    display: block;
    margin-bottom: 4px;
}

.sd-booking-price .sd-price-amount {
    font-size: 2rem;
    display: block;
    font-weight: 700;
    color: var(--sd-primary);
}

.sd-price-detail {
    font-size: 12px;
    color: var(--sd-text-light);
}

.sd-booking-acompte {
    text-align: center;
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 0 0 16px 0;
    padding: 10px;
    background: var(--sd-bg);
    border-radius: 8px;
}

.sd-booking-places {
    text-align: center;
    margin-bottom: 20px;
}

.sd-status-confirme {
    color: var(--sd-success);
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.sd-places-left {
    font-size: 13px;
    color: var(--sd-text-light);
}
.sd-places-left.sd-places-few {
    color: var(--sd-warning, #F59E0B);
    font-weight: 600;
}
.sd-voyage-places.sd-places-complet {
    color: var(--sd-danger, #EF4444);
    font-weight: 600;
}
.sd-voyage-places.sd-places-few {
    color: var(--sd-warning, #F59E0B);
    font-weight: 600;
}

.sd-status-complet {
    color: var(--sd-danger);
    font-weight: 600;
}

.sd-booking-closed {
    text-align: center;
    padding: 12px;
    background: var(--sd-neutral-light);
    border-radius: 8px;
    color: var(--sd-text-light);
    font-size: 13px;
}

/* Tarifs dans la sidebar booking */
.sd-booking-tarifs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--sd-bg);
    border-radius: 10px;
}

.sd-tarif-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.sd-tarif-line span {
    color: var(--sd-text-light);
}

.sd-tarif-line strong {
    color: var(--sd-text);
    font-weight: 600;
}

/* "À partir de" dans les cards */
.sd-price-from {
    font-size: 11px;
    color: var(--sd-text-light);
    font-weight: 400;
}

/* Sélection tarif dans formulaire inscription */
.sd-tarifs-section .sd-section-header svg {
    color: var(--sd-primary);
}

.sd-tarif-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-tarif-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 2px solid var(--sd-neutral-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--sd-white);
}

.sd-tarif-option:hover {
    border-color: var(--sd-primary-light);
    background: var(--sd-primary-lighter, #f0f7ff);
}

.sd-tarif-option.sd-tarif-selected {
    border-color: var(--sd-primary);
    background: var(--sd-primary-lighter, #f0f7ff);
    box-shadow: 0 0 0 1px var(--sd-primary);
}

.sd-tarif-option input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--sd-primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sd-tarif-option-content {
    flex: 1;
    min-width: 0;
}

.sd-tarif-option-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.sd-tarif-option-header strong {
    font-size: 15px;
    color: var(--sd-text);
}

.sd-tarif-option-prix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sd-primary);
    white-space: nowrap;
}

.sd-tarif-option-desc {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.sd-tarif-option-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 12px;
    color: var(--sd-text-light);
}

.sd-tarif-option-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
   FORMULAIRE INSCRIPTION (MOBILE)
   ======================================== */
.sd-inscription-form {
    max-width: 100%;
    padding: 20px;
}

.sd-inscription-header {
    margin-bottom: 24px;
    text-align: center;
}

.sd-inscription-header h2 {
    font-size: 1.5rem;
    margin: 0 0 8px 0;
    color: var(--sd-text);
}

.sd-inscription-header p {
    color: var(--sd-text-light);
    margin: 0;
    font-size: 14px;
}

/* Récap voyage sélectionné */
.sd-inscription-recap {
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-primary-dark) 100%);
    color: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
}

.sd-recap-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sd-inscription-recap h3 {
    font-size: 1.3rem;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.sd-recap-theme {
    opacity: 0.9;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.sd-recap-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 16px;
}

.sd-recap-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.95;
}

.sd-recap-details svg {
    opacity: 0.8;
}

.sd-recap-places.sd-few-places {
    color: #fbbf24;
    font-weight: 600;
}

.sd-recap-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.sd-recap-price .sd-price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.sd-recap-price .sd-price-label {
    font-size: 13px;
    opacity: 1;
    color: rgba(255,255,255,0.9);
}

.sd-recap-change {
    position: absolute;
    top: 16px;
    right: 16px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    text-decoration: underline;
}

.sd-recap-change:hover {
    color: white;
}

/* Error/Empty states */
.sd-error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.sd-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.sd-empty-state p {
    color: var(--sd-text-light);
    margin-bottom: 20px;
}

/* Sélection voyage */
.sd-voyage-select-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-voyage-select-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--sd-white);
    border: 2px solid var(--sd-neutral-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--sd-text);
    transition: all 0.2s;
    gap: 16px;
}

.sd-voyage-select-item:hover,
.sd-voyage-select-item:active {
    border-color: var(--sd-primary);
    background: var(--sd-primary-lighter);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 110, 181, 0.15);
}

.sd-voyage-select-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sd-voyage-select-info strong {
    font-size: 16px;
    color: var(--sd-text);
}

.sd-voyage-select-info .sd-voyage-theme {
    font-size: 13px;
    color: var(--sd-primary);
    font-weight: 500;
}

.sd-voyage-select-info .sd-voyage-dates,
.sd-voyage-select-info .sd-voyage-dest {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--sd-text-light);
}

.sd-voyage-select-info svg {
    flex-shrink: 0;
}

.sd-voyage-select-price {
    text-align: right;
    flex-shrink: 0;
}

.sd-voyage-select-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sd-primary);
    line-height: 1.2;
}

.sd-voyage-select-price small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--sd-text-light);
}

/* ========================================
   FORMULAIRE (MOBILE)
   ======================================== */
.sd-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sd-form-section {
    background: var(--sd-white);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.sd-form-section-validation {
    background: var(--sd-bg);
    border: none;
}

.sd-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sd-neutral-light);
}

.sd-section-number {
    width: 28px;
    height: 28px;
    background: var(--sd-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.sd-section-header h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--sd-text);
    font-weight: 600;
}

.sd-section-desc {
    font-size: 13px;
    color: var(--sd-text-light);
    margin: -12px 0 16px 40px;
}

.sd-form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sd-form-group {
    margin-bottom: 16px;
}

.sd-form-group:last-child {
    margin-bottom: 0;
}

.sd-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--sd-text);
}

.sd-form-group input,
.sd-form-group select,
.sd-form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px; /* Évite zoom iOS */
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.sd-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.sd-form-group input:focus,
.sd-form-group select:focus,
.sd-form-group textarea:focus {
    outline: none;
    border-color: var(--sd-primary);
    box-shadow: 0 0 0 3px rgba(45, 110, 181, 0.1);
}

.sd-form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.sd-form-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: var(--sd-primary);
    flex-shrink: 0;
}

.sd-form-check label {
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.sd-form-check a {
    color: var(--sd-primary);
}

.sd-form-note {
    font-size: 12px;
    color: var(--sd-text-light);
    text-align: center;
    margin-top: 16px;
}

/* ========================================
   PARTICIPANTS SUPPLÉMENTAIRES
   ======================================== */
.sd-btn-add-participant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 2px dashed var(--sd-primary-light);
    background: transparent;
    color: var(--sd-primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-btn-add-participant:hover {
    background: var(--sd-primary-lighter);
    border-color: var(--sd-primary);
}

.sd-participant-card {
    background: var(--sd-neutral-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.sd-participant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sd-participant-header span {
    font-weight: 600;
    color: var(--sd-text);
}

.sd-btn-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--sd-danger-light);
    color: var(--sd-danger);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sd-btn-remove:hover {
    background: var(--sd-danger);
    color: white;
}

.sd-paiement-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sd-radio-card {
    display: block;
    cursor: pointer;
    height: 100%;
}

.sd-radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sd-radio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 70px;
    padding: 14px;
    background: white;
    border: 2px solid var(--sd-neutral-light);
    border-radius: 10px;
    transition: all 0.2s;
}

.sd-radio-card input:checked + .sd-radio-content {
    border-color: var(--sd-primary);
    background: var(--sd-primary-lighter);
}

.sd-radio-content strong {
    display: block;
    font-size: 13px;
    color: var(--sd-text);
    margin-bottom: 2px;
}

.sd-radio-content small {
    font-size: 11px;
    color: var(--sd-text-light);
}

@media (max-width: 480px) {
    .sd-paiement-choice {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TÉLÉPHONE AVEC SÉLECTEUR PAYS
   ======================================== */
.sd-phone-input {
    display: flex;
    gap: 0;
}

.sd-phone-country {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    background: var(--sd-neutral-light);
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    font-size: 18px;
    min-width: 70px;
    justify-content: center;
    transition: background 0.2s;
    position: relative;
}

.sd-phone-country:hover {
    background: #e5e7eb;
}

.sd-phone-country-code {
    font-size: 12px;
    color: var(--sd-text-light);
}

.sd-phone-input input[type="tel"] {
    flex: 1;
    border-radius: 0 8px 8px 0 !important;
    border-left: none !important;
}

.sd-country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    min-width: 200px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.sd-country-dropdown.active {
    display: block;
}

.sd-country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.sd-country-option:hover {
    background: var(--sd-primary-lighter);
}

.sd-country-option span:first-child {
    font-size: 18px;
}

.sd-country-option span:last-child {
    font-size: 13px;
    color: var(--sd-text-light);
}

/* ========================================
   PAGE CONFIRMATION INSCRIPTION (v2)
   ======================================== */
.sd-success-card {
    max-width: 620px;
    margin: 40px auto;
    padding: 48px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8f0fa;
    position: relative;
    overflow: hidden;
}

.sd-success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sd-primary) 0%, #22c55e 100%);
}

.sd-success-card h2 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--sd-text);
    margin: 0 0 8px;
}

.sd-success-subtitle {
    text-align: center;
    color: var(--sd-primary);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 24px;
}

.sd-success-intro {
    text-align: center;
    color: var(--sd-text-light);
    font-size: 15px;
    margin: 0 0 28px;
}

.sd-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
    animation: sdPop 0.4s ease-out;
}

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

.sd-success-icon svg {
    width: 36px;
    height: 36px;
}

/* Étapes */
.sd-success-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.sd-success-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sd-success-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #e8f0fa;
    color: var(--sd-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
}

/* Cas urgent : badges orange */
.sd-step-urgent {
    background: #fff7ed;
    color: #c2410c;
}

.sd-success-step-content strong {
    display: block;
    font-size: 15px;
    color: var(--sd-text);
    margin-bottom: 4px;
}

/* Cas urgent : texte accentué */
.sd-success-step-urgent .sd-success-step-content strong {
    color: #c2410c;
}

.sd-success-step-content p {
    font-size: 13.5px;
    color: var(--sd-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Note email */
.sd-success-email-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0c4a6e;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.5;
}

.sd-success-email-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #0284c7;
}

/* Boutons */
.sd-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sd-btn-outline {
    background: transparent;
    color: var(--sd-primary);
    border: 1.5px solid var(--sd-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.sd-btn-outline:hover {
    background: #e8f0fa;
}

/* Mobile */
@media (max-width: 600px) {
    .sd-success-card {
        margin: 20px 16px;
        padding: 32px 20px;
    }

    .sd-success-actions {
        flex-direction: column;
    }

    .sd-success-actions .sd-btn,
    .sd-success-actions .sd-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   BOUTONS (MOBILE)
   ======================================== */
.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.sd-btn-primary {
    background: var(--sd-primary);
    color: white;
}

.sd-btn-primary:hover,
.sd-btn-primary:active {
    background: var(--sd-primary-dark);
}

.sd-btn-secondary {
    background: var(--sd-neutral-light);
    color: var(--sd-text);
}

.sd-btn-secondary:hover,
.sd-btn-secondary:active {
    background: #e5e7eb;
}

.sd-btn-block {
    width: 100%;
}

.sd-btn-large {
    padding: 16px 28px;
    font-size: 16px;
}

/* ========================================
   ERREUR
   ======================================== */
.sd-error {
    background: var(--sd-danger-light);
    color: #991b1b;
    padding: 20px;
    border-radius: var(--sd-radius);
    text-align: center;
}

/* =============================================
   DESKTOP (min-width: 768px)
   ============================================= */
@media (min-width: 768px) {
    /* Grille voyages: 2 colonnes */
    .sd-voyages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sd-voyages-grid.sd-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-voyage-image {
        height: 200px;
    }
    
    .sd-voyage-content {
        padding: 20px;
    }
    
    /* Détail voyage */
    .sd-voyage-hero {
        height: 350px;
    }
    
    .sd-hero-overlay {
        padding: 40px;
    }
    
    .sd-hero-content h1 {
        font-size: 2rem;
    }
    
    .sd-voyage-main {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 30px;
        padding: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .sd-voyage-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
        box-shadow: var(--sd-shadow);
        border-radius: var(--sd-radius);
        padding: 24px;
    }
    
    .sd-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-transferts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Formulaire inscription */
    .sd-inscription-form {
        max-width: 600px;
        margin: 40px auto;
        padding: 0 20px;
    }
    
    .sd-form-row {
        flex-direction: row;
        gap: 16px;
    }
    
    .sd-form-row-2 > .sd-form-group {
        flex: 1;
    }
    
    .sd-form-row-3 > .sd-form-group {
        flex: 1;
    }
    
    .sd-form-row-3 > .sd-form-group-2 {
        flex: 2;
    }
    
    .sd-form-group input,
    .sd-form-group select,
    .sd-form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* =============================================
   LARGE DESKTOP (min-width: 1024px)
   ============================================= */
@media (min-width: 1024px) {
    .sd-voyages-grid.sd-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-voyage-image {
        height: 220px;
    }
}

/* ========================================
   EXPLORATEUR VOYAGES AVEC FILTRES
   ======================================== */
.sd-voyages-explorer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sd-voyages-explorer.sd-with-filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .sd-voyages-explorer.sd-with-filters {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }
}

/* Panneau filtres */
.sd-filters-panel {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2D6EB5 #e2e8f0;
}

.sd-filters-panel::-webkit-scrollbar {
    width: 8px;
}

.sd-filters-panel::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 4px;
}

.sd-filters-panel::-webkit-scrollbar-thumb {
    background: #2D6EB5;
    border-radius: 4px;
}

.sd-filters-panel::-webkit-scrollbar-thumb:hover {
    background: #1a4d8f;
}

.sd-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sd-primary-lighter);
}

.sd-filters-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--sd-text);
}

.sd-filters-reset {
    background: none;
    border: none;
    color: var(--sd-primary);
    cursor: pointer;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.sd-filters-reset:hover {
    background: var(--sd-primary-lighter);
}

.sd-filter-group {
    margin-bottom: 24px;
}

.sd-filter-group:last-child {
    margin-bottom: 0;
}

.sd-filter-group h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-text);
}

.sd-filter-group h4 svg {
    color: var(--sd-primary);
}

/* Type filter pills */
.sd-type-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sd-type-pill {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1.5px solid #2D6EB5;
    background: transparent;
    color: #2D6EB5;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Comfortaa', sans-serif;
}
.sd-type-pill.active {
    background: #2D6EB5;
    color: white;
}
.sd-type-pill:hover:not(.active) {
    background: rgba(45, 111, 181, 0.08);
}

.sd-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sd-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
    color: var(--sd-text-light);
}

.sd-filter-checkbox:hover {
    background: var(--sd-primary-lighter);
    color: var(--sd-text);
}

.sd-filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sd-primary);
    cursor: pointer;
}

.sd-filter-checkbox:has(input:checked) {
    background: var(--sd-primary-lighter);
    color: var(--sd-primary-dark);
    font-weight: 500;
}

/* Partie principale */
.sd-voyages-main {
    flex: 1;
}

.sd-voyages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.sd-voyages-count {
    font-size: 15px;
    color: var(--sd-text-light);
}

.sd-voyages-count span {
    font-weight: 700;
    color: var(--sd-primary);
}

.sd-voyages-sort select {
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    color: var(--sd-text);
}

.sd-voyages-sort select:hover {
    border-color: var(--sd-primary-light);
}

/* Grille explorateur */
.sd-voyages-explorer .sd-voyages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .sd-voyages-explorer .sd-voyages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Carte voyage explorateur */
.sd-voyages-explorer .sd-voyage-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

/* Lien couvrant toute la carte */
.sd-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.sd-voyages-explorer .sd-voyage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 110, 181, 0.15);
    border-color: var(--sd-primary-light);
}

.sd-voyages-explorer .sd-voyage-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.sd-voyage-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: white;
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sd-voyage-date-badge .sd-date-day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--sd-primary);
    line-height: 1;
}

.sd-voyage-date-badge .sd-date-month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--sd-text-light);
    margin-top: 2px;
}

.sd-voyages-explorer .sd-badge-float {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sd-voyages-explorer .sd-voyage-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.sd-voyages-explorer .sd-voyage-dates {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sd-text-light);
}

.sd-voyages-explorer .sd-voyage-dates svg {
    color: var(--sd-primary);
}

.sd-voyages-explorer .sd-voyage-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--sd-text);
    line-height: 1.3;
}

.sd-voyages-explorer .sd-voyage-theme {
    margin: 0;
    font-size: 14px;
    color: var(--sd-primary);
    font-weight: 500;
}

.sd-voyages-explorer .sd-voyage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
    padding-top: 8px;
}

.sd-voyages-explorer .sd-voyage-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sd-text-light);
}

.sd-voyages-explorer .sd-voyage-meta svg {
    color: var(--sd-primary-light);
}

.sd-voyages-explorer .sd-voyage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    margin-top: 8px;
}

.sd-voyages-explorer .sd-voyage-price {
    display: flex;
    flex-direction: column;
}

.sd-voyages-explorer .sd-price-label {
    font-size: 11px;
    color: var(--sd-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sd-voyages-explorer .sd-price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--sd-primary);
}

.sd-voyages-explorer .sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 2;
}

.sd-voyages-explorer .sd-btn-primary {
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 110, 181, 0.3);
}

.sd-voyages-explorer .sd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 110, 181, 0.4);
}

.sd-voyages-explorer .sd-btn-disabled {
    background: var(--sd-neutral-light);
    color: var(--sd-text-light);
    cursor: not-allowed;
    box-shadow: none;
}

.sd-voyages-explorer .sd-btn-disabled:hover {
    transform: none;
}

.sd-voyages-explorer .sd-btn-secondary {
    background: white;
    color: var(--sd-primary);
    border: 2px solid var(--sd-primary);
}

.sd-voyages-explorer .sd-btn-secondary:hover {
    background: var(--sd-primary-lighter);
}

/* No results */
.sd-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--sd-neutral-light);
    border-radius: 16px;
}

.sd-no-results svg {
    color: var(--sd-text-light);
    margin-bottom: 16px;
    opacity: 0.5;
}

.sd-no-results p {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--sd-text);
}

.sd-no-results .sd-text-muted {
    color: var(--sd-text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

/* No voyages */
.sd-voyages-explorer .sd-no-voyages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--sd-primary-lighter) 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px dashed var(--sd-primary-light);
}

.sd-voyages-explorer .sd-no-voyages svg {
    color: var(--sd-primary);
    margin-bottom: 20px;
    opacity: 0.6;
}

.sd-voyages-explorer .sd-no-voyages p {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--sd-text);
    font-weight: 500;
}

/* ========================================
   MOBILE: FAB + OFFCANVAS FILTERS
   ======================================== */

/* Bouton flottant — masqué sur desktop */
.sd-filter-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #2D6EB5;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(45,111,181,0.4);
    align-items: center;
    justify-content: center;
}

/* Offcanvas overlay */
.sd-offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}
.sd-offcanvas-overlay.is-open {
    display: block;
}

/* Offcanvas drawer */
.sd-offcanvas {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 0;
}
.sd-offcanvas.is-open {
    left: 0;
}
.sd-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 16px;
}
.sd-offcanvas-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}
.sd-offcanvas-body {
    padding: 20px;
}

/* Mobile: hide sidebar, show FAB */
@media (max-width: 768px) {
    .sd-filters-panel {
        display: none;
    }
    .sd-filter-fab {
        display: flex;
    }
}

/* ========================================
   TEMOIGNAGES — Carousel voyage detail
   ======================================== */
.sd-voyage-temoignages {
    padding: 24px;
    background: var(--sd-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sd-voyage-temoignages h2 {
    font-size: 1.25rem;
    margin: 0 0 16px 0;
    color: var(--sd-text);
    font-weight: 600;
}
.sd-temo-carousel {
    overflow: hidden;
    position: relative;
}
.sd-temo-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}
.sd-temo-track .sd-temoignage-card {
    flex: 0 0 100%;
    min-width: 0;
}
@media (min-width: 768px) {
    .sd-temo-track .sd-temoignage-card {
        flex: 0 0 calc(50% - 8px);
    }
}
.sd-temoignage-card {
    position: relative;
    padding: 34px 20px 20px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sd-temoignage-quote {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 48px;
    line-height: 1;
    color: var(--sd-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    pointer-events: none;
}
.sd-temoignage-texte {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sd-text-light);
    margin: 0 0 12px 0;
}
.sd-temoignage-auteur {
    font-size: 13px;
    font-weight: 700;
    color: var(--sd-primary);
    margin: 0;
}
.sd-temo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.sd-temo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--sd-border, #d1d5db);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.sd-temo-dot.active {
    background: var(--sd-primary);
}

/* ========================================
   GALERIE PHOTOS
   ======================================== */
.sd-voyage-galerie {
    padding: 24px;
    background: var(--sd-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sd-voyage-galerie h2 {
    font-size: 1.25rem;
    margin: 0 0 16px 0;
    color: var(--sd-text);
    font-weight: 600;
}

.sd-galerie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .sd-galerie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .sd-galerie-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sd-galerie-item {
    display: block;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.sd-galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-galerie-item:hover img {
    transform: scale(1.05);
}

.sd-galerie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.sd-galerie-item:hover::after {
    background: rgba(0,0,0,0.15);
}

/* ========================================
   FICHE TECHNIQUE PDF
   ======================================== */
.sd-voyage-fiche {
    margin-top: 16px;
}

.sd-fiche-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--sd-primary-lighter) 0%, #f0f7ff 100%);
    border: 1px solid var(--sd-primary-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--sd-primary);
    font-weight: 600;
    transition: all 0.2s ease;
}

.sd-fiche-link:hover {
    background: var(--sd-primary-light);
    border-color: var(--sd-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 110, 181, 0.2);
}

.sd-fiche-link svg {
    flex-shrink: 0;
    color: var(--sd-primary);
}

.sd-fiche-link span {
    font-size: 15px;
}

/* ========================================
   LIGHTBOX GALERIE
   ======================================== */
.sd-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
}

.sd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
    z-index: 10;
}

.sd-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sd-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.sd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.sd-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sd-lightbox-prev {
    left: 20px;
}

.sd-lightbox-next {
    right: 20px;
}

.sd-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .sd-lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .sd-lightbox-prev {
        left: 10px;
    }
    
    .sd-lightbox-next {
        right: 10px;
    }
    
    .sd-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* ========================================
   ÉQUIPE - CARTE SPÉCIALITÉ
   ======================================== */
.sd-equipe-card .sd-equipe-specialite {
    font-size: 13px;
    color: var(--sd-text-light);
    line-height: 1.5;
}

/* ========================================
   MODALE ÉQUIPE - ENRICHIE
   ======================================== */
.sd-equipe-modal-specialite {
    font-size: 14px;
    color: var(--sd-text-light);
    margin-bottom: 16px;
    font-style: italic;
    text-align: center;
}

.sd-equipe-modal-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--sd-neutral-light);
}

.sd-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sd-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.sd-contact-item:hover {
    color: var(--sd-primary);
}

.sd-contact-item svg {
    flex-shrink: 0;
    color: var(--sd-primary);
}

.sd-equipe-modal-liens {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--sd-neutral-light);
}

.sd-lien-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.sd-lien-social:hover {
    transform: scale(1.1);
}

.sd-lien-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.sd-lien-facebook {
    background: #1877f2;
    color: white;
}

.sd-lien-linkedin {
    background: #0a66c2;
    color: white;
}

.sd-lien-website {
    background: var(--sd-primary);
    color: white;
}

/* ========================================
   LOGIN FORM - Mon Espace
   ======================================== */
.sd-login-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.sd-login-card {
    background: var(--sd-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(45, 110, 181, 0.12);
    padding: 40px 32px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.sd-login-logo {
    margin-bottom: 20px;
}
.sd-login-logo img {
    max-width: 160px;
    height: auto;
}

.sd-login-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--sd-primary);
    margin: 0 0 6px;
}

.sd-login-subtitle {
    color: var(--sd-text-light);
    font-size: 14px;
    margin: 0 0 28px;
}

.sd-login-field {
    margin-bottom: 18px;
    text-align: left;
}
.sd-login-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-text);
    margin-bottom: 6px;
}
.sd-login-field input {
    width: 100%;
    border: 2px solid #e0eaf4;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    background: #f8fbfe;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
}
.sd-login-field input:focus {
    border-color: var(--sd-primary);
    box-shadow: 0 0 0 3px rgba(45, 110, 181, 0.15);
    background: var(--sd-white);
}

.sd-login-remember {
    text-align: left;
    margin-bottom: 22px;
}
.sd-login-remember label {
    font-size: 13.5px;
    color: var(--sd-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sd-login-btn {
    width: 100%;
    background: linear-gradient(135deg, #2D6EB5, #1a9cd4);
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sd-white);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(45, 110, 181, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
    font-family: inherit;
}
.sd-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45, 110, 181, 0.4);
}
.sd-login-btn:active {
    transform: translateY(0);
}

.sd-login-links {
    margin-top: 20px;
}
.sd-login-links a {
    color: var(--sd-primary);
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s;
}
.sd-login-links a:hover {
    color: var(--sd-primary-dark);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .sd-login-card {
        padding: 28px 20px;
    }
}

/* ========================================
   BANNIÈRE CLIENT DE RETOUR
   ======================================== */
.sd-returning-client-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf7 100%);
    border: 1px solid var(--sd-primary-light);
    border-left: 4px solid var(--sd-primary);
    border-radius: var(--sd-radius);
    color: var(--sd-text);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}
.sd-returning-icon {
    flex-shrink: 0;
    color: var(--sd-primary);
    margin-top: 2px;
}
.sd-returning-text {
    flex: 1;
}
.sd-returning-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--sd-text-light);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}
.sd-returning-close:hover {
    color: var(--sd-text);
}

/* Animation highlight auto-fill */
.sd-autofilled {
    animation: sdAutoFillHighlight 2s ease;
}
@keyframes sdAutoFillHighlight {
    0% { background-color: rgba(45, 110, 181, 0.15); box-shadow: 0 0 0 3px rgba(45, 110, 181, 0.2); }
    100% { background-color: transparent; box-shadow: none; }
}

/* Bannière erreur doublon inscription */
.sd-duplicate-error-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #f87171;
    border-left: 4px solid var(--sd-danger);
    border-radius: var(--sd-radius);
    color: #991b1b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.sd-duplicate-error-banner svg {
    flex-shrink: 0;
}
.sd-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .sd-returning-client-banner,
    .sd-duplicate-error-banner {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* ========================================
   PAGE ÉQUIPE — Shortcode [sd_equipe]
   ======================================== */
.sd-equipe-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.sd-equipe-section {
    margin-bottom: 48px;
}

.sd-equipe-section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--sd-primary);
    text-align: center;
    margin: 0 0 28px;
}

/* Carte fondateur (horizontale, mise en avant) */
.sd-equipe-fondateur {
    display: flex;
    justify-content: center;
}

.sd-equipe-fondateur-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--sd-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 648px;
    max-width: 100%;
}

.sd-equipe-fondateur-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sd-equipe-fondateur-card > img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--sd-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.sd-equipe-avatar-fondateur {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    flex-shrink: 0;
}

.sd-equipe-fondateur-info {
    flex: 1;
}

.sd-equipe-fondateur-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 6px;
}

.sd-equipe-fondateur-info .sd-equipe-specialite {
    display: block;
    font-size: 14px;
    color: var(--sd-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.sd-equipe-bio-preview {
    font-size: 14px;
    color: var(--sd-text-light);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive : fondateur en colonne sur mobile */
@media (max-width: 600px) {
    .sd-equipe-fondateur-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .sd-equipe-fondateur-info .sd-equipe-specialite {
        text-align: center;
    }

    .sd-equipe-fondateur-card > img,
    .sd-equipe-avatar-fondateur {
        width: 140px;
        height: 140px;
    }

    .sd-equipe-fondateur-info h2 {
        font-size: 22px;
    }

    .sd-equipe-section-title {
        font-size: 20px;
    }
}


/* ========================================
   PAGE PRESSE
   ======================================== */

.sd-presse-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.sd-presse-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: center;
}

.sd-presse-filter {
    padding: 7px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    background: var(--sd-bg);
    color: var(--sd-text-light);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.sd-presse-filter:hover {
    border-color: var(--sd-primary);
    color: var(--sd-primary);
}

.sd-presse-filter.active {
    background: var(--sd-primary);
    color: white;
    border-color: var(--sd-primary);
}

.sd-presse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.sd-presse-card {
    background: var(--sd-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.sd-presse-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sd-presse-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--sd-neutral-light);
}

.sd-presse-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sd-presse-card:hover .sd-presse-card-img img {
    transform: scale(1.05);
}

.sd-presse-card-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-neutral);
}

.sd-presse-card-img-web {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2D6EB5 0%, #AECDF4 60%, #D9E9FF 100%);
    color: white;
}

.sd-presse-card-web-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.sd-presse-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(45, 110, 181, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.sd-presse-card-pages {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.sd-presse-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sd-presse-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.sd-presse-card-source {
    color: var(--sd-primary);
    font-weight: 600;
}

.sd-presse-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.sd-presse-card-extrait {
    font-size: 14px;
    color: var(--sd-text-light);
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.sd-presse-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sd-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.sd-presse-card-link:hover {
    gap: 10px;
}

/* Carte cliquable */
.sd-presse-clickable {
    cursor: pointer;
}

/* ---- Modale Presse Liseuse ---- */
.sd-presse-modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
}

.sd-presse-modal-header {
    margin-bottom: 20px;
}

.sd-presse-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sd-presse-card-badge-inline {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    background: var(--sd-primary);
    color: white;
    border-radius: 20px;
}

.sd-presse-modal-date {
    font-size: 13px;
    color: var(--sd-text-light);
}

.sd-presse-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--sd-text);
    line-height: 1.3;
}

/* ---- Reader (image + navigation) ---- */
.sd-presse-reader {
    margin-bottom: 24px;
}

.sd-presse-reader-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-presse-reader-img-wrap img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Navigation arrows (inside image area) */
.sd-presse-reader-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s;
    color: var(--sd-text);
}

.sd-presse-reader-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.08);
}

.sd-presse-reader-nav:disabled {
    opacity: 0.3;
    cursor: default;
}

.sd-presse-reader-nav:disabled:hover {
    transform: translateY(-50%);
}

.sd-presse-reader-prev {
    left: 12px;
}

.sd-presse-reader-next {
    right: 12px;
}

/* Page indicator */
.sd-presse-reader-indicator {
    text-align: center;
    padding: 10px 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-text-light);
}

/* Thumbs strip */
.sd-presse-reader-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    justify-content: safe center;
}

.sd-presse-thumb {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.sd-presse-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.sd-presse-thumb.active {
    opacity: 1;
    border-color: var(--sd-primary);
}

/* ---- Modal info ---- */
.sd-presse-modal-info {
    padding: 0 4px;
}

.sd-presse-modal-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sd-text-light);
    margin: 0 0 20px;
    white-space: pre-line;
}

/* ---- Lightbox plein ecran ---- */
.sd-presse-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100001;
    background: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-presse-lightbox img {
    max-width: 95vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 6px;
    user-select: none;
}

.sd-presse-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    z-index: 100002;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
}

.sd-presse-lightbox-close:hover {
    opacity: 1;
}

.sd-presse-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100002;
    color: white;
    transition: background 0.2s;
}

.sd-presse-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sd-presse-lightbox-nav:disabled {
    opacity: 0.2;
    cursor: default;
}

.sd-presse-lightbox-prev {
    left: 20px;
}

.sd-presse-lightbox-next {
    right: 20px;
}

.sd-presse-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 100002;
}

/* ---- Contact Presse ---- */
.sd-presse-contact {
    background: var(--sd-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sd-presse-contact-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 8px 0;
    text-align: center;
}

.sd-presse-contact-desc {
    font-size: 15px;
    color: var(--sd-text-light);
    text-align: center;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.sd-presse-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sd-presse-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.sd-presse-form-row .sd-presse-form-group {
    margin-bottom: 0;
}

.sd-presse-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-text);
    margin-bottom: 6px;
}

.sd-presse-form-group label .required {
    color: var(--sd-danger);
}

.sd-presse-form-group input,
.sd-presse-form-group select,
.sd-presse-form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--sd-text);
    background: var(--sd-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.sd-presse-form-group input:focus,
.sd-presse-form-group select:focus,
.sd-presse-form-group textarea:focus {
    border-color: var(--sd-primary);
    box-shadow: 0 0 0 3px rgba(45, 110, 181, 0.12);
}

.sd-presse-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.sd-presse-form-actions {
    text-align: center;
    margin-top: 8px;
}

.sd-presse-submit-btn {
    display: inline-block;
    padding: 12px 36px;
    background: var(--sd-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.sd-presse-submit-btn:hover {
    background: var(--sd-primary-dark);
    transform: translateY(-1px);
}

.sd-presse-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sd-presse-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

.sd-presse-feedback-success {
    background: var(--sd-success-light);
    color: #166534;
}

.sd-presse-feedback-error {
    background: var(--sd-danger-light);
    color: #991b1b;
}

/* Bandeau CTA presse */
.sd-presse-cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 24px;
    margin-bottom: 32px;
    background: var(--sd-primary-lighter);
    border-radius: 12px;
    border: 1px solid rgba(45, 110, 181, 0.15);
}

.sd-presse-cta-banner p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--sd-text);
}

.sd-presse-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--sd-primary);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.sd-presse-cta-btn:hover {
    background: var(--sd-primary-dark);
    transform: translateY(-1px);
    color: white;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .sd-presse-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sd-presse-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sd-presse-contact {
        padding: 24px 20px;
    }

    .sd-presse-contact-title {
        font-size: 20px;
    }

    .sd-presse-modal-content {
        width: 95%;
        max-height: 95vh;
        padding: 20px;
    }

    .sd-presse-reader-img-wrap img {
        max-height: 350px;
    }

    .sd-presse-reader-nav {
        width: 34px;
        height: 34px;
    }

    .sd-presse-reader-prev {
        left: 6px;
    }

    .sd-presse-reader-next {
        right: 6px;
    }

    .sd-presse-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .sd-presse-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .sd-presse-lightbox-prev {
        left: 8px;
    }

    .sd-presse-lightbox-next {
        right: 8px;
    }

    .sd-presse-card-img {
        height: 220px;
    }

    .sd-presse-reader-thumbs {
        justify-content: flex-start;
    }
}

/* ========================================
   PAGE CONTACT
   ======================================== */

.sd-contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.sd-contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.sd-contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 12px;
}

.sd-contact-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--sd-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cartes coordonnées */
.sd-contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}

.sd-contact-card {
    flex: 0 1 280px;
    min-width: 220px;
    background: var(--sd-bg);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sd-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sd-contact-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--sd-primary-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-primary);
}

.sd-contact-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--sd-text);
    margin: 0 0 8px;
}

.sd-contact-card-link {
    display: block;
    font-size: 14px;
    color: var(--sd-primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 4px;
}

.sd-contact-card-link:hover {
    text-decoration: underline;
}

.sd-contact-card-detail {
    font-size: 12px;
    color: var(--sd-text-light);
    margin: 0;
}

.sd-contact-card-address {
    font-size: 14px;
    color: var(--sd-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Réseaux sociaux */
.sd-contact-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.sd-contact-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sd-bg);
    border-radius: 10px;
    color: var(--sd-text-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: color 0.2s, transform 0.2s;
}

.sd-contact-social-link:hover {
    color: var(--sd-primary);
    transform: translateY(-2px);
}

/* Formulaire */
.sd-contact-form-wrapper {
    background: var(--sd-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.sd-contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 24px;
    text-align: center;
}

.sd-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sd-contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.sd-contact-form-row .sd-contact-form-group {
    margin-bottom: 0;
}

.sd-contact-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-text);
    margin-bottom: 6px;
}

.sd-contact-form-group label .required {
    color: var(--sd-danger);
}

.sd-contact-form-group input,
.sd-contact-form-group select,
.sd-contact-form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--sd-text);
    background: var(--sd-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.sd-contact-form-group input:focus,
.sd-contact-form-group select:focus,
.sd-contact-form-group textarea:focus {
    border-color: var(--sd-primary);
    box-shadow: 0 0 0 3px rgba(45, 110, 181, 0.12);
}

.sd-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sd-contact-form-actions {
    text-align: center;
    margin-top: 8px;
}

.sd-contact-submit-btn {
    display: inline-block;
    padding: 12px 36px;
    background: var(--sd-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.sd-contact-submit-btn:hover {
    background: var(--sd-primary-dark);
    transform: translateY(-1px);
}

.sd-contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Feedback */
.sd-contact-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

.sd-contact-feedback-success {
    background: var(--sd-success-light);
    color: #166534;
}

.sd-contact-feedback-error {
    background: var(--sd-danger-light);
    color: #991b1b;
}

/* Mentions légales */
.sd-contact-legal {
    text-align: center;
    padding: 16px 0;
}

.sd-contact-legal p {
    font-size: 12px;
    color: var(--sd-text-light);
    margin: 0;
}

/* ========================================
   PAGE BLOG — Shortcode [sd_blog]
   ======================================== */
.sd-blog-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.sd-blog-header {
    text-align: center;
    margin-bottom: 32px;
}

.sd-blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 12px;
}

.sd-blog-subtitle {
    font-size: 15px;
    color: var(--sd-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filtres catégories */
.sd-blog-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.sd-blog-filter {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--sd-text-light);
    background: var(--sd-bg);
    border: 1px solid var(--sd-neutral-light);
    transition: all 0.2s;
}

.sd-blog-filter:hover {
    border-color: var(--sd-primary);
    color: var(--sd-primary);
}

.sd-blog-filter.active {
    background: var(--sd-primary);
    color: white;
    border-color: var(--sd-primary);
}

/* Grille articles */
.sd-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Carte article */
.sd-blog-card {
    background: var(--sd-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sd-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sd-blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--sd-neutral-light);
}

.sd-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sd-blog-card:hover .sd-blog-card-img img {
    transform: scale(1.05);
}

.sd-blog-card-img-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--sd-text-light);
}

.sd-blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--sd-primary);
    color: white;
    border-radius: 20px;
}

/* Corps carte */
.sd-blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sd-blog-card-meta {
    margin-bottom: 10px;
    font-size: 12px;
}

.sd-blog-card-date {
    color: var(--sd-text-light);
    font-weight: 500;
}

.sd-blog-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--sd-text);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.sd-blog-card-extrait {
    font-size: 14px;
    color: var(--sd-text-light);
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sd-blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sd-primary);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.2s;
}

.sd-blog-card:hover .sd-blog-card-read {
    gap: 10px;
}

/* Pagination */
.sd-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 48px;
}

.sd-blog-page-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--sd-primary);
    background: var(--sd-bg);
    border: 1px solid var(--sd-neutral-light);
    transition: all 0.2s;
}

.sd-blog-page-btn:hover {
    background: #e8f0fa;
    border-color: var(--sd-primary);
}

.sd-blog-page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--sd-text);
    background: var(--sd-bg);
    border: 1px solid var(--sd-neutral-light);
    transition: all 0.2s;
}

.sd-blog-page-num:hover {
    border-color: var(--sd-primary);
    color: var(--sd-primary);
}

.sd-blog-page-active {
    background: var(--sd-primary);
    color: white;
    border-color: var(--sd-primary);
}

.sd-blog-page-active:hover {
    background: var(--sd-primary-dark);
    color: white;
}

.sd-blog-page-dots {
    padding: 0 4px;
    color: var(--sd-text-light);
}

/* État vide */
.sd-blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--sd-text-light);
}

.sd-blog-empty svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.sd-blog-empty p {
    font-size: 16px;
    margin: 0;
}

/* Responsive blog */
@media (max-width: 992px) {
    .sd-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sd-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sd-blog-card-img {
        height: 200px;
    }

    .sd-blog-title {
        font-size: 1.6rem;
    }

    .sd-blog-pagination {
        flex-wrap: wrap;
    }

    .sd-blog-page-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .sd-blog-page-num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* Responsive contact */
@media (max-width: 768px) {
    .sd-contact-cards .sd-contact-card {
        flex: 1 1 100%;
    }

    .sd-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sd-contact-form-wrapper {
        padding: 24px 20px;
    }

    .sd-contact-title {
        font-size: 26px;
    }
}

/* ========================================
   NEWSLETTER FOOTER
   ======================================== */

.sd-newsletter-form-row {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10px;
    box-sizing: border-box;
}

.sd-newsletter-form-row input[type="email"] {
    flex: 1;
    min-width: 0;
    border-radius: 8px 0 0 8px;
    border: 1px solid #ccc;
    border-right: none;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Comfortaa', sans-serif;
    outline: none;
    box-sizing: border-box;
}

.sd-newsletter-form-row input[type="email"]:focus {
    border-color: #2D6EB5;
}

.sd-newsletter-form-row button {
    border-radius: 0 8px 8px 0;
    padding: 12px 24px;
    background: #2D6EB5;
    color: #fff;
    border: 1px solid #2D6EB5;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
}

.sd-newsletter-form-row button:hover {
    background: #29588e;
    border-color: #29588e;
}

.sd-newsletter-form-row button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sd-newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    max-width: 600px;
    margin: 0 auto;
}

.sd-newsletter-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #2D6EB5;
    min-width: 16px;
}

.sd-newsletter-consent span {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #666;
}

.sd-newsletter-msg {
    padding: 10px 0;
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.95rem;
}

.sd-newsletter-success,
.sd-newsletter-already {
    color: #10b981;
}

.sd-newsletter-error {
    color: #ef4444;
}

@media (max-width: 600px) {
    .sd-newsletter-form-row {
        flex-direction: column;
    }
    .sd-newsletter-form-row input[type="email"] {
        border-radius: 8px;
        border-right: 1px solid #ccc;
    }
    .sd-newsletter-form-row button {
        border-radius: 8px;
    }
}

/* ===== Toast Produit Externe ===== */
.sd-externe-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e293b;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 999999;
}
