/* salons.css — Page liste des salons (branding index / app.css) */

.salons-wrap {
    max-width: var(--container, 1200px);
    margin: 0 auto;
    padding: 20px 20px 100px;
}

@media (min-width: 769px) {
    .salons-wrap { padding: 28px 24px 56px; }
}

/* Contenu page (sans carte englobante) */
.salons-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Onglets Salons Officiel / Salon Privé — centré */
.salons-tabs-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.salons-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    max-width: min(100%, 420px);
    width: fit-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.salons-tabs::-webkit-scrollbar { display: none; }

.salons-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 1 1 0;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--text-soft);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.salons-tab i { font-size: 0.82rem; opacity: 0.9; }

.salons-tab:hover { color: var(--text); }

.salons-tab.active {
    background: var(--surface);
    color: var(--brand);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
    .salons-tab { padding: 8px 10px; font-size: 0.78rem; gap: 5px; }
    .salons-tabs-wrap { justify-content: center; padding: 0; }
    .salons-tabs { max-width: calc(100% - 8px); }
}

.room-place-link {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}
.room-place-link:hover { text-decoration: underline; }

.room-card.place-room .room-type-pill {
    background: #fff5f7;
    color: var(--brand);
    border-color: #fecdd3;
}

/* Barre recherche + filtres — centrés */
.salons-toolbar {
    padding: 4px 16px 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.salons-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 520px;
    padding: 0 14px;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg);
    transition: var(--transition);
}

.salons-search:focus-within {
    border-color: var(--brand);
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

.salons-search i {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.salons-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

.salons-search input::placeholder { color: var(--text-muted); }

.salons-filters-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: min(100%, 960px);
}

.salons-filters-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    padding: 2px 0;
}

/* Mobile : défilement horizontal */
@media (max-width: 767px) {
    .salons-filters-row {
        justify-content: flex-start;
        max-width: 100%;
        margin-left: -4px;
        margin-right: -4px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .salons-filters-container {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        padding-bottom: 4px;
    }

    .salons-filters-container::-webkit-scrollbar { display: none; }
}

/* Desktop : une seule ligne, centrée, sans retour à la ligne */
@media (min-width: 768px) {
    .salons-filters-container {
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: visible;
        overflow-y: visible;
    }
}

/* Filtres : styles dans app.css (.salons-filter-btn) */

.salons-view-toggle-btn {
    flex-shrink: 0;
}

/* Grille / liste des salons */
.rooms-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 0 0;
    overflow: visible;
}

@media (min-width: 768px) {
    .rooms-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}

@media (min-width: 1024px) {
    .rooms-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.rooms-list.list-view {
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Sections Salons officiels / Salons des lieux */
.salons-rooms-section-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 2px 2px;
    margin-top: 2px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
}

.salons-rooms-section-head i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    background: var(--brand-soft, rgba(255, 56, 92, 0.12));
    color: var(--brand);
    flex-shrink: 0;
}

.salons-rooms-separator {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 2px 6px;
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.salons-rooms-separator::before,
.salons-rooms-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.salons-rooms-separator span {
    flex-shrink: 0;
    padding: 0 2px;
}

/* État vide (aucun salon / aucun résultat) */
.rooms-list.is-empty {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 120px;
}

.salons-empty-state {
    width: 100%;
    max-width: 340px;
    margin: 8px auto 16px;
    padding: 22px 20px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.salons-empty-icon {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 10px;
}

.salons-empty-title {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.salons-empty-text {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.45;
}

/* Carte salon */
.room-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.room-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.room-card:active { transform: translateY(0); }

.room-card.boosted {
    overflow: visible;
    margin-top: 18px;
    border-radius: var(--r-md);
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow:
        0 10px 30px rgba(245, 158, 11, 0.1),
        0 2px 8px rgba(16, 24, 40, 0.04);
    background: linear-gradient(165deg, #ffffff 0%, #fffdf8 52%, #fff9ed 100%);
}

.room-card.boosted:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow:
        0 16px 38px rgba(245, 158, 11, 0.15),
        0 4px 14px rgba(16, 24, 40, 0.06);
}

.room-card.boosted::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(140px 90px at 0% 0%, rgba(251, 191, 36, 0.14), transparent 62%),
        radial-gradient(120px 80px at 100% 100%, rgba(255, 56, 92, 0.04), transparent 58%);
    pointer-events: none;
    z-index: 1;
}

.room-card.boosted .room-visual {
    border-top-left-radius: var(--r-md);
    border-top-right-radius: var(--r-md);
    overflow: hidden;
}

.room-card.boosted .room-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.28) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.room-boost-pin {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 6;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff8e1 0%, #fbbf24 42%, #d97706 100%);
    border: 3px solid #fff;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1;
    pointer-events: none;
    box-shadow:
        0 8px 22px rgba(217, 119, 6, 0.28),
        0 0 0 1px rgba(251, 191, 36, 0.28);
    animation: room-boost-pin-float 3.2s ease-in-out infinite;
}

.room-boost-pin i {
    display: block;
    transform: rotate(-24deg);
    filter: drop-shadow(0 1px 2px rgba(120, 53, 15, 0.22));
    animation: room-boost-rocket 3.2s ease-in-out infinite;
}

@keyframes room-boost-pin-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 5px)); }
}

@keyframes room-boost-rocket {
    0%, 100% { transform: rotate(-24deg) scale(1); }
    50% { transform: rotate(-14deg) scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
    .room-boost-pin,
    .room-boost-pin i { animation: none; }
}

.room-card.boosted .room-body {
    position: relative;
    z-index: 2;
    padding-top: 14px;
}

.room-card.boosted .room-badges,
.room-card.boosted .room-cover-img,
.room-card.boosted .room-emoji {
    position: relative;
    z-index: 2;
}

.room-card.closed { filter: grayscale(0.4); pointer-events: none; }

.room-card.closed::after {
    content: "Fermé";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    z-index: 4;
}

/* Visuel (photo ou emoji) */
.room-visual {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--brand-soft);
}

.room-visual--photo,
.room-visual--emoji,
.room-visual--lieu-icon {
    aspect-ratio: 16 / 10;
    min-height: 108px;
}

.room-visual--photo {
    background: var(--bg);
}

.room-visual--emoji,
.room-visual--lieu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-cover-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-visual--lieu-icon {
    background: var(--brand-soft, #ffe4ea);
    color: var(--brand, #ff385c);
    font-size: 1.65rem;
}

.room-emoji {
    font-size: 2.25rem;
    line-height: 1;
}

.room-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.room-lock-badge,
.room-vip-badge,
.room-new-badge,
.room-boost-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.room-lock-badge,
.room-vip-badge,
.room-new-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.65rem;
}

.room-lock-badge {
    top: 8px;
    right: 8px;
    background: rgba(31, 36, 48, 0.82);
    color: #fff;
}

.room-vip-badge {
    bottom: 8px;
    right: 8px;
    background: var(--gold);
    color: var(--text);
}

.room-new-badge {
    top: 8px;
    left: 8px;
    padding: 0 6px;
    width: auto;
    border-radius: var(--r-pill);
    background: var(--green);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
}

.room-boost-badge {
    display: none;
}

/* Corps carte */
.room-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 12px;
}

.room-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.room-name {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.room-by {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 2px;
}

.pill {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-dark);
    background: var(--brand-soft);
    border: 1px solid transparent;
    padding: 4px 9px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.pill.lock {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text-soft);
}

.hot {
    display: inline-flex;
    align-items: center;
    color: #ea580c;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Vue liste : vignette à gauche */
.rooms-list.list-view .room-card {
    flex-direction: row;
    align-items: stretch;
}

.rooms-list.list-view .room-visual {
    width: 72px;
    min-height: 72px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border-radius: 0;
}

.rooms-list.list-view .room-visual--photo,
.rooms-list.list-view .room-visual--emoji,
.rooms-list.list-view .room-visual--lieu-icon {
    min-height: 72px;
}

.rooms-list.list-view .room-emoji { font-size: 1.6rem; }

.rooms-list.list-view .room-body {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
}

.rooms-list.list-view .room-footer {
    margin-top: 4px;
}

/* Grille : visuels un peu plus hauts */
.rooms-list:not(.list-view) .room-visual--photo,
.rooms-list:not(.list-view) .room-visual--emoji,
.rooms-list:not(.list-view) .room-visual--lieu-icon {
    aspect-ratio: 4 / 3;
    min-height: 120px;
}

@media (min-width: 768px) {
    .rooms-list:not(.list-view) .room-visual--photo,
    .rooms-list:not(.list-view) .room-visual--emoji,
    .rooms-list:not(.list-view) .room-visual--lieu-icon {
        min-height: 130px;
    }
}

.room-type-pill {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Toast status */
.status {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    z-index: 10050;
    width: min(94vw, 480px);
    padding: 10px 14px;
    border-radius: var(--r-md);
    background: var(--surface);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    line-height: 1.35;
}

.status.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.status.err {
    border-color: rgba(225, 29, 72, 0.3);
    background: #fff;
    color: var(--brand-dark);
}

.status.ok {
    border-color: rgba(16, 185, 129, 0.35);
    color: #047857;
}

@media (min-width: 768px) {
    .status { bottom: 24px; }
}

/* Modales */
.page-salons .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, 0.45);
    backdrop-filter: blur(6px);
    z-index: 99999;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

@media (min-width: 560px) {
    .page-salons .modal-overlay {
        align-items: center;
        padding: 16px;
    }
}

.page-salons .modal-overlay.active { display: flex; }

.page-salons .modal-card {
    width: 100%;
    max-width: 500px;
    max-height: 92vh;
    background: var(--surface);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 560px) {
    .page-salons .modal-card { border-radius: var(--r-lg); max-height: 88vh; }
}

.page-salons .modal-head:not(.spiitz-modal-header) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.page-salons .modal-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.page-salons .salons-modal-progress {
    padding: 12px 18px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.page-salons .salons-modal-progress .wizard-steps {
    margin-bottom: 0;
}

.page-salons .salons-icon-btn,
.page-salons .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.page-salons .spiitz-modal-close.salons-icon-btn {
    width: 34px;
    height: 34px;
    background: var(--surface);
}

.page-salons .salons-icon-btn:hover,
.page-salons .icon-btn:hover,
.page-salons .spiitz-modal-close.salons-icon-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: #fff;
}

.page-salons .modal-body {
    padding: 16px 18px 18px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.page-salons .modal-desc {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
}

.page-salons .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.page-salons .field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.page-salons .field input,
.page-salons .field select {
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 11px 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: var(--surface);
    transition: var(--transition);
}

.page-salons .field input:focus,
.page-salons .field select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

/* Contenu + modals uniquement — pas la nav (Connexion / Inscription) */
.page-salons .salons-wrap .btn,
.page-salons .modal-overlay .btn {
    border: none;
    border-radius: var(--r-pill);
    padding: 11px 18px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.page-salons .salons-wrap .btn-primary,
.page-salons .modal-overlay .btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 56, 92, 0.25);
}

.page-salons .salons-wrap .btn-primary:hover,
.page-salons .modal-overlay .btn-primary:hover { background: var(--brand-dark); }

.page-salons .salons-wrap .btn-secondary,
.page-salons .modal-overlay .btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.page-salons .salons-wrap .btn-secondary:hover,
.page-salons .modal-overlay .btn-secondary:hover {
    border-color: var(--text-muted);
    background: var(--bg);
}

.page-salons .note {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin: 6px 0 0;
    line-height: 1.4;
}

.page-salons .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* Wizard création */
.wizard-steps {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.wizard-step-pill {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-soft);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: var(--r-pill);
}

.wizard-step-pill.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.wizard-pane { display: none; }
.wizard-pane.active { display: block; }

.wizard-nav {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.wizard-nav .right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.name-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
}

.name-row .limit {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.file-input {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.file-input input[type="file"] { display: none; }

.file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text);
    transition: var(--transition);
}

.file-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
}

.file-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 560px) {
    .theme-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.theme-tile {
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: var(--r-md);
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    transition: var(--transition);
    user-select: none;
}

.theme-tile:hover { border-color: var(--brand); background: var(--surface); }

.theme-tile.active {
    border-color: var(--brand);
    background: var(--brand-soft);
    box-shadow: 0 0 0 2px rgba(255, 56, 92, 0.12);
}

.theme-emoji { font-size: 1.25rem; line-height: 1; }

.ttl-fixed {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ttl-fixed small {
    color: var(--text-muted);
    font-weight: 500;
}

/* Premium modal — en-tête doré via .spiitz-modal-header--premium (app.css) */

.premium-sell-box {
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: var(--bg);
    border-radius: var(--r-md);
    padding: 12px 14px;
}

.premium-sell-title {
    margin: 0 0 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.premium-sell-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-sell-list li {
    display: flex;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.4;
}

.premium-sell-list i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-premium-cta {
    background: linear-gradient(135deg, var(--gold), #f59e0b) !important;
    color: var(--text) !important;
}

/* Index : section salons home */
.homefix-salons-section {
    padding-top: 8px;
}

.homefix-salons-section .homefix-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.homefix-section-link {
    flex-shrink: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.homefix-section-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.homefix-salons-section .rooms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px 14px;
    padding: 12px 0 0;
    background: transparent;
}

.homefix-salons-section .room-card {
    text-decoration: none;
}

@media (max-width: 767px) {
    .homefix-salons-section .rooms-list {
        grid-template-columns: 1fr;
    }
}
