/* ════════════════════════════════════════════════════════════════
   VIRIL CONCOURS — concours.css
   Galerie 2 colonnes + Formulaire inscription popup
   Style maquette (beige/noir/blanc)
   ════════════════════════════════════════════════════════════════ */

:root {
    /* Couleurs (mêmes que le site) */
    --color-primary: #1a1a1a;
    --color-secondary: #906543;
    --color-gold: #C9A84C;
    --color-bg-light: #f5f1e8;
    --color-text: #2d2d2d;
    --color-text-light: #6d6d6d;
    --color-border: #e8e0d5;
    --color-white: #ffffff;
    
    /* Typographie (mêmes que le site) */
    --font-serif: 'Playfair Display', serif;
    --font-cinzel: 'Cinzel', serif;
    --font-georgia: 'Georgia', serif;
    
    /* Espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ════════════════════════════════════════════════════════════════
   HEADER - Style identique à test.html
   ════════════════════════════════════════════════════════════════ */

header {
    background: var(--dark);
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255,158,109,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

.logo { display: flex; align-items: center; }

.logo-img { height: 48px; width: auto; }

.nav-center { display: flex; justify-content: center; flex: 1; }

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    transition: color 0.25s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header Image (loic NB.jpg) */
.header-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
}

/* ════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════ */

.concours-hero {
    background-image: url('baniere de luxe.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 6rem var(--spacing-lg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS COMMUNES
   ════════════════════════════════════════════════════════════════ */

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.3px;
}

section {
    padding: 4rem var(--spacing-lg);
}

section:nth-child(even) {
    background-color: var(--color-bg-light);
}

/* ════════════════════════════════════════════════════════════════
   SECTION INFO (Comment ça marche)
   ════════════════════════════════════════════════════════════════ */

.concours-info .section-title {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.info-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: 4px;
    border-top: 3px solid var(--color-gold);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-8px);
}

.info-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.info-item p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   SECTION CTA (S'inscrire)
   ════════════════════════════════════════════════════════════════ */

.concours-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 4rem var(--spacing-lg);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-inscrire {
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: var(--font-cinzel);
}

.btn-inscrire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.35);
}

/* ════════════════════════════════════════════════════════════════
   SECTION GALERIE (2 colonnes partout - ratio plus carré)
   ════════════════════════════════════════════════════════════════ */

.concours-galerie {
    background-color: var(--color-white);
    padding: 4rem var(--spacing-lg);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: 2rem;
}

.candidat-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.candidat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image plafonnée pour laisser toujours la place aux infos + boutons en dessous */
.candidat-image {
    width: 100%;
    aspect-ratio: 4 / 5; /* more square ratio */
    max-height: 260px;
    object-fit: cover;
    background-color: var(--color-border);
    flex-shrink: 0;
}

/* Ensure info area grows to fill remaining space */
.candidat-info {
    padding: var(--spacing-md);
    flex: 1 1 auto;
}

.candidat-info {
    padding: var(--spacing-md);
}

.candidat-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.candidat-votes {
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.candidat-rank {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.candidat-vote-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.candidat-vote-pct {
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 700;
}

.candidat-panier {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background: var(--color-bg-light);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--color-text-light);
}

/* ════════════════════════════════════════════════════════════════
   SECTION CLASSEMENT
   ════════════════════════════════════════════════════════════════ */

.concours-classement {
    background-color: var(--color-bg-light);
    padding: 4rem var(--spacing-lg);
}

.classement-list {
    max-width: 800px;
    margin: 2rem auto;
}

.classement-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 3px;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.classement-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.classement-rank {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    min-width: 40px;
    text-align: center;
}

.classement-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.classement-details {
    flex: 1;
}

.classement-name {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.classement-votes {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.classement-bar {
    width: 100%;
    height: 4px;
    background-color: var(--color-border);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.classement-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #906543 0%, #C9A84C 100%);
    border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════════
   POPUP INSCRIPTION
   ════════════════════════════════════════════════════════════════ */

.inscription-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.inscription-popup-overlay.active {
    display: flex;
}

.inscription-popup-content {
    background: var(--color-white);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: popupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.inscription-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.inscription-popup-close:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.inscription-popup-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.inscription-popup-header h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.inscription-popup-header p {
    margin: 0;
    opacity: 0.9;
}

/* ════════════════════════════════════════════════════════════════
   FORMULAIRE INSCRIPTION
   ════════════════════════════════════════════════════════════════ */

.inscription-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: 'Georgia', serif;
}

.word-count {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.error-msg {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-msg.show {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.05);
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed var(--color-border);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(245, 241, 232, 0.5);
}

.file-upload-area:hover {
    border-color: var(--color-gold);
    background-color: rgba(201, 168, 76, 0.05);
}

.file-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.file-upload-hint {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0.5rem 0 0 0;
}

.photos-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.photo-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--color-gold);
    color: var(--color-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Checkboxes */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 1rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-gold);
}

.checkbox-label span {
    flex: 1;
}

/* Form Actions */
.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: 2rem;
}

.btn {
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: 2rem;
    background-color: #e8f5e9;
    border-radius: 4px;
    color: #2e7d32;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    margin: 0.5rem 0;
    font-family: var(--font-serif);
}

.form-success-message p {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   POPUP DÉTAILS CANDIDAT
   ════════════════════════════════════════════════════════════════ */

.candidat-detail-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(6px);
    z-index: 5500;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.candidat-detail-popup-overlay.active {
    display: flex;
}

.candidat-detail-popup-content {
    background: var(--color-white);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: popupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.candidat-detail-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.candidat-detail-popup-close:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.candidat-detail-popup-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.candidat-detail-popup-header h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0 0 0.75rem 0;
}

.candidat-detail-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.candidat-detail-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.candidat-detail-popup-body {
    padding: 1.5rem 2rem 2rem;
}

.candidat-detail-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.candidat-detail-photo-main {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--color-border);
}

.candidat-detail-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.candidat-detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.candidat-detail-section h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0 0 1rem 0;
}

.candidat-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.candidat-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.candidat-detail-item .label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.candidat-detail-item .value {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.candidat-detail-presentation {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
    font-style: italic;
}

.candidat-detail-stats {
    display: flex;
    gap: 2rem;
}

.candidat-detail-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.candidat-detail-stat .stat-number {
    font-family: var(--font-cinzel);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.candidat-detail-stat .stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.candidat-detail-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.candidat-detail-actions .btn-share {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.candidat-detail-actions .btn-share:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.candidat-detail-actions .btn-voter {
    flex: 1;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-cinzel);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.candidat-detail-actions .btn-voter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

/* ════════════════════════════════════════════════════════════════
   POPUP VOTE
   ════════════════════════════════════════════════════════════════ */

.vote-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.vote-popup-overlay.active {
    display: flex;
}

.vote-popup-content {
    background: var(--color-white);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: popupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vote-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.vote-popup-close:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.vote-popup-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.vote-popup-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
}

.vote-popup-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.phone-input-group {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
    width: 100%;
}

/* Petite case indicatif — juste assez large pour "237" */
.country-code-input {
    flex: 0 0 72px;
    width: 72px;
    padding: 0.65rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    background: var(--color-bg-light);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.country-code-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Champ numéro — prend tout l'espace restant, bien visible */
.phone-number-input {
    flex: 1 1 0%;
    min-width: 0;
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    background: var(--color-white);
    font-size: 1rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.3;
}

.phone-number-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.country-select {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    background: var(--color-bg-light);
    font-size: 0.9rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.country-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

@media (max-width: 480px) {
    .country-code-input {
        flex: 0 0 60px;
        width: 60px;
        font-size: 0.85rem;
    }
}

.vote-popup-body {
    padding: 1.5rem 2rem 2rem;
}

.vote-candidate-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-bg-light);
    border-radius: 4px;
}

.vote-candidate-preview img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

.vote-candidate-info {
    flex: 1;
}

.vote-candidate-name {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.vote-candidate-votes {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.vote-packs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vote-pack {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.2s;
}

.vote-pack:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.vote-pack.selected {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.06);
}

.vote-pack-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.vote-pack-label {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.vote-pack-price {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.vote-free-option {
    text-align: center;
    margin-top: 0.5rem;
}

.vote-success-message {
    text-align: center;
    padding: 2rem;
    background-color: #e8f5e9;
    border-radius: 4px;
    color: #2e7d32;
}

.vote-success-message .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vote-success-message h3 {
    margin: 0.5rem 0;
    font-family: var(--font-serif);
}

.vote-success-message p {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

/* Boutons d'action sur les cartes */
.candidat-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 1rem 1rem;
    flex-wrap: wrap;
}

.candidat-card .btn-share {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.candidat-card .btn-share:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.candidat-card .btn-voter {
    flex: 1;
    padding: 0.75rem;
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.candidat-card .btn-voter {
    flex: 1;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-cinzel);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.candidat-card .btn-voter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

/* Bouton "Bientôt" (votes désactivés) */
.candidat-card .btn-soon {
    flex: 1;
    padding: 0.75rem;
    background: #ccc;
    color: #666;
    border: none;
    border-radius: 3px;
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Message de statut sur les cartes candidats */
.candidat-status-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.candidat-status-message .status-icon {
    font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   POPUP DE PARTAGE
   ════════════════════════════════════════════════════════════════ */

.share-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    z-index: 6000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.share-popup-overlay.active {
    display: flex;
}

.share-popup-content {
    background: var(--color-white);
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: popupIn 0.3s ease;
}

.share-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.share-popup-close:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.share-popup-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    color: var(--color-primary);
    text-align: center;
}

.share-popup-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
}

.share-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.share-popup-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.share-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.8rem;
    font-weight: 600;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    color: var(--color-white);
}

.share-btn.facebook {
    color: #1877F2;
    border-color: #1877F2;
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: var(--color-white);
}

.share-btn.copy {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.share-btn.copy:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.share-popup-link {
    margin-top: 1rem;
}

.share-popup-link input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--color-text);
    background: var(--color-bg-light);
}

/* Responsive pour le popup de partage */
@media (max-width: 480px) {
    .share-popup-buttons {
        flex-direction: column;
    }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

.concours-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem var(--spacing-lg) 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2.5rem 2rem;
        gap: 0;
        transition: left 0.4s ease;
        border-top: 1px solid rgba(255,158,109,0.15);
    }

    .nav-links.active { left: 0; }

    .nav-links li { width: 100%; }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 1.1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: center;
    }

    .menu-toggle { display: flex; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    /* Info grid: Toujours 2 colonnes sur mobile */
    .info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-md);
    }

    .info-item {
        padding: var(--spacing-md);
    }

    .info-number {
        font-size: 1.8rem;
    }

    .info-item h3 {
        font-size: 1rem;
    }

    .info-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .concours-hero {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .galerie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .candidat-card {
        min-height: 280px;
    }

    .candidat-image {
        aspect-ratio: 4 / 5;
        height: auto;
    }

    .inscription-popup-content {
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
    }
}

/* Mobile: 2 colonnes au lieu de 1 pour mieux voir les informations */
@media (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-md);
    }
    .candidat-card {
        min-height: 280px;
        max-height: none;
    }
    .candidat-image {
        aspect-ratio: 4 / 5;
        height: auto;
    }
    .candidat-info {
        padding: 0.75rem;
    }
    .candidat-name {
        font-size: 0.9rem;
    }
    .candidat-rank {
        font-size: 0.75rem;
    }
    .candidat-actions {
        padding: 0 0.75rem 0.75rem;
        gap: 0.5rem;
    }
    .candidat-card .btn-share {
        width: 32px;
        height: 32px;
    }
    .candidat-card .btn-voter {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem;
    }
    .candidat-card {
        min-height: 260px;
    }
    .candidat-name {
        font-size: 0.8rem;
    }
    .candidat-actions {
        padding: 0 0.5rem 0.5rem;
        gap: 0.4rem;
    }
    .candidat-card .btn-share {
        width: 28px;
        height: 28px;
    }
    .candidat-card .btn-voter {
        font-size: 0.65rem;
        padding: 0.4rem;
    }
}

/* ── Vote paiement en cours / erreur ── */
.vote-spinner {
    margin: 0 auto 1rem;
    width: 28px;
    height: 28px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: voteSpin 0.8s linear infinite;
}

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

/* ════════════════════════════════════════════════════════════════
   FORMULAIRE DE PAIEMENT (Mobile Money / Carte)
   ════════════════════════════════════════════════════════════════ */

.vote-payment-form {
    margin-bottom: 1.5rem;
}

.payment-method-selector {
    margin-bottom: 1.25rem;
}

.payment-method-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-size: 1rem;
}

.payment-method-options {
    display: flex;
    gap: 0.75rem;
}

.payment-method-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.25s ease;
}

.payment-method-btn:hover {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.05);
}

.payment-method-btn.active {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.payment-method-btn.disabled,
.payment-method-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    background: var(--color-bg-light);
}

.payment-method-btn.disabled:hover,
.payment-method-btn:disabled:hover {
    border-color: var(--color-border);
    background: var(--color-bg-light);
}

.method-soon {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    margin-top: 0.1rem;
}

.method-icon {
    font-size: 1.8rem;
}

.method-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Formulaire Mobile Money */
.mobile-money-form {
    margin-top: 1rem;
}

.mobile-money-form .form-group {
    margin-bottom: 1rem;
}

.mobile-money-form input {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-money-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.phone-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.operator-indicator {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

/* ── Sélecteur explicite d'opérateur (MTN / Orange / etc.) ── */
.provider-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.7rem;
}

.provider-btn {
    flex: 1 1 auto;
    min-width: 110px;
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.provider-btn:hover {
    border-color: var(--color-gold);
}

.provider-btn.active {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.12);
    color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}

/* Info paiement par carte */
.card-payment-info {
    padding: 1.25rem;
    background: var(--color-bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--color-gold);
}

.card-payment-info p {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive pour le formulaire de paiement */
@media (max-width: 480px) {
    .payment-method-options {
        flex-direction: column;
    }
    
    .payment-method-btn {
        flex-direction: row;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .method-icon {
        font-size: 1.4rem;
    }
}

/* ════════════════════════════════════════════════════════════════
   POPUP OFFRE PRODUIT (Après vote)
   ════════════════════════════════════════════════════════════════ */

.product-offer-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(6px);
    z-index: 6000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-offer-popup-overlay.active {
    display: flex;
}

.product-offer-popup-content {
    background: var(--color-white);
    max-width: 420px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: popupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.product-offer-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.product-offer-popup-close:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.product-offer-popup-header {
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    padding: 2rem;
    text-align: center;
}

.product-offer-popup-header svg {
    margin-bottom: 0.5rem;
}

.product-offer-popup-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin: 0.5rem 0;
    font-weight: 700;
}

.product-offer-popup-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.product-offer-popup-body {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.product-offer-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
}

.product-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-offer-info {
    flex: 1;
}

.product-offer-info h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-offer-price {
    font-family: var(--font-cinzel);
    font-size: 1.3rem;
    font-weight: 700;
    color: #906543;
}

.product-offer-delivery-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(144, 101, 67, 0.25);
    background: rgba(201, 168, 76, 0.12);
    color: #6a471f;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-commander {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #906543 0%, #C9A84C 100%);
    color: var(--color-white);
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-cinzel);
}

.btn-commander:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.35);
}

.btn-continuer {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    padding: 0.9rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-continuer:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Responsive pour le popup produit */
@media (max-width: 480px) {
    .product-offer-popup-body {
        flex-direction: column;
        text-align: center;
    }
    
    .product-offer-image {
        width: 100px;
        height: 100px;
    }
    
    .product-offer-popup-actions {
        flex-direction: column;
    }
    
    .btn-continuer {
        width: 100%;
    }
}
