/* Custom styles for the stylisme page */
.stylisme-section {
    padding: 2rem 0;
}

.sticky-image-container {
    position: sticky;
    top: 150px;
    align-self: flex-start;
}

.divider-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold-bolder), var(--border-gold-bolder));
    width: 60px;
    border-radius: 2px;
    margin-top: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.50rem 0;
    border-bottom: 1px solid var(--accent-gold);
    display: flex;
    align-items: flex-start;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--accent-gold-bolder);
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 2px;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-bold) 50%);
}

.cta-section .btn-primary {
    background: var(--accent-gold-bolder);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    color: var(--text-muted-bold);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 190, 190, 0.3);
}

.pricing-info {
    /*background-color: var(--accent-gold);*/
        border: none;
 background: linear-gradient(-135deg, var(--accent-gold) 0%, var(--accent-gold-bold) 50%);
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.pricing-info i {
    min-width: 16px;
    margin-top: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stylisme-section {
        padding: 2rem 0;
    }
    
    .sticky-image-container {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .cta-section .btn-primary {
        font-size: 16px;
        width: 100%;
        margin-top: 1rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}
