/* salons.css — Styles spécifiques à la page Nos Salons */

/* ===== SECTIONS ===== */
.salon-section { background: var(--mpat-bg); }
.salon-section-alt { background: var(--mpat-bg-2); }

/* ===== SECTION HEADER ===== */
.salon-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.salon-section-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--grad-pink);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
}
.salon-section-num-purple {
    background: var(--grad-purple);
    box-shadow: 0 8px 25px rgba(123, 45, 139, 0.35);
}

/* Status badge */
.salon-status-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

/* ===== SALON PHOTO ===== */
.salon-photo-wrap { position: relative; }
.salon-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.salon-photo-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 8px 32px rgba(123, 45, 139, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.1);
}

/* ===== INFO CARDS ===== */
.salon-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    border: 1px solid rgba(233, 30, 140, 0.1);
    box-shadow: var(--glass-shadow);
    transition: box-shadow 0.2s ease;
}
.salon-info-card:hover {
    box-shadow: 0 12px 40px rgba(123, 45, 139, 0.12);
}
.salon-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--mpat-pink-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--mpat-pink);
}
.salon-info-icon svg,
.salon-info-icon i { width: 20px; height: 20px; }
.salon-info-icon-purple {
    background: #f3e8ff;
    color: var(--mpat-purple);
}

/* ===== HORAIRES INLINE ===== */
.hours-row-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(233, 30, 140, 0.07);
    font-size: 0.875rem;
}
.hours-row-item:last-child { border-bottom: none; }
.hours-day { color: var(--mpat-text-light); }
.hours-time { color: var(--mpat-text); font-weight: 500; }
.hours-time.highlight { color: var(--mpat-pink); font-weight: 600; }

/* ===== TRANSPORT ===== */
.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--mpat-text-light);
    line-height: 1.5;
}
.transport-icon {
    width: 16px;
    height: 16px;
    color: var(--mpat-pink);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ===== MAP EMBED ===== */
.map-embed {
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(233, 30, 140, 0.1);
}
.map-embed iframe { display: block; border: 0; }

/* ===== FULL HOURS TABLE ===== */
.hours-full-table { width: 100%; }
.hours-full-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(233, 30, 140, 0.07);
    font-size: 0.875rem;
    color: var(--mpat-text);
    align-items: center;
    transition: background 0.15s;
}
.hours-full-row:last-child { border-bottom: none; }
.hours-full-row:hover { background: rgba(233, 30, 140, 0.025); }
.hours-full-header {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mpat-text-light);
    background: rgba(233, 30, 140, 0.04);
}
.hours-full-header:hover { background: rgba(233, 30, 140, 0.04); }
.hours-status-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--mpat-pink-pale);
    padding: 14px 24px;
    font-size: 0.875rem;
    color: var(--mpat-text-light);
}
