/* Variables de couleurs Pop */
:root {
    --pop-pink: #ff6b6b;
    --pop-yellow: #ffd93d;
    --pop-blue: #6bc1ff;
    --pop-green: #6bffb3;
    --pop-dark: #2d3436;
    --pop-light: #fdfcf0;
}

body {
    background-color: var(--pop-light);
    color: var(--pop-dark);
    font-family: 'Lexend', sans-serif; /* Police moderne et arrondie */
}

/* Boutons très arrondis (Pill) */
.btn-pop {
    background-color: var(--pop-pink);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: bold;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pop:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    color: white;
}

/* Navbar personnalisée */
.navbar {
    border-radius: 0 0 30px 30px;
    background-color: white !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    background-color: var(--pop-yellow);
    border-radius: 0 0 80px 80px;
    padding: 120px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

/* Cartes de produits (pour l'étape suivante) */
.product-card {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Formes décoratives en arrière-plan */
.shape-blob {
    position: absolute;
    z-index: 0;
    opacity: 0.4;
}