.section-sf_customer_candles {
    padding: clamp(50px, 7vw, 100px) 10vw;
    padding-top: 0;
    background-color: var(--couleur-5);
    position: relative;
}

.section-sf_customer_candles .customer-candles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.section-sf_customer_candles .customer-candle-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.section-sf_customer_candles .customer-candle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.section-sf_customer_candles .customer-candles-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        #FBF6F0,
        #FBF6F0B2 70%,
        #FBF6F000 100%
    );
    z-index: 2;
    pointer-events: none;
}

.section-sf_customer_candles .customer-candles-text {
    margin-top: -100px;
    position: relative;
    z-index: 20;
    text-align: center;
}

.section-sf_customer_candles h2 {
    max-width: 50%;
    text-align: center;
    margin: 0 auto;
    font-family: var(--police-butler_regular);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--couleur-1);
}

.section-sf_customer_candles .sous-titre {
    color: var(--couleur-11);
    text-align: center;
    font-family: var(--police-worksans-semibold);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
    z-index: 10;
    text-transform: uppercase;
}

.section-sf_customer_candles .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px !important;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.section-sf_customer_candles .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-sf_customer_candles .social-links img {
    width: 44px;
    height: 44px;
    transition: opacity 0.3s ease;
}

.section-sf_customer_candles .social-links a:hover img {
    opacity: 0.8;
}

@media screen and (max-width: 1024px) {
    .section-sf_customer_candles .customer-candles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-sf_customer_candles .customer-candles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-sf_customer_candles .customer-candle-item:nth-child(n+5) {
        display: none;
    }

    .section-sf_customer_candles h2 {
        max-width: 100%;
        font-size: 25px;
    }
} 