/* =============================================
   STYLISTS SECTION
   ============================================= */

.stylists-section {
    background: var(--bg-section);
    padding: 7rem 0;
    overflow: hidden;
}

.stylists-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stylist-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.stylist-slider {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stylist-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: end;
}

.stylist-image {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.stylist-slide:hover .stylist-image img {
    transform: scale(1.04);
}

.stylist-content {
    background: var(--bg-card);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.stylist-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 2rem;
}

.stylist-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stylist-role {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stylist-bio {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stylist-exp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
}

/* Slider navigation */
.slider-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.2s ease, border-color 0.2s ease;
    background: none;
}

.slider-btn:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
}

.slider-btn svg { width: 16px; height: 16px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s ease, width 0.2s ease;
    cursor: pointer;
    border: none;
}

.slider-dot.active {
    background: var(--text-dark);
    width: 20px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .stylist-slide {
        grid-template-columns: 1fr;
    }

    .stylist-image {
        height: 280px;
    }

    .stylist-content {
        padding: 2rem 1.5rem;
    }

    .stylist-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .stylist-name { font-size: 1.5rem; }
}

