


.article-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #cbc3b5;
}

.article-image img {
    background: white;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

}

.article-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

#buy-now-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.winners-section {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

/* ✅ Style pour les miniatures */
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.gallery-thumbnails img:hover {
    transform: scale(2.2);
}

/* ✅ Style pour l'overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.overlay-content {
    max-width: 100vw;
    max-height: 100vh;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.overlay-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
}
.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* ✅ Conteneur du partage */
.share-section {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.share-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ✅ Boutons de partage */
.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

/* 🔵 Facebook */
.fb { background-color: #1877F2; }
.fb:hover { background-color: #1558C7; }

/* 🟢 WhatsApp */
.wa { background-color: #25D366; }
.wa:hover { background-color: #1DA851; }

/* ⚫ X (Twitter) */
.tw { background-color: #000000; }
.tw:hover { background-color: #333333; }

/* 🎵 TikTok */
.tt { background: linear-gradient(135deg, #25F4EE, #FE2C55); }
.tt:hover { opacity: 0.8; }

/* Styles de la modale */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
}

.close-btn {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.terms {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
