body { font-family: Arial, sans-serif; margin:0; padding:0; }
h1, h2 { text-align: center; }

.boutiques, .produits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.boutique-card, .produit-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.2s;
}

.boutique-card:hover, .produit-card:hover {
    transform: scale(1.05);
}

.boutique-card img, .produit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
/* Menu déroulant */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4CAF50;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    flex-direction: column;
}

.dropdown-content a {
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #45a049;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown:hover .dropbtn {
    opacity: 0.7;
}
.live-section {
    margin-top: 30px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.live-section h3 {
    margin-bottom: 15px;
}

.live-btn, .live-btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 10px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.live-btn {
    background: #e91e63;
}

.live-btn:hover {
    background: #c2185b;
}

.live-btn-secondary {
    background: #3f51b5;
}

.live-btn-secondary:hover {
    background: #303f9f;
}
