/* ============================================================
   VAMC Mon Compte - CSS
   ============================================================ */

:root {
    --vamc-pink: #ff66c4;
    --vamc-cyan: #6ad8ca;
    --vamc-dark: #23282d;
    --vamc-rose: #c22e58;
    --vamc-bg: #fdf6f8;
    --vamc-border: #f0e4e8;
    --vamc-text: #333;
    --vamc-muted: #888;
    --vamc-radius: 0 0.9rem 0 0;
    --vamc-red: #c22e58;
    --vamc-red-light: #fdf0f4;
    --vamc-gradient: linear-gradient(135deg, #c22e58, #e04584);
    --radius-card: 0 0.9rem 0 0;
    --radius-btn: 0 0.6rem 0 0;
    --font: 'Ubuntu', sans-serif;
}

/* ============================================================
   AUTH PAGE - /connexion/
   ============================================================ */
.vamc-auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.vamc-auth-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.vamc-auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.vamc-auth-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vamc-cyan), var(--vamc-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.vamc-auth-icon--mixed {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--vamc-cyan), var(--vamc-pink));
    box-shadow: 0 4px 16px rgba(194,46,88,0.25);
}

/* Onboarding avatar placeholder */
.vamc-ob-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8e0e3;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.vamc-ob-avatar:hover {
    background: #d4c8cc;
}

.vamc-ob-avatar-cam {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    transition: background 0.2s;
}

.vamc-ob-avatar:hover .vamc-ob-avatar-cam {
    background: rgba(0,0,0,0.35);
}

.vamc-ob-avatar img + .vamc-ob-avatar-cam {
    opacity: 0;
    transition: opacity 0.2s;
}

.vamc-ob-avatar:hover img + .vamc-ob-avatar-cam {
    opacity: 1;
}

.vamc-auth-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0 0 6px;
}

.vamc-auth-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: var(--vamc-muted);
    margin: 0;
    line-height: 1.5;
}

.vamc-auth-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: var(--vamc-radius);
    font-size: 14px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-auth-success {
    background: #edf9f7;
    color: #0cafa3;
    padding: 12px 16px;
    border-radius: var(--vamc-radius);
    font-size: 14px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.vamc-auth-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--vamc-text);
    background: #fff;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.2s;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vamc-auth-btn:hover {
    background: var(--vamc-bg);
    border-color: #ddd;
    color: var(--vamc-text);
    text-decoration: none;
}

.vamc-auth-btn--magic {
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    border-color: #c22e58;
    justify-content: center;
    font-weight: 700;
    width: 100%;
}

.vamc-auth-btn--magic:hover {
    background: linear-gradient(135deg, #6ad8ca, #5bc4b6);
    border-color: #6ad8ca;
    color: #fff;
}

.vamc-auth-btn--magic:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.vamc-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.vamc-auth-divider::before,
.vamc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--vamc-border);
}

.vamc-auth-divider span {
    font-size: 12px;
    color: var(--vamc-muted);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-auth-magic {
    margin-bottom: 1.5rem;
}

.vamc-auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.vamc-auth-input:focus {
    outline: none;
    border-color: var(--vamc-cyan);
}

#vamc-magic-status {
    text-align: center;
    padding: 12px;
    border-radius: var(--vamc-radius);
    font-size: 13px;
    margin-top: 8px;
    font-family: 'Ubuntu', sans-serif;
}

#vamc-magic-status.success {
    background: #edf9f7;
    color: #0cafa3;
    display: block !important;
}

#vamc-magic-status.error {
    background: #fef2f2;
    color: #dc2626;
    display: block !important;
}

.vamc-auth-legal {
    font-size: 11px;
    color: var(--vamc-muted);
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.vamc-auth-legal a {
    color: var(--vamc-rose);
}

.vamc-auth-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vamc-border);
    text-align: center;
}

.vamc-auth-footer p {
    font-size: 12px;
    color: var(--vamc-muted);
    font-style: italic;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

/* ============================================================
   DASHBOARD PAGE - /mon-compte/
   ============================================================ */
.vamc-compte-page {
    padding: 24px 20px 60px;
    min-height: 70vh;
}

.vamc-compte-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vamc-loading {
    text-align: center;
    padding: 80px 0;
}

.vamc-loading-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid var(--vamc-border);
    border-top-color: var(--vamc-cyan);
    border-radius: 50%;
    animation: vamc-spin 0.7s linear infinite;
    margin-bottom: 12px;
}

@keyframes vamc-spin { to { transform: rotate(360deg); } }

.vamc-loading p {
    font-size: 14px;
    color: var(--vamc-muted);
    font-family: 'Ubuntu', sans-serif;
}

/* Dashboard header (tabs + logout top-right) */
.vamc-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.vamc-dashboard-header .vamc-dog-tabs {
    margin-bottom: 0;
}

.vamc-logout-link {
    font-size: 13px;
    color: var(--vamc-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    flex-shrink: 0;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-logout-link:hover {
    color: var(--vamc-rose);
    text-decoration: none;
}

/* Dog Tabs */
.vamc-dog-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.vamc-dog-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    border: 1px solid var(--vamc-border);
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s, box-shadow 0.2s;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.vamc-dog-tab.active {
    border-width: 2px;
}

.vamc-dog-tab.active.male { border-color: var(--vamc-cyan); }
.vamc-dog-tab.active.female { border-color: var(--vamc-pink); }

.vamc-dog-tab-name {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    color: var(--vamc-text);
    margin: 0;
}

.vamc-dog-tab-info {
    font-size: 12px;
    color: var(--vamc-muted);
    margin: 0;
}

.vamc-dog-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--vamc-border);
    background: var(--vamc-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.vamc-dog-avatar.male { border-color: var(--vamc-cyan); }
.vamc-dog-avatar.female { border-color: var(--vamc-pink); }

.vamc-dog-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vamc-add-dog-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px dashed var(--vamc-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    transition: border-color 0.15s;
}

.vamc-add-dog-btn:hover {
    border-color: var(--vamc-cyan);
}

/* Profile Card */
.vamc-profile-card {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
}

.vamc-profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vamc-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--vamc-cyan);
    background: var(--vamc-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.vamc-profile-avatar.female { border-color: var(--vamc-pink); }

.vamc-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vamc-profile-name {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    color: var(--vamc-text);
}

.vamc-profile-details {
    font-size: 15px;
    color: var(--vamc-muted);
    margin: 2px 0 0;
}

.vamc-profile-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.vamc-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-tag--region { background: #E1F5EE; color: #0F6E56; }
.vamc-tag--type { background: #fdf0f4; color: #c22e58; }
.vamc-tag--saison { background: #FAEEDA; color: #854F0B; }

/* Section headings */
.vamc-section {
    margin-bottom: 2rem;
}

.vamc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vamc-section-title {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    color: var(--vamc-text);
}

.vamc-section-link {
    font-size: 12px;
    color: var(--vamc-cyan);
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

/* Plages scroll */
.vamc-plages-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.vamc-plage-card {
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}

.vamc-plage-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.vamc-plage-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 10px;
    background: rgba(255,255,255,0.9);
    color: #04342C;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.vamc-plage-content {
    padding: 14px 16px;
}

.vamc-plage-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-plage-sub {
    font-size: 11px;
    color: var(--vamc-muted);
    margin: 0 0 8px;
}

.vamc-plage-actions {
    display: flex;
    gap: 4px;
    align-items: center;
}

.vamc-btn-sm {
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    background: #fff;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    transition: all 0.15s;
    text-decoration: none;
    color: var(--vamc-text);
    display: inline-block;
    text-align: center;
}

.vamc-btn-sm:hover {
    border-color: var(--vamc-cyan);
    color: var(--vamc-text);
    text-decoration: none;
}

.vamc-btn-sm--save {
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    border-color: #c22e58;
}

.vamc-btn-sm--save.saved {
    background: var(--vamc-bg);
    color: var(--vamc-muted);
    border-color: var(--vamc-border);
}

/* Nudge card */
.vamc-nudge {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
}

.vamc-nudge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fdf0f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vamc-nudge-text {
    flex: 1;
    font-size: 15px;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-nudge-btn {
    font-size: 12px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Actu items */
.vamc-actu-item {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
}

.vamc-actu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vamc-actu-dot--info { background: var(--vamc-cyan); }
.vamc-actu-dot--promo { background: var(--vamc-pink); }
.vamc-actu-dot--regle { background: var(--vamc-muted); }

.vamc-actu-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-actu-date {
    font-size: 11px;
    color: var(--vamc-muted);
    margin: 2px 0 0;
}

/* Hebergement block */
.vamc-hebergement {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
}

.vamc-hebergement-icon {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: linear-gradient(135deg, #9FE1CB, var(--vamc-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vamc-hebergement-text {
    flex: 1;
}

.vamc-hebergement-count {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-hebergement-sub {
    font-size: 12px;
    color: var(--vamc-muted);
    margin: 2px 0 0;
}

.vamc-btn-primary {
    font-size: 14px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    border: none;
    border-radius: 0 0.9rem 0 0;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.vamc-btn-primary:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

/* Product card */
.vamc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.vamc-product-card {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    padding: 14px;
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
    display: flex;
    flex-direction: column;
}

.vamc-product-img {
    width: 100%;
    height: 120px;
    background: var(--vamc-bg);
    border-radius: var(--vamc-radius);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vamc-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.vamc-product-name {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.vamc-product-desc {
    font-size: 12px;
    color: var(--vamc-muted);
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vamc-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #0cafa3;
    margin: 4px 0 10px;
}

/* Coupon code */
.vamc-coupon-wrap {
    cursor: pointer;
    margin: 8px 0 14px;
}

.vamc-coupon-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--vamc-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 5px;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-coupon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e8dfe2;
    border-radius: 6px;
    padding: 9px 12px;
    background: #faf7f8;
    transition: background 0.2s;
}

.vamc-coupon-wrap:hover .vamc-coupon-box {
    background: #f3edef;
}

.vamc-coupon-code {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--vamc-text);
    letter-spacing: 1.5px;
}

.vamc-coupon-copy {
    font-family: 'Ubuntu', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c22e58;
    opacity: 0.65;
    transition: opacity 0.15s;
}

.vamc-coupon-wrap:hover .vamc-coupon-copy {
    opacity: 1;
}

/* Promo cards */
.vamc-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.vamc-promo-card {
    background: #fff;
    border: 1px solid #ece6e8;
    border-radius: var(--vamc-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.vamc-promo-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.vamc-promo-img {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.vamc-promo-img img {
    max-width: 110px;
    max-height: 36px;
    object-fit: contain;
    opacity: 0.8;
}

.vamc-promo-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.vamc-promo-discount {
    font-size: 15px;
    font-weight: 700;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-promo-partner {
    font-size: 12px;
    color: var(--vamc-muted);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-promo-desc {
    font-size: 13px;
    color: var(--vamc-muted);
    margin: 0 0 12px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .vamc-promo-grid {
        grid-template-columns: 1fr;
    }
}

.vamc-btn-affiliate {
    font-size: 12px;
    padding: 9px 14px;
    width: 100%;
    background: #c22e58;
    color: #fff;
    border: none;
    border-radius: var(--vamc-radius);
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: auto;
    transition: background 0.2s;
}
.vamc-btn-affiliate:hover {
    background: #a8264c;
    color: #fff;
    text-decoration: none;
}

/* Newsletter toggles */
.vamc-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--vamc-border);
}

.vamc-toggle-row:last-child {
    border-bottom: none;
}

.vamc-toggle-label {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-toggle-desc {
    font-size: 12px;
    color: var(--vamc-muted);
    margin: 2px 0 0;
}

/* Toggle switch */
.vamc-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.vamc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.vamc-switch-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 12px;
    transition: background 0.2s;
    cursor: pointer;
}

.vamc-switch-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vamc-switch input:checked + .vamc-switch-slider {
    background: var(--vamc-cyan);
}

.vamc-switch input:checked + .vamc-switch-slider::before {
    transform: translateX(20px);
}

/* Confirm dialog */
.vamc-confirm {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--vamc-radius);
    padding: 16px 20px;
    margin-top: 12px;
}

.vamc-confirm-title {
    font-size: 14px;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 4px;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-confirm-text {
    font-size: 13px;
    color: var(--vamc-muted);
    margin: 0 0 12px;
}

.vamc-confirm-actions {
    display: flex;
    gap: 8px;
}

.vamc-btn-danger {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--vamc-radius);
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.vamc-btn-cancel {
    background: #fff;
    color: var(--vamc-text);
    border: 1px solid var(--vamc-border);
    padding: 8px 16px;
    border-radius: var(--vamc-radius);
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Onboarding */
.vamc-onboarding {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 0;
}

.vamc-onboarding-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.vamc-progress {
    height: 6px;
    background: var(--vamc-border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.vamc-progress-bar {
    height: 100%;
    background: var(--vamc-cyan);
    border-radius: 2px;
    transition: width 0.3s;
}

.vamc-onboarding-step {
    font-size: 13px;
    color: var(--vamc-muted);
    margin: 0 0 6px;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vamc-onboarding-question {
    font-size: 24px;
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0 0 1.5rem;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-onboarding-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.vamc-option-btn {
    background: var(--vamc-bg);
    border: 1.5px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    padding: 12px 20px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--vamc-text);
    cursor: pointer;
    transition: all 0.15s;
}

.vamc-option-btn:hover {
    border-color: var(--vamc-cyan);
    color: var(--vamc-rose);
}

.vamc-option-btn.selected {
    background: linear-gradient(135deg, #c22e58, #e04584);
    border-color: #c22e58;
    color: #fff;
    transform: scale(1);
    transition: all 0.15s, transform 0.1s;
}

.vamc-option-btn:active {
    transform: scale(0.95);
}

.vamc-sex-card {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--vamc-radius);
    border: 1px solid var(--vamc-border);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, border-width 0.15s;
}

.vamc-sex-card.selected.male { border: 2px solid var(--vamc-cyan); }
.vamc-sex-card.selected.female { border: 2px solid var(--vamc-pink); }

.vamc-sex-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vamc-sex-icon.male { background: var(--vamc-cyan); color: #04342C; }
.vamc-sex-icon.female { background: var(--vamc-pink); color: #4B1528; }

.vamc-onboarding-nav {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
}

.vamc-btn-back {
    flex: 1;
    background: #fff;
    border: 1px solid var(--vamc-border);
    padding: 10px;
    border-radius: var(--vamc-radius);
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--vamc-text);
}

.vamc-btn-next {
    flex: 1;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: var(--vamc-radius);
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.vamc-btn-next:disabled {
    opacity: 0.6;
    cursor: wait;
}

.vamc-btn-next:active,
.vamc-btn-primary:active,
.vamc-btn-sm:active {
    transform: scale(0.97);
}

.vamc-rgpd-check {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 13px;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-rgpd-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.vamc-rgpd-check a {
    color: var(--vamc-rose);
}

/* Footer */
.vamc-footer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--vamc-border);
    margin-top: 2rem;
}

.vamc-footer p {
    font-size: 12px;
    color: var(--vamc-muted);
    font-style: italic;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}

.vamc-footer-links {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.vamc-footer-link {
    background: none;
    border: none;
    color: var(--vamc-muted);
    font-size: 11px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color 0.15s;
}

.vamc-footer-link:hover {
    color: var(--vamc-text);
}

.vamc-footer-link--danger:hover {
    color: #dc2626;
}

.vamc-footer-sep {
    color: var(--vamc-border);
    font-size: 11px;
}

/* Settings */
.vamc-settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--vamc-border);
}

.vamc-btn-link {
    background: none;
    border: none;
    color: var(--vamc-rose);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    padding: 0;
    text-decoration: underline;
}

.vamc-btn-link--danger {
    color: #dc2626;
}

/* Modal overlay */
.vamc-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.vamc-modal {
    background: #fff;
    border-radius: var(--vamc-radius);
    padding: 1.5rem;
    width: 100%;
    max-width: 360px;
    max-height: 90vh;
    overflow-y: auto;
}

.vamc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vamc-modal-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--vamc-text);
    font-family: 'Ubuntu', sans-serif;
}

.vamc-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--vamc-muted);
    cursor: pointer;
    padding: 0;
}

/* Toast */
.vamc-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vamc-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--vamc-radius);
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.vamc-toast.show {
    opacity: 1;
    animation: vamc-toast-in 0.3s ease;
}

@keyframes vamc-toast-in {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Avatar upload */
.vamc-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.vamc-avatar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 50% 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.vamc-profile-avatar:hover .vamc-avatar-overlay {
    opacity: 1;
}

.vamc-photo-delete {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.15s, transform 0.15s;
}

.vamc-photo-delete:hover {
    opacity: 1;
    transform: scale(1.1);
}

.vamc-photo-delete--male {
    background: #e8f8f5;
    color: #6ad8ca;
}

.vamc-photo-delete--female {
    background: #e5e5e5;
    color: #ff66c4;
}

/* Heart favorite button */
.vamc-heart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.vamc-heart:hover {
    transform: scale(1.15);
}

.vamc-heart:active {
    transform: scale(0.9);
}

.vamc-heart svg {
    transition: fill 0.2s, stroke 0.2s;
}

.vamc-heart:hover svg {
    stroke: #6ad8ca;
}

.vamc-heart--active svg {
    fill: #6ad8ca;
    stroke: #6ad8ca;
}

.vamc-heart--img {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
    transition: transform 0.15s;
}

.vamc-heart--img:hover {
    transform: scale(1.15);
}

.vamc-heart--img:active {
    transform: scale(0.9);
}

/* Empty state */
.vamc-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
    margin-bottom: 2rem;
}

.vamc-empty-illustration {
    margin-bottom: 16px;
}

.vamc-empty-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0 0 8px;
}

.vamc-empty-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    color: var(--vamc-muted);
    margin: 0 0 4px;
    font-style: italic;
}

.vamc-empty-cta {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: var(--vamc-text);
    margin: 12px auto 0;
    max-width: 400px;
    line-height: 1.5;
}

/* Phase 2 tags */
.vamc-tag--phase2 {
    background: #f3e8ff;
    color: #7c3aed;
}

.vamc-phase2-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
}

.vamc-phase2-tag {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    background: #fdf0f4;
    color: #c22e58;
}

.vamc-phase2-edit {
    background: none;
    border: none;
    color: var(--vamc-muted);
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    text-decoration: underline;
}

.vamc-phase2-edit:hover {
    color: #c22e58;
}

/* Picks grid */
.vamc-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.vamc-pick-card {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--vamc-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--vamc-text);
    box-shadow: 0 2px 12px rgba(194,46,88,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
    display: block;
}

.vamc-pick-card:hover {
    box-shadow: 0 6px 20px rgba(194,46,88,0.15);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--vamc-text);
}

.vamc-pick-img {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.vamc-pick-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vamc-pick-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: 0.02em;
}

.vamc-pick-content {
    padding: 14px 16px;
}

.vamc-pick-title {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.vamc-pick-location {
    font-size: 13px;
    color: var(--vamc-muted);
    margin: 0 0 8px;
}

.vamc-pick-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vamc-pick-price {
    font-size: 16px;
    font-weight: 700;
    color: #0cafa3;
}

.vamc-pick-guests {
    font-size: 12px;
    color: var(--vamc-muted);
}

/* ============================================================
   Shortcode: [vamc_hebergement] - Article Card
   ============================================================ */
.vamc-heberg-card {
    display: flex;
    background: #fff;
    border: 1px solid #f0e4e8;
    border-radius: 0 0.9rem 0 0;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(194,46,88,0.10);
    margin: 24px 0;
    transition: box-shadow 0.2s, transform 0.2s;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-heberg-card:hover {
    box-shadow: 0 6px 24px rgba(194,46,88,0.18);
    transform: translateY(-2px);
}

.vamc-heberg-card-img {
    width: 280px;
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.vamc-heberg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vamc-heberg-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 10px;
    letter-spacing: 0.02em;
}

.vamc-heberg-card-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vamc-heberg-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vamc-heberg-card-location {
    font-size: 14px;
    color: #888;
    margin: 0 0 4px;
}

.vamc-heberg-card-meta {
    font-size: 13px;
    color: #aaa;
    margin: 0 0 12px;
}

.vamc-heberg-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.vamc-heberg-card-price {
    font-size: 20px;
    font-weight: 700;
    color: #0cafa3;
}

.vamc-heberg-card-price small {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.vamc-heberg-card-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 0 0.9rem 0 0;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
    box-shadow: 0 2px 10px rgba(194,46,88,0.25);
}

.vamc-heberg-card-btn:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   Connexion Landing Page
   ============================================================ */
.vamc-auth-landing {
    display: flex;
    min-height: calc(100vh - 120px);
    width: 100%;
    margin: 0;
    gap: 0;
}

.vamc-auth-value {
    flex: 1;
    padding: 48px 80px 48px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #c22e58;
}

.vamc-auth-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.vamc-auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(194,46,88,0.35) 0%, rgba(194,46,88,0.25) 50%, rgba(194,46,88,0.2) 100%);
    z-index: 2;
}

.vamc-auth-value::before,
.vamc-auth-value::after {
    display: none;
}

.vamc-auth-edge {
    position: absolute;
    top: 0;
    right: -1px;
    width: 60px;
    height: 100%;
    z-index: 4;
}

.vamc-auth-edge svg {
    width: 100%;
    height: 100%;
}

.vamc-auth-value-inner {
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}

.vamc-auth-eyebrow {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    margin: 0 0 12px;
}

.vamc-auth-hero-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
}

.vamc-auth-highlight {
    color: #fd4fba;
}

.vamc-auth-hero-sub {
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
    margin: 0 0 36px;
}

.vamc-auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.vamc-auth-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vamc-auth-benefit-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #c22e58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(194,46,88,0.4);
}

.vamc-auth-benefit-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.vamc-auth-benefit-text strong {
    color: #fff;
    font-weight: 700;
}

.vamc-auth-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 20px;
}

.vamc-auth-trust-sep {
    color: rgba(255,255,255,0.4);
}

.vamc-auth-luke {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: 16px;
}

.vamc-auth-luke-img,
.vamc-auth-luke img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: none !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4), 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
    display: block !important;
}

.vamc-auth-luke-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 2px;
}

.vamc-auth-luke-role {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-style: italic;
}

.vamc-auth-form-side {
    flex: 0 0 440px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.vamc-auth-form-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0 0 6px;
    text-align: center;
}

.vamc-auth-form-sub {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    color: var(--vamc-muted);
    margin: 0 0 28px;
    text-align: center;
}

.vamc-auth-info {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 12px 16px;
    border-radius: var(--vamc-radius);
    font-size: 14px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.vamc-auth-video-mobile,
.vamc-auth-overlay-mobile {
    display: none;
}

/* ============================================================
   Article Heart Favorite + Signup Modal
   ============================================================ */
.vamc-article-heart-wrap {
    display: flex;
    justify-content: flex-end;
    margin: 24px 0;
    position: sticky;
    bottom: 20px;
    z-index: 100;
    pointer-events: none;
}

.vamc-article-heart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #f0e4e8;
    border-radius: 40px;
    padding: 10px 18px 10px 14px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c22e58;
    box-shadow: 0 4px 20px rgba(194,46,88,0.15);
    transition: all 0.2s;
    pointer-events: all;
}

.vamc-article-heart:hover {
    box-shadow: 0 6px 24px rgba(194,46,88,0.25);
    transform: translateY(-2px);
}

.vamc-article-heart--saved {
    border-color: #6ad8ca;
    color: #0cafa3;
}

.vamc-article-heart-label {
    white-space: nowrap;
}

.vamc-signup-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vamc-signup-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.vamc-signup-modal-box {
    position: relative;
    background: #fff;
    border-radius: 0 1.2rem 0 0;
    padding: 36px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    animation: vamc-modal-pop 0.3s ease;
}

@keyframes vamc-modal-pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.vamc-signup-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
}

.vamc-signup-modal-icon {
    margin-bottom: 12px;
}

.vamc-signup-modal-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.vamc-signup-modal-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0 0 20px;
    line-height: 1.5;
}

.vamc-signup-modal-btn {
    display: block;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 0 0.9rem 0 0;
    text-decoration: none;
    transition: opacity 0.15s;
    box-shadow: 0 4px 16px rgba(194,46,88,0.3);
}

.vamc-signup-modal-btn:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

.vamc-signup-modal-sub {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    color: #aaa;
    margin: 12px 0 0;
}

/* ============================================================
   Hover effects
   ============================================================ */
.vamc-plage-card:hover {
    box-shadow: 0 6px 20px rgba(194,46,88,0.15);
    transform: translateY(-2px);
}

.vamc-auth-btn:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.vamc-dog-tab:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vamc-dog-tab.active {
    animation: vamc-tab-pulse 0.3s ease;
}

@keyframes vamc-tab-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.vamc-nudge-btn:hover {
    border-color: #c22e58;
    color: #c22e58;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .vamc-auth-container {
        padding: 0 4px;
    }

    .vamc-profile-header {
        flex-wrap: wrap;
    }

    .vamc-hebergement {
        flex-direction: column;
        text-align: center;
    }

    .vamc-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .vamc-plage-card {
        min-width: 200px;
        max-width: 200px;
    }

    .vamc-confirm-actions {
        flex-direction: column;
    }

    .vamc-onboarding-question {
        font-size: 16px;
    }

    .vamc-picks-grid {
        grid-template-columns: 1fr;
    }

    .vamc-heberg-card {
        flex-direction: column;
    }

    .vamc-heberg-card-img {
        width: 100%;
        height: 180px;
    }

    .vamc-heberg-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .vamc-heberg-card-btn {
        width: 100%;
        justify-content: center;
    }

    .vamc-article-heart {
        padding: 8px 14px 8px 10px;
        font-size: 12px;
    }

    .vamc-article-heart svg {
        width: 18px;
        height: 18px;
    }

    .vamc-signup-modal-box {
        padding: 32px 40px 24px;
    }

    .vamc-logout-link {
        font-size: 12px;
    }
}

/* Responsive: medium desktop connexion */
@media (max-width: 1100px) and (min-width: 861px) {
    .vamc-auth-value {
        padding: 32px 80px 32px 24px;
    }

    .vamc-auth-form-side {
        flex: 0 0 380px;
        padding: 32px 24px;
    }

    .vamc-auth-hero-title {
        font-size: 28px;
    }

    .vamc-auth-hero-sub {
        font-size: 14px;
    }

    .vamc-auth-benefit-text {
        font-size: 12px;
    }

    .vamc-auth-benefit-icon {
        width: 30px;
        height: 30px;
    }

    .vamc-auth-benefits {
        gap: 8px;
    }
}

/* Responsive: mobile connexion */
@media (max-width: 860px) {
    .vamc-auth-landing {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .vamc-auth-video,
    .vamc-auth-edge {
        display: none !important;
    }

    .vamc-auth-value {
        padding: 28px 24px;
        border-radius: 0;
        background: linear-gradient(150deg, #c22e58 0%, #0cafa3 100%) !important;
    }

    .vamc-auth-value-inner {
        max-width: 100%;
    }

    .vamc-auth-video-mobile {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 0;
    }

    .vamc-auth-overlay-mobile {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(194,46,88,0.45) 0%, rgba(194,46,88,0.3) 100%);
        z-index: 1;
    }

    .vamc-auth-form-side {
        flex: none;
        padding: 32px 24px 24px;
        order: 1;
        position: relative;
        overflow: hidden;
        background: #c22e58;
    }

    .vamc-auth-container {
        position: relative;
        z-index: 2;
    }

    .vamc-auth-form-title {
        font-size: 22px;
        color: #fff;
    }

    .vamc-auth-form-sub {
        color: rgba(255,255,255,0.85);
    }

    .vamc-auth-legal {
        color: rgba(255,255,255,0.6);
    }

    .vamc-auth-legal a {
        color: rgba(255,255,255,0.8);
    }

    .vamc-auth-divider span {
        color: rgba(255,255,255,0.5);
    }

    .vamc-auth-divider::before,
    .vamc-auth-divider::after {
        background: rgba(255,255,255,0.2);
    }

    .vamc-auth-input {
        background: rgba(255,255,255,0.95);
    }

    .vamc-auth-overlay {
        display: none;
    }

    .vamc-auth-eyebrow {
        display: none;
    }

    .vamc-auth-hero-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .vamc-auth-hero-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .vamc-auth-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .vamc-auth-benefit-icon {
        width: 28px;
        height: 28px;
    }

    .vamc-auth-benefit-icon svg {
        width: 14px;
        height: 14px;
    }

    .vamc-auth-benefit-text {
        font-size: 12px;
    }

    .vamc-auth-trust {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .vamc-auth-luke {
        padding: 10px 14px;
        gap: 10px;
        margin-bottom: 24px;
    }

    .vamc-auth-luke-img,
    .vamc-auth-luke img {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }

    .vamc-auth-luke-text {
        font-size: 13px;
    }

    .vamc-auth-luke-role {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .vamc-auth-form-side {
        padding: 24px 16px 20px;
    }

    .vamc-auth-value {
        padding: 24px 16px 32px;
    }

    .vamc-auth-hero-title {
        font-size: 20px;
    }

    .vamc-auth-benefits {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vamc-auth-form-title {
        font-size: 20px;
    }

    .vamc-auth-form-sub {
        font-size: 13px;
    }
}



/* Mobile menu login button */
.vamc-mega__mobile-compte {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    margin-left: auto;
    margin-right: 12px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.vamc-mega__mobile-compte:hover {
    background: rgba(255,255,255,0.12);
    color: #6ad8ca;
    border-color: #6ad8ca;
    text-decoration: none;
}
/* ══════════════════════════════════════════════════════════════
   VAMC PARTENAIRE ONBOARDING
   Append to: assets/styles/vamc-compte.css
   Uses: existing VAMC variables from :root
   Version: 1.0 — 21 mai 2026
   ══════════════════════════════════════════════════════════════ */


/* ── Container ── */

.vamc-onboarding {
    max-width: 680px;
    margin: 0 auto;
}


/* ── Step indicator ── */

.vamc-onboarding-steps {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    background: var(--vamc-bg);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.vamc-onboarding-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 14px 8px 12px;
    cursor: pointer;
    position: relative;
}

.vamc-onboarding-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.vamc-onboarding-step__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--vamc-border);
    color: #b0a0a8;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vamc-onboarding-step__label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #b0a0a8;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.vamc-onboarding-step.active .vamc-onboarding-step__num {
    background: var(--vamc-gradient);
    color: #fff;
}

.vamc-onboarding-step.active .vamc-onboarding-step__label {
    color: var(--vamc-red);
}

.vamc-onboarding-step.active::after {
    background: var(--vamc-gradient);
}

.vamc-onboarding-step.done .vamc-onboarding-step__num {
    background: #6ad8ca;
    color: #fff;
}

.vamc-onboarding-step.done .vamc-onboarding-step__label {
    color: #6ad8ca;
}

.vamc-onboarding-step.done::after {
    background: #6ad8ca;
}


/* ── Panels ── */

.vamc-onboarding-panel {
    display: none;
}

.vamc-onboarding-panel.active {
    display: block;
}


/* ── Cards (profil-style header) ── */

.vamc-ob-card {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 20px;
}

.vamc-ob-card__header {
    background: var(--vamc-gradient);
    color: #fff;
    padding: 14px 20px;
    font-weight: 700;
    font-size: clamp(0.88rem, 2.5vw, 0.95rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vamc-ob-card__body {
    padding: 20px;
}


/* ── Form elements ── */

.vamc-ob-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vamc-muted);
    margin: 0 0 5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vamc-ob-input,
.vamc-ob-select,
.vamc-ob-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--vamc-border);
    border-radius: var(--radius-btn);
    font-family: var(--font);
    font-size: clamp(0.88rem, 2.5vw, 0.93rem);
    color: var(--vamc-text);
    background: #fff;
    transition: border-color 0.25s ease;
    margin-bottom: 14px;
    outline: none;
    -webkit-appearance: none;
}

.vamc-ob-input:focus,
.vamc-ob-select:focus,
.vamc-ob-textarea:focus {
    border-color: #6ad8ca;
}

.vamc-ob-textarea {
    height: 80px;
    resize: vertical;
    line-height: 1.6;
}

.vamc-ob-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c22e58' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}


/* ── Grid layouts ── */

.vamc-ob-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vamc-ob-row3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

@media (max-width: 560px) {
    .vamc-ob-row2,
    .vamc-ob-row3 {
        grid-template-columns: 1fr;
    }
}


/* ── Animal sections ── */

.vamc-ob-animal {
    background: var(--vamc-bg);
    border-radius: var(--radius-card);
    padding: 16px 18px;
    margin-bottom: 14px;
}

.vamc-ob-animal__title {
    font-size: clamp(0.92rem, 2.5vw, 0.98rem);
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--vamc-border);
}


/* ── Toggle switch ── */

.vamc-ob-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: clamp(0.88rem, 2.5vw, 0.93rem);
    color: var(--vamc-text);
}

.vamc-ob-toggle {
    position: relative;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
    display: inline-block;
    cursor: pointer;
}

.vamc-ob-toggle input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
    z-index: 1;
}

.vamc-ob-toggle__bg {
    position: absolute;
    inset: 0;
    background: var(--vamc-border);
    border-radius: 12px;
    transition: background 0.25s ease;
}

.vamc-ob-toggle input:checked + .vamc-ob-toggle__bg {
    background: var(--vamc-red);
}

.vamc-ob-toggle__dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.vamc-ob-toggle input:checked ~ .vamc-ob-toggle__dot {
    transform: translateX(18px);
}


/* ── Conditional fields ── */

.vamc-ob-conditional {
    display: none;
    margin-top: 10px;
}


/* ── Equipment checkboxes ── */

.vamc-ob-equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media (max-width: 560px) {
    .vamc-ob-equip-grid {
        grid-template-columns: 1fr;
    }
}

.vamc-ob-equip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--vamc-bg);
    border-radius: var(--radius-btn);
    font-size: clamp(0.84rem, 2vw, 0.88rem);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    color: var(--vamc-text);
}

.vamc-ob-equip:hover {
    border-color: #6ad8ca;
}

.vamc-ob-equip input {
    display: none;
}

.vamc-ob-equip__tick {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid var(--vamc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.vamc-ob-equip__tick svg {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.vamc-ob-equip input:checked ~ .vamc-ob-equip__tick {
    background: var(--vamc-gradient);
    border-color: var(--vamc-red);
}

.vamc-ob-equip input:checked ~ .vamc-ob-equip__tick svg {
    opacity: 1;
}


/* ── Photo upload ── */

.vamc-ob-upload {
    border: 2px dashed var(--vamc-border);
    border-radius: var(--radius-card);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease;
    margin-bottom: 16px;
}

.vamc-ob-upload:hover {
    border-color: #6ad8ca;
}

.vamc-ob-upload__icon {
    margin-bottom: 8px;
}

.vamc-ob-upload__text {
    font-size: clamp(0.88rem, 2.5vw, 0.93rem);
    color: var(--vamc-muted);
}

.vamc-ob-upload__hint {
    font-size: 0.78rem;
    color: #b0a0a8;
    margin-top: 4px;
}

.vamc-ob-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .vamc-ob-photos {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vamc-ob-photo {
    aspect-ratio: 4/3;
    background: var(--vamc-bg);
    border-radius: var(--radius-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: #b0a0a8;
    border: 1.5px solid var(--vamc-border);
    position: relative;
    overflow: hidden;
}

.vamc-ob-photo.filled {
    border-color: var(--vamc-red-light);
}

.vamc-ob-photo.uploading {
    border-color: #6ad8ca;
}

.vamc-ob-photo__num {
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--vamc-muted);
    background: rgba(255, 255, 255, 0.85);
    padding: 1px 4px;
    border-radius: 4px;
}

.vamc-ob-photo.filled .vamc-ob-photo__num {
    color: #fff;
    background: rgba(194, 46, 88, 0.7);
}


/* ── Note ── */

.vamc-ob-note {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    color: var(--vamc-muted);
    line-height: 1.6;
    background: var(--vamc-bg);
    border-radius: var(--radius-card);
    padding: 12px 16px;
    box-shadow: 0 1px 6px rgba(194, 46, 88, 0.06);
}


/* ── Navigation ── */

.vamc-ob-nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}


/* ── Preview ── */

.vamc-ob-preview {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--radius-card);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(194, 46, 88, 0.06);
}

.vamc-ob-preview__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.vamc-ob-preview__badge {
    display: inline-block;
    background: var(--vamc-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-btn);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.vamc-ob-preview__name {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    font-weight: 700;
    color: var(--vamc-text);
}

.vamc-ob-preview__meta {
    font-size: 0.82rem;
    color: var(--vamc-muted);
    margin-top: 2px;
}

.vamc-ob-preview__price {
    text-align: right;
    white-space: nowrap;
}

.vamc-ob-preview__price .sub {
    display: block;
    font-size: 0.72rem;
    color: var(--vamc-muted);
}

.vamc-ob-preview__price .amt {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vamc-red);
}

.vamc-ob-preview__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


/* ── Pills ── */

.vamc-ob-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.vamc-ob-pill--oui {
    background: #edf9f7;
    color: #0cafa3;
}

.vamc-ob-pill--non {
    background: #fce8e8;
    color: #a32d2d;
}


/* ── Status bar ── */

.vamc-ob-status {
    padding: 12px 16px;
    border-radius: var(--radius-btn);
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    font-weight: 500;
    margin-bottom: 16px;
    background: #fff8e6;
    color: #85560b;
}

.vamc-ob-status--live {
    background: #edf9f7;
    color: #0cafa3;
}


/* ── Next steps ── */

.vamc-ob-next-steps {
    background: var(--vamc-bg);
    border-radius: var(--radius-card);
    padding: 18px 20px;
    margin-top: 16px;
}

.vamc-ob-next-steps h4 {
    font-size: clamp(0.92rem, 2.5vw, 0.98rem);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--vamc-text);
}

.vamc-ob-next-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
}

.vamc-ob-next-step__num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vamc-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vamc-ob-next-step span {
    font-size: clamp(0.86rem, 2vw, 0.9rem);
    color: var(--vamc-text);
    padding-top: 2px;
}


/* ── Mobile ── */

@media (max-width: 480px) {
    .vamc-onboarding-step__label {
        font-size: 0.65rem;
    }
    .vamc-ob-card__body {
        padding: 14px;
    }
    .vamc-ob-preview__top {
        flex-direction: column;
        gap: 8px;
    }
    .vamc-ob-preview__price {
        text-align: left;
    }
}


/* ══════════════════════════════════════════════════════════════
   VAMC PARTENAIRE DASHBOARD
   Version: 1.0 — 21 mai 2026
   ══════════════════════════════════════════════════════════════ */


/* ── Dashboard container ── */

.vamc-dash {
    max-width: 680px;
    margin: 0 auto;
}


/* ── Header ── */

.vamc-dash-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.vamc-dash-title {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0 0 6px;
}

.vamc-dash-statut {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-btn);
}

.vamc-dash-statut--actif {
    background: #edf9f7;
    color: #0cafa3;
}

.vamc-dash-statut--brouillon {
    background: #fff8e6;
    color: #85560b;
}

.vamc-dash-statut--expire {
    background: #fce8e8;
    color: #a32d2d;
}

.vamc-dash-statut--suspendu {
    background: var(--vamc-bg);
    color: var(--vamc-muted);
}

.vamc-dash-expiration {
    display: block;
    font-size: 0.78rem;
    color: var(--vamc-muted);
    margin-top: 4px;
}


/* ── Stats ── */

.vamc-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.vamc-dash-stat {
    background: var(--vamc-bg);
    border-radius: var(--radius-card);
    padding: 16px;
    text-align: center;
}

.vamc-dash-stat__num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vamc-text);
}

.vamc-dash-stat__label {
    display: block;
    font-size: 0.72rem;
    color: var(--vamc-muted);
    margin-top: 2px;
}

.vamc-dash-stat--alert .vamc-dash-stat__num {
    color: var(--vamc-red);
}


/* ── Tabs ── */

.vamc-dash-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--vamc-border);
    margin-bottom: 24px;
}

.vamc-dash-tab {
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--vamc-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.vamc-dash-tab:hover {
    color: var(--vamc-red);
}

.vamc-dash-tab.active {
    color: var(--vamc-red);
    font-weight: 700;
}

.vamc-dash-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vamc-gradient);
    border-radius: 2px 2px 0 0;
}

.vamc-dash-tab__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--vamc-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: middle;
}


/* ── Section ── */

.vamc-dash-section {
    margin-bottom: 32px;
}

.vamc-dash-subtitle {
    font-size: clamp(0.92rem, 2.5vw, 1rem);
    font-weight: 700;
    color: var(--vamc-text);
    margin: 20px 0 10px;
}

.vamc-dash-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--vamc-red);
    font-weight: 500;
    margin-top: 8px;
}

.vamc-dash-empty {
    font-size: 0.9rem;
    color: var(--vamc-muted);
    text-align: center;
    padding: 32px 0;
}


/* ── Aperçu ── */

.vamc-dash-apercu {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--radius-card);
    padding: 18px;
}

.vamc-dash-apercu__info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.vamc-dash-apercu__meta {
    font-size: 0.88rem;
    color: var(--vamc-muted);
}

.vamc-dash-apercu__prix {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vamc-red);
}

.vamc-dash-apercu__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


/* ── Inquiries ── */

.vamc-dash-inquiries {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vamc-dash-inquiry {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--radius-card);
    padding: 16px;
}

.vamc-dash-inquiry--unread {
    border-color: var(--vamc-red);
    background: var(--vamc-bg);
}

.vamc-dash-inquiry--preview {
    background: var(--vamc-bg);
}

.vamc-dash-inquiry__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.vamc-dash-inquiry__name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--vamc-text);
}

.vamc-dash-inquiry__email {
    font-size: 0.82rem;
    color: var(--vamc-muted);
    margin-left: 6px;
}

.vamc-dash-inquiry__date {
    font-size: 0.78rem;
    color: var(--vamc-muted);
    white-space: nowrap;
}

.vamc-dash-inquiry__details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.vamc-dash-inquiry__tag {
    font-size: 0.78rem;
    background: var(--vamc-bg);
    padding: 3px 8px;
    border-radius: 8px;
    color: var(--vamc-text);
}

.vamc-dash-inquiry--unread .vamc-dash-inquiry__tag {
    background: #fff;
}

.vamc-dash-inquiry__msg {
    font-size: 0.85rem;
    color: var(--vamc-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.vamc-dash-inquiry__actions {
    display: flex;
    gap: 8px;
}

.vamc-dash-inquiry__chien {
    font-size: 0.82rem;
    color: var(--vamc-red);
}

.vamc-dash-inquiry__dates {
    font-size: 0.82rem;
    color: var(--vamc-muted);
}


/* ── Edit form ── */

.vamc-edit-form .vamc-ob-card {
    margin-bottom: 16px;
}


/* ── Mobile ── */

@media (max-width: 560px) {
    .vamc-dash-header {
        flex-direction: column;
    }
    .vamc-dash-stats {
        grid-template-columns: 1fr;
    }
    .vamc-dash-tabs {
        overflow-x: auto;
    }
    .vamc-dash-tab {
        padding: 8px 12px;
        font-size: 0.82rem;
        white-space: nowrap;
    }
    .vamc-dash-inquiry__top {
        flex-direction: column;
        gap: 4px;
    }
}


/* ══════════════════════════════════════════════════════════════
   VAMC DISPONIBILITE — Calendrier
   Version: 1.0 — 21 mai 2026
   ══════════════════════════════════════════════════════════════ */

.vamc-dispo {
    margin: 24px 0;
}

.vamc-dispo-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}

.vamc-dispo-header h3 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: var(--vamc-text);
    margin: 0;
}

.vamc-dispo-saison {
    font-size: 0.82rem;
    color: var(--vamc-muted);
}

.vamc-dispo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 560px) {
    .vamc-dispo-grid {
        grid-template-columns: 1fr;
    }
}

.vamc-dispo-month {
    background: #fff;
    border: 1px solid var(--vamc-border);
    border-radius: var(--radius-card);
    padding: 12px;
}

.vamc-dispo-month__title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vamc-text);
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--vamc-border);
}

.vamc-dispo-month__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.vamc-dispo-day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    font-size: 0.72rem;
    border-radius: 4px;
    font-weight: 500;
}

.vamc-dispo-day--head {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--vamc-muted);
}

.vamc-dispo-day--empty {
    background: transparent;
}

.vamc-dispo-day--free {
    background: #edf9f7;
    color: #0cafa3;
}

.vamc-dispo-day--booked {
    background: #fce8e8;
    color: #a32d2d;
}

.vamc-dispo-day--closed {
    background: var(--vamc-bg);
    color: #ccc;
}

.vamc-dispo-legend {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--vamc-muted);
    margin-top: 10px;
    justify-content: center;
}

.vamc-dispo-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vamc-dispo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.vamc-dispo-dot--free { background: #0cafa3; }
.vamc-dispo-dot--booked { background: #a32d2d; }
.vamc-dispo-dot--closed { background: #ddd; }


/* ── Edit form (dashboard) ── */

.vamc-dispo-edit .vamc-ob-card {
    margin-bottom: 16px;
}

.vamc-dispo-periode {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.vamc-dispo-periode .vamc-ob-input {
    margin-bottom: 0;
}

.vamc-dispo-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: #fce8e8;
    color: #a32d2d;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.vamc-dispo-remove:hover {
    background: #f09595;
}

@media (max-width: 560px) {
    .vamc-dispo-periode {
        flex-direction: column;
        align-items: stretch;
    }
    .vamc-dispo-periode .vamc-ob-input {
        width: 100% !important;
    }
}


/* ── Interactive calendar (edit) — additions ── */

.vamc-dispo-grid--edit .vamc-dd--click {
    cursor: pointer;
    transition: all 0.1s ease;
    user-select: none;
    -webkit-user-select: none;
}

.vamc-dispo-grid--edit .vamc-dd--click:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(194, 46, 88, 0.3);
}

.vamc-dispo-grid--edit .vamc-dd--booked {
    background: var(--vamc-red);
    color: #fff;
}

.vamc-dispo-grid--edit .vamc-dd--free {
    background: #edf9f7;
    color: #0cafa3;
}

.vamc-dispo-hint {
    font-size: 0.82rem;
    color: var(--vamc-muted);
    margin: 10px 0 14px;
    line-height: 1.5;
}

.vamc-dispo-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--vamc-border);
}

.vamc-dispo-count {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--vamc-red);
}


/* ══════════════════════════════════════════════════════════════
   VAMC ADDITIONS — Video, check-in pills, avis, contact v2
   Version: 1.0 — 21 mai 2026
   ══════════════════════════════════════════════════════════════ */


/* ── Video ── */

/* ── Video: proper frame ── */
@media(max-width:768px){
    }
@media(max-width:480px){
    }


/* ── Check-in/out pills ── */

.vamc-fiche-pills--info {
    margin: 8px 0 16px;
}

.vamc-fiche-pill--info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--vamc-bg);
    color: var(--vamc-muted);
}


/* ── Contact form v2 date pickers ── */

.vamc-fiche-contact input[type="date"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--vamc-border);
    border-radius: var(--radius-btn);
    font-family: var(--font);
    font-size: clamp(0.88rem, 2.5vw, 0.93rem);
    color: var(--vamc-text);
    background: #fff;
    outline: none;
    -webkit-appearance: none;
}

.vamc-fiche-contact input[type="date"]:focus {
    border-color: #6ad8ca;
}


/* ── Avis ── */

.vamc-fiche-avis__empty {
    font-size: 0.88rem;
    color: var(--vamc-muted);
    text-align: center;
    padding: 24px 0;
}

.vamc-fiche-avis__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.vamc-fiche-avis__item {
    background: var(--vamc-bg);
    border-radius: var(--radius-card);
    padding: 14px 16px;
}

.vamc-fiche-avis__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.vamc-fiche-avis__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--vamc-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vamc-fiche-avis__name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--vamc-text);
}

.vamc-fiche-avis__date {
    font-size: 0.75rem;
    color: var(--vamc-muted);
    margin-left: 6px;
}

.vamc-fiche-avis__text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.vamc-fiche-avis__form {
    margin-top: 16px;
}

.vamc-fiche-avis__form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vamc-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.vamc-fiche-avis__form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--vamc-border);
    border-radius: var(--radius-btn);
    font-family: var(--font);
    font-size: 0.88rem;
    color: var(--vamc-text);
    resize: vertical;
    outline: none;
    margin-bottom: 10px;
}

.vamc-fiche-avis__form textarea:focus {
    border-color: #6ad8ca;
}

/* ══════════════════════════════════════════════════════════════
   VAMC FICHE HÉBERGEMENT — Full width + wuchtig
   Version: 1.1 — 22 mai 2026
   ══════════════════════════════════════════════════════════════ */

/* ── Sage breakout: full width, no sidebar, no hero ── */

.single-vamc_hebergement #hero-img,
.single-vamc_hebergement #atraveo-form,
.single-vamc_hebergement #slider-nav,
.single-vamc_hebergement .claim {display:none!important}
.single-vamc_hebergement main#content>h1,
.single-vamc_hebergement main#content>.page-header {display:none!important}
.single-vamc_hebergement #sidebar {display:none!important}
.single-vamc_hebergement main#content {margin-top:0!important;padding-top:0!important}
.single-vamc_hebergement main#content .wrapper {max-width:none!important;padding:0!important;margin:0!important;width:100%!important}
.single-vamc_hebergement main#content .wrapper>.grid-group {margin:0!important;padding:0!important;max-width:none!important;width:100%!important}
.single-vamc_hebergement main#content .wrapper>.grid-group>.grid-box {padding:0!important;margin:0!important;max-width:none!important;width:100%!important;flex:0 0 100%!important}
.single-vamc_hebergement main#content .entry-content {padding:0!important;margin:0!important}
.single-vamc_hebergement main#content article {max-width:none!important;width:100%!important}


/* ── Article container ── */

.vamc-fiche {
    font-family: 'Ubuntu', sans-serif;
    color: #23282d;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}


/* ── Gallery: full bleed ── */

.vamc-fiche-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 420px;
    gap: 4px;
    margin-bottom: 0;
}

.vamc-fiche-gallery__main {
    grid-row: 1;
    grid-column: 1;
    overflow: hidden;
}

.vamc-fiche-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vamc-fiche-gallery__thumbs {
    grid-row: 1;
    grid-column: 2;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
}

.vamc-fiche-gallery__thumb {
    position: relative;
    overflow: hidden;
}

.vamc-fiche-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vamc-fiche-gallery__more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}


/* ── Content wrapper (centered below gallery) ── */

.vamc-fiche-header,
.vamc-fiche-pills,
.vamc-fiche-desc,
.vamc-fiche-section,
.vamc-fiche-carte-link,
.vamc-fiche-breadcrumb,
/* ── Breadcrumb ── */

.vamc-fiche-breadcrumb {
    font-size: .78rem;
    color: #888;
    margin-top: 20px;
    margin-bottom: 16px;
}
.vamc-fiche-breadcrumb a {color:#c22e58;text-decoration:none}
.vamc-fiche-breadcrumb a:hover {color:#6ad8ca}


/* ── Header: big and bold ── */

.vamc-fiche-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 24px;
    margin-bottom: 12px;
}

.vamc-fiche-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin: 0;
    color: #23282d;
    line-height: 1.15;
}

.vamc-fiche-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 0 10px 0 0;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.vamc-fiche-meta {
    font-size: .95rem;
    color: #888;
    margin-top: 4px;
}

.vamc-fiche-prix {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 16px 20px;
    background: #fdf6f8;
    border-radius: 0 1.5rem 0 0;
    border: 1.5px solid #f0e4e8;
}

.vamc-fiche-prix__label {
    display: block;
    font-size: .72rem;
    color: #888;
}

.vamc-fiche-prix__amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c22e58;
}

.vamc-fiche-prix__unit {
    font-size: .88rem;
    color: #888;
}


/* ── Pills ── */

.vamc-fiche-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.vamc-fiche-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500;
}

.vamc-fiche-pill--oui {background:#edf9f7;color:#0cafa3}
.vamc-fiche-pill--non {background:#fce8e8;color:#a32d2d}
.vamc-fiche-pill--info {background:#fdf6f8;color:#888}


/* ── Description ── */

.vamc-fiche-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 24px;
    margin-top: 16px;
}


/* ── Sections ── */

.vamc-fiche-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.vamc-fiche-section h2 {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-weight: 700;
    color: #23282d;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f0e4e8;
}

.vamc-fiche-section h3 {
    font-size: .92rem;
    font-weight: 700;
    color: #c22e58;
    margin: 20px 0 8px;
}


/* ── Equipements ── */

.vamc-fiche-equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.vamc-fiche-equip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #fdf6f8;
    border-radius: 0 10px 0 0;
    font-size: .88rem;
    color: #23282d;
    transition: all .2s;
    border: 1.5px solid transparent;
}

.vamc-fiche-equip-item:hover {
    border-color: #6ad8ca;
}

.vamc-fiche-equip-item::before {
    content: '\2713';
    color: #6ad8ca;
    font-weight: 700;
    font-size: 1rem;
}

.vamc-fiche-equip-note {
    font-size: .85rem;
    color: #888;
    margin-top: 10px;
}


/* ── Environment lists ── */

.vamc-fiche-env-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vamc-fiche-env-list li {
    font-size: .9rem;
    padding: 8px 0;
    border-bottom: 1px solid #f0e4e8;
    color: #444;
}

.vamc-fiche-env-list li:last-child {border-bottom:none}
.vamc-fiche-env-list strong {color:#23282d}
.vamc-fiche-env-list a {color:#c22e58;text-decoration:none}
.vamc-fiche-env-list a:hover {color:#6ad8ca}


/* ── Profil Match cards ── */

.vamc-profils {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.vamc-profil {
    border: 1.5px solid #f0e4e8;
    border-radius: 0 1.2rem 0 0;
    overflow: hidden;
    transition: border-color .2s;
}

.vamc-profil:hover {
    border-color: #6ad8ca;
}

.vamc-profil__header {
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    padding: 12px 16px;
    font-size: .9rem;
    font-weight: 700;
}

.vamc-profil__body {
    padding: 12px 16px;
    font-size: .85rem;
    color: #555;
    line-height: 1.5;
}

.vamc-fiche-saisons {
    font-size: .85rem;
    color: #888;
    margin-top: 8px;
}

.vamc-fiche-match {
    background: #edf9f7;
    color: #0cafa3;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    margin: 14px 0;
}


/* ── Contact form ── */

.vamc-fiche-contact {
    background: #fdf6f8;
    border-radius: 0 1.5rem 0 0;
    padding: 28px;
}

.vamc-fiche-prefill {
    background: #fff;
    border: 1.5px solid #f0e4e8;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vamc-fiche-prefill__name {
    font-weight: 700;
    font-size: .95rem;
    color: #23282d;
}

.vamc-fiche-prefill__meta {
    font-size: .82rem;
    color: #888;
}

.vamc-fiche-form-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.vamc-fiche-contact label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}

.vamc-fiche-contact input[type="text"],
.vamc-fiche-contact input[type="email"],
.vamc-fiche-contact input[type="tel"],
.vamc-fiche-contact input[type="number"],
.vamc-fiche-contact input[type="date"],
.vamc-fiche-contact textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #f0e4e8;
    border-radius: 0 .6rem 0 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: .9rem;
    color: #23282d;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}

.vamc-fiche-contact input:focus,
.vamc-fiche-contact textarea:focus {
    border-color: #6ad8ca;
}

.vamc-fiche-contact textarea {
    resize: vertical;
    min-height: 70px;
}

.vamc-fiche-contact .button {
    display: inline-block;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    border-radius: 0 12px 0 0;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 3px 12px rgba(194,46,88,.3);
    margin-top: 8px;
    transition: opacity .2s, transform .1s;
}

.vamc-fiche-contact .button:hover {opacity:.9}
.vamc-fiche-contact .button:active {transform:scale(.97)}

.vamc-fiche-login-hint {font-size:.82rem;color:#888;margin-top:12px}
.vamc-fiche-login-hint a {color:#c22e58;font-weight:500}


/* ── Related articles ── */

.vamc-fiche-related {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vamc-fiche-related-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0e4e8;
    text-decoration: none;
    color: #23282d;
    transition: background .15s;
}

.vamc-fiche-related-item:last-child {border-bottom:none}
.vamc-fiche-related-item:hover {background:#fdf6f8}

.vamc-fiche-related__thumb {
    width: 70px;
    height: 50px;
    min-width: 70px;
    border-radius: 6px;
    overflow: hidden;
}

.vamc-fiche-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vamc-fiche-related__title {
    font-size: .9rem;
    font-weight: 700;
    color: #c22e58;
    display: block;
}

.vamc-fiche-related__excerpt {
    font-size: .78rem;
    color: #888;
    display: block;
    margin-top: 3px;
}


/* ── Carte link ── */

.vamc-fiche-carte-link {
    text-align: center;
    margin: 28px auto;
}

.vamc-fiche-carte-link a {
    display: inline-block;
    background: linear-gradient(135deg, #c22e58, #e04584);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(194,46,88,.25);
    font-size: .9rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 0 12px 0 0;
    text-decoration: none;
    transition: all .2s;
}

.vamc-fiche-carte-link a:hover {
    background: linear-gradient(135deg, #6ad8ca, #5bc4b6);
    color: #fff;
    box-shadow: 0 2px 8px rgba(106,216,202,.3);
}


/* ── Video ── */

/* ── Map ── */

#vamc-fiche-map {
    border-radius: 0 1.5rem 0 0 !important;
    border: 1.5px solid #f0e4e8 !important;
}


/* ── Mobile ── */

@media (max-width: 768px) {
    .vamc-fiche-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 280px auto;
    }
    .vamc-fiche-gallery__thumbs {
        grid-template-rows: none;
        grid-template-columns: repeat(4, 1fr);
        height: 70px;
    }
    .vamc-fiche-equip-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vamc-profils {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .vamc-fiche-gallery {
        grid-template-rows: 220px auto;
    }
    .vamc-fiche-gallery__thumbs {
        grid-template-columns: repeat(3, 1fr);
        height: 60px;
    }
    .vamc-fiche-header {
        flex-direction: column;
        gap: 10px;
    }
    .vamc-fiche-prix {
        text-align: left;
        align-self: flex-start;
    }
    .vamc-fiche-header h1 {
        font-size: 1.4rem;
    }
    .vamc-fiche-equip-grid {
        grid-template-columns: 1fr;
    }
    .vamc-fiche-form-row2 {
        grid-template-columns: 1fr;
    }
    .vamc-fiche-contact {
        padding: 18px;
    }
    .vamc-profils {
        grid-template-columns: 1fr;
    }
    .vamc-fiche-header,
    .vamc-fiche-pills,
    .vamc-fiche-desc,
    .vamc-fiche-section,
    .vamc-fiche-carte-link,
    .vamc-fiche-breadcrumb,
    }

/* ══════════════════════════════════════════════════════════════
   VAMC CARTE HÉBERGEMENTS — Full width page
   Version: 1.0 — 22 mai 2026
   ══════════════════════════════════════════════════════════════ */

/* Hide Sage hero + sidebar on carte page */
.page-hebergements-dog-friendly #hero-img,
.page-hebergements-dog-friendly #atraveo-form,
.page-hebergements-dog-friendly #slider-nav,
.page-hebergements-dog-friendly .claim {display:none!important}
.page-hebergements-dog-friendly main#content>h1,
.page-hebergements-dog-friendly main#content>.page-header {display:none!important}
.page-hebergements-dog-friendly #sidebar {display:none!important}
.page-hebergements-dog-friendly main#content {margin-top:0!important;padding-top:0!important}
.page-hebergements-dog-friendly main#content .wrapper {max-width:none!important;padding:0!important;margin:0!important;width:100%!important}
.page-hebergements-dog-friendly main#content .wrapper>.grid-group {margin:0!important;padding:0!important;max-width:none!important;width:100%!important}
.page-hebergements-dog-friendly main#content .wrapper>.grid-group>.grid-box {padding:0!important;margin:0!important;max-width:none!important;width:100%!important;flex:0 0 100%!important}
.page-hebergements-dog-friendly main#content .entry-content {padding:0!important;margin:0!important}

/* Override shortcode defaults */
.vamc-carte-heb {
    max-width: none!important;
    padding: 0 40px;
}

.vamc-carte-top {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0!important;
}

#vamc-search {
    padding: 14px 18px 14px 42px!important;
    font-size: 1rem!important;
    border-width: 2px!important;
}

.vamc-carte-toggle {
    border-width: 2px!important;
}

.vamc-carte-toggle button {
    font-size: .88rem!important;
    padding: 10px 20px!important;
}

.vamc-carte-legend {
    max-width: 1200px;
    margin: 0 auto;
    font-size: .85rem!important;
    padding: 0 0 10px!important;
}

#vamc-heb-map {
    width: 100%!important;
    height: 700px!important;
    border-radius: 0!important;
    border-left: none!important;
    border-right: none!important;
}

.vamc-carte-count {
    max-width: 1200px;
    margin: 0 auto;
    font-size: .95rem!important;
    padding: 14px 0!important;
}

.vamc-carte-count strong {
    font-size: 1.1rem;
}

/* Leaflet popups bigger */
.leaflet-popup-content-wrapper {
    border-radius: 0 14px 0 0!important;
    box-shadow: 0 6px 24px rgba(0,0,0,.15)!important;
}

@media (max-width: 768px) {
    .vamc-carte-heb {
        padding: 0 16px;
    }
    #vamc-heb-map {
        height: 500px!important;
    }
}

@media (max-width: 480px) {
    .vamc-carte-heb {
        padding: 0 10px;
    }
    #vamc-heb-map {
        height: 400px!important;
    }
    .vamc-carte-toggle button {
        font-size: .78rem!important;
        padding: 7px 12px!important;
    }
}

/* ══════════════════════════════════════════════════════════════
   VAMC WUCHTIG OVERRIDES — Dashboard + Onboarding wider + bolder
   Version: 1.0 — 22 mai 2026
   ══════════════════════════════════════════════════════════════ */

/* Dashboard: 680 → 1080 */
.vamc-dash{max-width:1080px}

/* Dashboard title bigger */
.vamc-dash-title{font-size:clamp(1.4rem,3.5vw,1.8rem)}

/* Stats: 3 columns bigger */
.vamc-dash-stats{gap:14px}
.vamc-dash-stat{padding:24px 20px;border-radius:0 1.2rem 0 0;border:1.5px solid #f0e4e8}
.vamc-dash-stat__num{font-size:1.8rem}
.vamc-dash-stat__label{font-size:.82rem;margin-top:4px}

/* Status badge bigger */
.vamc-dash-statut{font-size:.85rem;padding:5px 14px;border-radius:0 10px 0 0}

/* Tabs wuchtiger */
.vamc-dash-tabs{border-bottom:3px solid #f0e4e8;margin-bottom:28px;gap:4px}
.vamc-dash-tab{padding:14px 24px;font-size:1rem}
.vamc-dash-tab.active::after{height:4px}
.vamc-dash-tab__badge{width:22px;height:22px;font-size:.72rem}

/* Aperçu card bigger */
.vamc-dash-apercu{padding:24px;border-radius:0 1.2rem 0 0;border-width:1.5px}
.vamc-dash-apercu__prix{font-size:1.2rem}

/* Inquiry cards bigger */
.vamc-dash-inquiry{padding:20px;border-radius:0 1rem 0 0}
.vamc-dash-inquiry__name{font-size:1rem}
.vamc-dash-inquiry__msg{font-size:.9rem}

/* Section titles bigger */
.vamc-dash-subtitle{font-size:clamp(1.05rem,2.8vw,1.2rem)}

/* Onboarding: 680 → 1080 */
.vamc-onboarding{max-width:1080px}

/* Step indicator wuchtiger */
.vamc-onboarding-steps{border-radius:0 1.2rem 0 0;border:1.5px solid #f0e4e8}
.vamc-onboarding-step{padding:18px 12px 16px}
.vamc-onboarding-step__num{width:34px;height:34px;font-size:.88rem}
.vamc-onboarding-step__label{font-size:.82rem}
.vamc-onboarding-step.active::after{height:4px}
.vamc-onboarding-step.done::after{height:4px}

/* Cards bigger */
.vamc-ob-card{border-radius:0 1.2rem 0 0}
.vamc-ob-card__header{padding:16px 24px;font-size:clamp(.95rem,2.5vw,1.05rem)}
.vamc-ob-card__body{padding:24px}

/* Form fields bigger */
.vamc-ob-input,.vamc-ob-select,.vamc-ob-textarea{padding:13px 16px;font-size:clamp(.92rem,2.5vw,.98rem);border-radius:0 .6rem 0 0}
.vamc-ob-label{font-size:.8rem;margin-bottom:6px}

/* Grid rows spacing */
.vamc-ob-row2{gap:16px}
.vamc-ob-row3{gap:14px}

/* Equipment checkboxes bigger */
.vamc-ob-equip{padding:14px 16px;font-size:clamp(.88rem,2vw,.95rem);border-radius:0 .6rem 0 0}
.vamc-ob-equip__tick{width:26px;height:26px;min-width:26px}

/* Photo upload bigger */
.vamc-ob-upload{padding:36px 24px;border-radius:0 1.2rem 0 0}
.vamc-ob-upload__text{font-size:clamp(.92rem,2.5vw,1rem)}

/* Preview bigger */
.vamc-ob-preview{padding:24px;border-radius:0 1.2rem 0 0}
.vamc-ob-preview__name{font-size:clamp(1.2rem,3vw,1.4rem)}
.vamc-ob-preview__price .amt{font-size:1.6rem}

/* Nav buttons bigger */
.vamc-ob-nav{gap:16px;margin-top:24px}
.vamc-ob-nav .vamc-btn-primary,.vamc-ob-nav .vamc-btn-back{padding:14px 28px;font-size:1rem;border-radius:0 .8rem 0 0}

/* Contact form in fiche bigger */
.vamc-fiche-contact{padding:32px 40px}
.vamc-fiche-contact .button{padding:14px 32px;font-size:1rem;border-radius:0 14px 0 0}

/* Profil cards bigger */
.vamc-profil__header{padding:14px 18px;font-size:.95rem}
.vamc-profil__body{padding:14px 18px;font-size:.88rem}

/* Equip grid 3 col on fiche */
.vamc-fiche-equip-item{padding:14px 16px;font-size:.92rem;border-radius:0 12px 0 0}

@media(max-width:768px){
    .vamc-dash-stats{grid-template-columns:1fr 1fr}
    .vamc-dash-stat{padding:18px 14px}
    .vamc-dash-stat__num{font-size:1.4rem}
    .vamc-dash-tab{padding:10px 14px;font-size:.88rem}
}

@media(max-width:560px){
    .vamc-dash-stats{grid-template-columns:1fr}
    .vamc-ob-card__body{padding:16px}
    .vamc-ob-card__header{padding:12px 16px}
    .vamc-fiche-contact{padding:20px}
}

/* ══════════════════════════════════════════════════════════════
   VAMC UNIFIED WIDTH — 1200px for ALL pages
   Account, Fiche, Carte, Onboarding, Dashboard
   Version: 1.0 — 25 mai 2026
   ══════════════════════════════════════════════════════════════ */

/* ── Mon Compte (Account) ── */
.vamc-compte-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ── Onboarding ── */
.vamc-onboarding {
    max-width: 1200px !important;
}

/* ── Dashboard Partenaire ── */
.vamc-dash {
    max-width: 1200px !important;
}

/* ── Fiche Hébergement — Gallery ── */
.vamc-fiche-gallery {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 24px;
    grid-template-rows: 460px !important;
}

/* ── Fiche Hébergement — Content sections ── */
.vamc-fiche-header,
.vamc-fiche-pills,
.vamc-fiche-desc,
.vamc-fiche-section,
.vamc-fiche-carte-link,
.vamc-fiche-breadcrumb,
/* ── Fiche — Contact form ── */
.vamc-fiche-contact {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ── Fiche — Map ── */
#vamc-fiche-map {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ── Carte Hébergements — Search + Legend + Count ── */
.vamc-carte-top {
    max-width: 1200px !important;
}
.vamc-carte-legend {
    max-width: 1200px !important;
}
.vamc-carte-count {
    max-width: 1200px !important;
}

/* ── Profile card wider ── */
.vamc-profile-card {
    max-width: 1200px;
}

/* ── Auth landing ── */
.vamc-auth-container {
    max-width: 440px;
}

/* ── Responsive ── */
@media(max-width:768px){
    .vamc-compte-container,
    .vamc-fiche-gallery,
    .vamc-fiche-header,
    .vamc-fiche-pills,
    .vamc-fiche-desc,
    .vamc-fiche-section,
    .vamc-fiche-carte-link,
    .vamc-fiche-breadcrumb,
    .vamc-fiche-gallery {
        grid-template-rows: 300px !important;
    }
}

@media(max-width:480px){
    .vamc-compte-container,
    .vamc-fiche-gallery,
    .vamc-fiche-header,
    .vamc-fiche-pills,
    .vamc-fiche-desc,
    .vamc-fiche-section,
    .vamc-fiche-carte-link,
    .vamc-fiche-breadcrumb,
    .vamc-fiche-gallery {
        grid-template-rows: 220px !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   VAMC EQUIP — Brush effect (white on rose)
   Version: 1.0 — 25 mai 2026
   ══════════════════════════════════════════════════════════════ */

.vamc-fiche-equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.vamc-fiche-equip-item {
    position: relative;
    padding: 14px 18px;
    color: #fff !important;
    font-size: .9rem;
    position: relative;
    z-index: 0;
    font-weight: 600;
    overflow: hidden;
    border: none !important;
    background: transparent !important;
    border-radius: 2px 14px 4px 2px;
    transition: transform .15s;
}

.vamc-fiche-equip-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #c22e58 0%, #e04584 60%, #c22e58 100%);
    border-radius: 2px 16px 4px 2px;
    transform: rotate(-0.5deg);
    z-index: -1;
}

.vamc-fiche-equip-item::after {
    content: '\2713';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    z-index: 1;
}

/* Remove old checkmark */
.vamc-fiche-equip-item:before {
    /* brush bg takes over */
}



/* Vary each brush slightly */
.vamc-fiche-equip-item:nth-child(2)::before { transform: rotate(0.3deg); border-radius: 4px 12px 2px 6px; }
.vamc-fiche-equip-item:nth-child(3)::before { transform: rotate(-0.8deg); border-radius: 2px 10px 6px 2px; }
.vamc-fiche-equip-item:nth-child(4)::before { transform: rotate(0.4deg); border-radius: 6px 14px 2px 4px; }
.vamc-fiche-equip-item:nth-child(5)::before { transform: rotate(-0.3deg); border-radius: 2px 8px 4px 12px; }
.vamc-fiche-equip-item:nth-child(6)::before { transform: rotate(0.6deg); border-radius: 4px 12px 8px 2px; }

.vamc-fiche-equip-item:hover {
    transform: scale(1.03);
}
.vamc-fiche-equip-item:hover::before {
    background: linear-gradient(135deg, #6ad8ca, #5bc4b6);
}

@media(max-width:768px){
    .vamc-fiche-equip-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px){
    .vamc-fiche-equip-grid { grid-template-columns: 1fr; }
}

/* ── Video ── */
.vamc-fiche-video {
    border-radius: 0 1.5rem 0 0;
    overflow: hidden;
    border: 1.5px solid #f0e4e8;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    background: #000;
    aspect-ratio: 16 / 9;
    margin: 24px 0;
}

.vamc-fiche-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
/* ══════════════════════════════════════════════════════════════
   VAMC CLS FIXES — append to vamc-compte.css
   Version: 1.0 — 2026-06-02
   Ziel: CLS 0.11 → unter 0.05 auf Mobile
   ══════════════════════════════════════════════════════════════ */

/* ── Fix 1: Header Stabilisierung
   Verhindert Jump wenn Mon Compte JS den Button-Text ändert
   (Spike ab 07.05.2026 = exakt nach Mon Compte Launch) ── */
header.overflow-x,
header.overflow-x #top-bar {
    min-height: 64px;
}

/* ── Fix 2: Mon Compte Button Breite reservieren
   "S'inscrire" → "Mon espace" → Nutzername: alle unterschiedlich breit
   min-width verhindert Reflow beim Text-Wechsel ── */
.sm-header_compte {
    display: inline-flex;
    align-items: center;
    min-width: 90px;
    height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Fix 3: Heart-Button — position:fixed statt sticky
   sticky + margin verursacht Layout-Shift; fixed ist aus dem Flow raus
   opacity:0 → .ready verhindert CLS beim initialen Paint ── */
.vamc-article-heart-wrap {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    margin: 0 !important;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.vamc-article-heart-wrap.ready {
    opacity: 1;
    pointer-events: all;
}

/* ── Fix 4: NProgress CSS (war in functions.php als wp_enqueue_style,
   jetzt direkt hier — spart einen extra HTTP Request) ── */
#nprogress .bar {
    background: #C22E58 !important;
    height: 3px;
}

#nprogress .peg {
    box-shadow: 0 0 10px #C22E58, 0 0 5px #C22E58;
}