body {
    font-family: 'Poppins', sans-serif;
}
.sidebar-link {
    transition: all 0.2s;
}
.sidebar-link:hover {
    background: #fce7f3;
    border-left: 4px solid #f472b6;
    padding-left: 1.25rem;
}
.sidebar-link.active {
    background: #fce7f3;
    border-left: 4px solid #f472b6;
    padding-left: 1.25rem;
    color: #ec4899;
    font-weight: 600;
}
.gallery-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====== Design "Gourmand Pop" — socle réutilisable (cf. CLAUDE.md > Refonte design) ====== */

.font-display {
    font-family: 'Playfair Display', serif;
}

.blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.cookie-card {
    border-radius: 2rem;
    border: 2px solid #fce7f3;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.cookie-card:hover {
    box-shadow: 0 12px 24px -8px rgba(236, 72, 153, .18);
    border-color: #f9a8d4;
}

.btn-pop {
    transition: background-color .2s ease, box-shadow .2s ease;
}
.btn-pop:hover {
    box-shadow: 0 6px 16px -4px rgba(190, 24, 93, .35);
}