/**
 * Les Shakers - Frontend Styles Modernisés
 * Basé sur le mockup React les-shakers-fut-mockup.jsx
 * Palette whisky/spiritueux avec design premium
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --shakers-amber: #D4A574;
    --shakers-amber-light: #E8C9A0;
    --shakers-amber-dark: #8B6914;
    --shakers-copper: #B87333;
    --shakers-oak: #8B4513;
    --shakers-charcoal: #1A1A1A;
    --shakers-cream: #FDF8F0;
    --shakers-gold: #FFD700;
    --shakers-live: #FF4444;
    --shakers-success: #4CAF50;
    --shakers-vote: #6366F1;
    --shakers-quiz: #F59E0B;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 68, 68, 0.6); }
}

/* ========================================
   COMPOSANTS DE BASE
   ======================================== */

.shakers-card {
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.shakers-card:hover {
    border-color: rgba(var(--shakers-amber-rgb), 0.4);
    transform: translateY(-2px);
}

.shakers-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    text-align: center;
}

.shakers-btn--primary {
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-copper) 100%);
    color: var(--shakers-charcoal);
}

.shakers-btn--primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(var(--shakers-amber-rgb), 0.4);
}

.shakers-btn--vote {
    background: linear-gradient(135deg, var(--shakers-vote) 0%, #8B5CF6 100%);
    color: white;
}

.shakers-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ========================================
   BADGES
   ======================================== */

.shakers-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.shakers-badge--live {
    background: var(--shakers-live);
    color: white;
    animation: pulse 2s infinite;
}

.shakers-badge__dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.shakers-badge--vote {
    background: var(--shakers-vote);
    color: white;
}

.shakers-badge--quiz {
    background: var(--shakers-quiz);
    color: white;
}

.shakers-badge--nft {
    background: rgba(76, 175, 80, 0.2);
    color: var(--shakers-success);
    border: 1px solid var(--shakers-success);
}

.shakers-badge--success {
    background: rgba(76, 175, 80, 0.2);
    color: var(--shakers-success);
}

.shakers-badge--closed {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.shakers-progress-bar {
    height: 8px;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.shakers-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--shakers-amber), var(--shakers-gold));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* ========================================
   ACTIVITY INDICATOR
   ======================================== */

.shakers-activity-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 30px;
    margin-bottom: 20px;
}

.shakers-activity-dot {
    width: 10px;
    height: 10px;
    background: var(--shakers-live);
    border-radius: 50%;
    animation: blink 1s infinite;
}

.shakers-activity-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--shakers-cream);
}

/* ========================================
   FUT HERO
   ======================================== */

.shakers-fut-hero {
    margin-bottom: 40px;
}

.shakers-fut-hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.shakers-fut-hero__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Texte pose sur une photo : contexte independant du theme.
   Les tokens de couleur servent le texte sur fond de page ; sur un voile
   sombre il faut du clair, que le producteur ait choisi un theme clair ou non. */
.shakers-fut-hero__overlay,
.shakers-banner__overlay {
    --shakers-on-media: #FFFFFF;
    --shakers-on-media-muted: rgba(255, 255, 255, 0.78);
}

.shakers-fut-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* Retrait haut genereux : le texte reste dans la partie dense du voile */
    padding: 90px 30px 30px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.75) 45%,
        rgba(0, 0, 0, 0.30) 75%,
        transparent 100%);
    color: var(--shakers-on-media);
}

.shakers-fut-hero__number {
    font-size: 14px;
    color: var(--shakers-on-media-muted);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.shakers-fut-hero__title {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
    color: var(--shakers-on-media);
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.shakers-fut-hero__meta {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--shakers-on-media-muted);
    margin-top: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.shakers-progress-card {
    padding: 20px;
}

.shakers-progress__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.shakers-progress__label {
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-progress__value {
    font-weight: 600;
    color: var(--shakers-amber);
}

.shakers-progress__info {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin-top: 10px;
    margin-bottom: 0;
}

.shakers-scroll-to-parts {
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-gold) 100%);
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--shakers-amber-rgb), 0.3);
}

.shakers-scroll-to-parts:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--shakers-amber-rgb), 0.5);
}

.shakers-scroll-to-parts:active {
    transform: translateY(0);
}

/* ========================================
   FUT HEADER BLOCK
   ======================================== */

.shakers-fut-header-block {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(var(--shakers-surface-rgb), 0.03) 100%);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 16px;
    margin-bottom: 40px;
}

.shakers-fut-header-block__image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shakers-fut-header-block__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shakers-fut-header-block__content {
    flex: 1;
}

.shakers-fut-header-block__number {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--shakers-amber);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shakers-fut-header-block__title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--shakers-cream);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.shakers-fut-header-block__description {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(var(--shakers-text-rgb), 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .shakers-fut-header-block {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .shakers-fut-header-block__image {
        width: 200px;
        height: 200px;
    }
    
    .shakers-fut-header-block__title {
        font-size: 32px;
    }
    
    .shakers-fut-header-block__description {
        font-size: 16px;
    }
}

/* ========================================
   LIVE CARD
   ======================================== */

.shakers-live-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #FF4444;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    animation: glow 3s infinite;
    padding: 0;
    margin-bottom: 20px;
}

.shakers-live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--shakers-live), #FF6B6B, var(--shakers-live));
    animation: pulse 1.5s infinite;
}

.shakers-live-card__inner {
    display: flex;
}

.shakers-live-card__video {
    width: 60%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.shakers-live-card__thumbnail {
    width: 200px;
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.shakers-live-card__play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shakers-live-card__play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 4px;
}

.shakers-live-card__content {
    flex: 1;
    padding: 20px;
}

.shakers-live-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.shakers-live-card__viewers {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-live-card__title {
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: var(--shakers-cream);
}

.shakers-live-card__host {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    margin: 0 0 16px 0;
}

/* ========================================
   VOTE CARD
   ======================================== */

.shakers-vote-card {
    padding: 24px;
    border: 1px solid #6366F1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    margin-bottom: 20px;
}

.shakers-vote-card--voted {
    border-color: #D4A574;
}

.shakers-vote-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.shakers-vote-card__question {
    font-size: 18px;
    margin: 12px 0 0 0;
    font-weight: 600;
    color: var(--shakers-cream);
}

.shakers-vote-card__countdown {
    text-align: right;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-countdown-label {
    margin-bottom: 4px;
}

.shakers-countdown-value {
    color: inherit;
    font-weight: 600;
    font-family: monospace;
}

.shakers-vote-card__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.shakers-vote-option {
    position: relative;
    padding: 14px 16px;
    background: rgba(var(--shakers-surface-rgb), 0.05);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    border-radius: 10px;
    color: var(--shakers-cream);
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    transition: all 0.2s;
}

.shakers-vote-option:hover:not(.shakers-vote-option--disabled) {
    border-color: var(--shakers-vote);
    background: rgba(99, 102, 241, 0.2);
}

.shakers-vote-option.shakers-vote-option--selected {
    background: rgba(99, 102, 241, 0.3);
    border: 2px solid var(--shakers-vote);
}

.shakers-vote-option--disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.shakers-vote-option__progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.15);
    transition: width 0.3s;
}

.shakers-vote-option__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shakers-vote-option__label {
    font-weight: 500;
}

.shakers-vote-option__stats {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-vote-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(var(--shakers-border-rgb), 0.1);
}

.shakers-vote-card__voters {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
}

/* Vote - Version compacte après avoir voté */
.shakers-vote-card--voted {
    padding: 16px 24px;
}

.shakers-vote-card__header-compact,
.shakers-quiz__header-compact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shakers-vote-card__header-top,
.shakers-quiz__header-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}

.shakers-vote-card__title-compact,
.shakers-quiz__title-compact {
    flex: 1;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz__points {
    font-size: 14px;
    font-weight: 600;
    color: var(--shakers-success);
    font-family: 'Outfit', sans-serif;
}

.shakers-card__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.shakers-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    font-family: 'Outfit', sans-serif;
}

.shakers-card__participants {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shakers-card__countdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shakers-vote-card__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    color: var(--shakers-cream);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shakers-vote-card__toggle:hover {
    background: rgba(var(--shakers-surface-rgb), 0.15);
    border-color: var(--shakers-vote);
}

.shakers-card__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    color: var(--shakers-cream);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shakers-card__close:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: #F44336;
    color: #F44336;
}

.shakers-vote-card__toggle-icon,
.shakers-quiz__toggle-icon {
    transition: all 0.2s ease;
}

.shakers-vote-card.expanded .shakers-vote-card__toggle-icon::before,
.shakers-quiz.expanded .shakers-quiz__toggle-icon::before {
    content: '−';
}

.shakers-vote-card__toggle-icon::before,
.shakers-quiz__toggle-icon::before {
    content: '+';
}

.shakers-vote-card__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.shakers-vote-card.expanded .shakers-vote-card__details {
    max-height: 1000px;
}

/* ========================================
   SUCCESS BANNER
   ======================================== */
.shakers-success-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2) 0%, rgba(39, 174, 96, 0.1) 100%);
    border: 2px solid #27ae60;
    border-radius: 8px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.shakers-success-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.shakers-success-banner.incorrect {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.1) 100%);
    border-color: #e74c3c;
}

.shakers-success-banner__icon {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    flex-shrink: 0;
}

.shakers-success-banner.incorrect .shakers-success-banner__icon {
    color: #e74c3c;
}

.shakers-success-banner__text {
    flex: 1;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.shakers-success-banner__close {
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shakers-success-banner__close:hover {
    background: rgba(var(--shakers-surface-rgb), 0.2);
    transform: translateX(3px);
}

/* Colorisation des réponses quiz */
.shakers-quiz__option.correct-answer {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.3) 0%, rgba(39, 174, 96, 0.1) 100%) !important;
    border-color: #27ae60 !important;
    border-width: 2px !important;
}

.shakers-quiz__option.wrong-answer {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3) 0%, rgba(231, 76, 60, 0.1) 100%) !important;
    border-color: #e74c3c !important;
    border-width: 2px !important;
}

/* Blocs de questions (quiz multi-questions) */
.shakers-quiz__block {
    padding: 15px 0;
}

.shakers-quiz__block + .shakers-quiz__block {
    border-top: 1px solid rgba(var(--shakers-amber-rgb), 0.15);
}

/* Mode question par question : une seule question visible à la fois */
.shakers-quiz__block--hidden {
    display: none;
}

.shakers-quiz__block--active {
    animation: slideIn 0.4s ease;
    border-top: none !important;
}

.shakers-quiz__block-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

/* Barre de progression du quiz */
.shakers-quiz__progress {
    margin: 15px 0 5px;
}

.shakers-quiz__progress-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--shakers-quiz);
    margin-bottom: 6px;
}

.shakers-quiz__progress-bar {
    height: 6px;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.shakers-quiz__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--shakers-quiz) 0%, #D97706 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Feedback immédiat bonne / mauvaise réponse */
.shakers-quiz__feedback {
    margin-top: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    animation: slideIn 0.4s ease;
}

.shakers-quiz__feedback--correct {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.shakers-quiz__feedback--wrong {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.shakers-quiz__question-number {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--shakers-quiz);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    margin-right: 8px;
}

/* Explication de la bonne réponse (affichée après validation) */
.shakers-quiz__explanation {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 12px;
    padding: 12px 15px;
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid var(--shakers-quiz);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(var(--shakers-text-rgb), 0.85);
    animation: slideIn 0.4s ease;
}

.shakers-quiz__explanation-icon {
    flex-shrink: 0;
}

.shakers-success-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shakers-success-close:hover {
    background: rgba(var(--shakers-surface-rgb), 0.2);
    transform: rotate(90deg);
}

.shakers-success-icon {
    width: 80px;
    height: 80px;
    background: var(--shakers-amber);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
    animation: shakers-scaleIn 0.5s ease;
}

.shakers-success-message.incorrect .shakers-success-icon {
    background: #e74c3c;
}

.shakers-success-message h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.shakers-success-message p {
    color: rgba(var(--shakers-text-rgb), 0.8);
    font-size: 16px;
    margin-bottom: 10px;
}

.xp-earned {
    font-size: 32px !important;
    font-weight: bold;
    color: var(--shakers-amber) !important;
    margin: 20px 0 !important;
}

.quiz-saved {
    font-size: 14px !important;
    color: rgba(var(--shakers-text-rgb), 0.6) !important;
}

.shakers-success-timer {
    margin-top: 30px;
    height: 4px;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.shakers-timer-bar {
    height: 100%;
    width: 100%;
    background: var(--shakers-amber);
    transition: width 10s linear;
}

@keyframes shakers-scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   TABS
   ======================================== */

.shakers-tabs-container {
    margin-top: 40px;
    padding: 24px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 16px;
}

.shakers-tabs {
    display: flex;
    border-bottom: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    margin-bottom: 24px;
}

/* Barre d'onglets defilante : les fleches encadrent la liste, qui glisse
   horizontalement au lieu de passer les libelles a la ligne */
.shakers-tabs-nav {
    display: flex;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    margin-bottom: 24px;
}

.shakers-tabs-nav .shakers-tabs {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    border-bottom: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.shakers-tabs-nav .shakers-tabs::-webkit-scrollbar {
    display: none;
}

.shakers-tabs-arrow {
    flex: 0 0 auto;
    align-self: center;
    display: none;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-bottom: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    color: var(--shakers-cream);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shakers-tabs-nav--scrollable .shakers-tabs-arrow {
    display: flex;
}

.shakers-tabs-arrow:hover:not(:disabled) {
    background: rgba(var(--shakers-amber-rgb), 0.2);
    border-color: var(--shakers-amber);
    color: var(--shakers-amber);
}

.shakers-tabs-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

.shakers-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 10px;
    background: transparent;
    border: none;
    color: rgba(var(--shakers-text-rgb), 0.6);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
}

.shakers-tab:hover {
    color: var(--shakers-cream);
}

.shakers-tab--active {
    color: var(--shakers-amber);
    border-bottom-color: var(--shakers-amber);
}

.shakers-tab__badge {
    margin-left: 4px;
    padding: 2px 6px;
    background: var(--shakers-amber);
    color: var(--shakers-charcoal);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    vertical-align: super;
    line-height: 1;
}

.shakers-tab-content {
    display: none;
    min-height: 300px;
}

.shakers-tab-content--active {
    display: block;
}

/* ========================================
   TASTING NOTES
   ======================================== */

.shakers-section-title {
    font-size: 16px;
    color: var(--shakers-amber);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.shakers-tasting__notes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shakers-tasting__item {
    margin-bottom: 8px;
}

.shakers-tasting__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.shakers-tasting__label {
    color: var(--shakers-cream);
}

.shakers-tasting__value {
    color: var(--shakers-amber);
}

.shakers-tasting__date {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(var(--shakers-text-rgb), 0.4);
    margin-top: 4px;
    text-align: right;
}

.shakers-tasting__session {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
}

.shakers-tasting__session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(var(--shakers-border-rgb), 0.1);
}

.shakers-tasting__session-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--shakers-amber);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.shakers-tasting__session-date {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-tasting__session-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.7);
    font-style: italic;
    margin: 0 0 16px 0;
}

/* ========================================
   PARTS LIST
   ======================================== */

.shakers-parts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shakers-part-card {
    padding: 20px;
}

.shakers-part-card__inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.shakers-part-card__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(var(--shakers-surface-rgb), 0.05);
}

.shakers-part-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shakers-part-card__content {
    flex: 1;
}

.shakers-part-card__number {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin-bottom: 4px;
}

.shakers-part-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--shakers-cream);
}

.shakers-part-card__code {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    margin-top: 4px;
}

/* ========================================
   TIMELINE
   ======================================== */

.shakers-timeline {
    position: relative;
    padding-left: 30px;
}

.shakers-timeline__line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--shakers-amber) 0%, transparent 100%);
}

.shakers-timeline__item {
    position: relative;
    margin-bottom: 30px;
}

.shakers-timeline__icon {
    position: absolute;
    left: -26px;
    width: 24px;
    height: 24px;
    background: var(--shakers-charcoal);
    border: 2px solid var(--shakers-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.shakers-timeline__content {
    padding: 16px 20px;
}

.shakers-timeline__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shakers-timeline__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--shakers-cream);
}

.shakers-timeline__author {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin-top: 4px;
}

.shakers-timeline__date {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--shakers-amber);
}

/* ========================================
   HORIZONTAL TIMELINE
   ======================================== */

.shakers-h-timeline {
    position: relative;
    margin: 20px 0 40px;
    font-family: 'Outfit', sans-serif;
    /* Couleurs de texte adaptées : lisibles sur fond clair comme sur fond sombre */
    --sht-text: #1A1A1A;
    --sht-text-muted: #55504A;
    --sht-line: rgba(26, 26, 26, 0.3);
}

.shakers-h-timeline__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 10px 0;
}

.shakers-h-timeline__track {
    position: relative;
    display: flex;
    align-items: stretch;
    /* Occupe 100% de la zone ; ne déborde (scroll) que si trop d'éléments */
    width: max-content;
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* La ligne traverse la piste à hauteur des points */
.shakers-h-timeline__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    height: 2px;
    background: var(--sht-line);
    border-radius: 2px;
}

/* ---- Événements : colonnes régulières, aucun chevauchement ---- */
.shakers-h-timeline__item {
    position: relative;
    /* Largeur mini 150px, s'étire pour remplir la zone si peu d'éléments */
    flex: 1 0 150px;
    padding: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.shakers-h-timeline__item-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--sht-text);
    height: 68px;
    max-width: 210px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    -webkit-box-pack: end;
    overflow: hidden;
    margin-bottom: 10px;
}

.shakers-h-timeline__item-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--sht-text-muted);
    border: 2px solid #fff;
}

.shakers-h-timeline__item-date {
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    color: var(--sht-text-muted);
    white-space: nowrap;
}

.shakers-h-timeline__item.is-past {
    opacity: 0.6;
}

/* ---- Quiz : seul le point jaune est affiché, colonne resserrée ---- */
.shakers-h-timeline__item--quiz {
    /* Largeur au plus juste : le point seul, sans espace superflu */
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 4px;
}

.shakers-h-timeline__item--quiz .shakers-h-timeline__item-title {
    /* Masqué mais conservé : garde l'alignement du point sur la ligne */
    visibility: hidden;
    width: 0;
    max-width: 0;
    margin-bottom: 10px;
}

.shakers-h-timeline__item--quiz .shakers-h-timeline__item-date {
    display: none;
}

/* ---- Lives et votes : points plus visibles ---- */
.shakers-h-timeline__item--live .shakers-h-timeline__item-dot,
.shakers-h-timeline__item--vote .shakers-h-timeline__item-dot {
    width: 20px;
    height: 20px;
    border-width: 3px;
    /* Compense l'agrandissement pour garder le point centré sur la ligne */
    margin-top: -4px;
    margin-bottom: -4px;
}

/* ---- Marqueur "Vous êtes ici" inséré entre passé et futur ---- */
.shakers-h-timeline__now {
    position: relative;
    flex: 1 0 170px;
    padding: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    box-sizing: border-box;
}

.shakers-h-timeline__now-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: #0B4C7A;
    height: 68px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px;
    white-space: nowrap;
}

.shakers-h-timeline__now-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #0B4C7A;
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(11, 76, 122, 0.18);
    animation: pulse 2s ease-in-out infinite;
}

.shakers-h-timeline__now-date {
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    color: #0B4C7A;
    white-space: nowrap;
}

/* ---- Légende ---- */
.shakers-h-timeline__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: center;
    margin-top: 16px;
}

.shakers-h-timeline__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sht-text-muted);
}

.shakers-h-timeline__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 768px) {
    .shakers-h-timeline__item {
        flex-basis: 130px;
    }
    .shakers-h-timeline__now-label {
        font-size: 20px;
    }
}

/* ========================================
   PARTS GRID (Available)
   ======================================== */

.shakers-parts-section {
    margin: 60px 0;
    padding: 24px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 16px;
}

@media (max-width: 768px) {
    .shakers-parts-section {
        padding: 16px;
    }
}

.shakers-parts-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shakers-parts-section__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--shakers-cream);
}

.shakers-parts-section__count {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--shakers-amber);
}

.shakers-parts-section__intro {
    margin: -10px 0 48px;
    max-width: 760px;
}

.shakers-parts-section__intro-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(var(--shakers-text-rgb), 0.8);
    margin: 0;
}

.shakers-parts-section__intro-notice {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--shakers-amber);
    margin: 14px 0 0;
    padding-left: 14px;
    border-left: 2px solid rgba(var(--shakers-amber-rgb), 0.5);
}

.shakers-parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .shakers-parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shakers-parts-grid {
        grid-template-columns: 1fr;
    }
}

.shakers-part-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.shakers-part-item__image {
    display: flex;
    justify-content: center;
}

.shakers-part-item__image img {
    width: 100%;
    height: auto;
    display: block;
}

.shakers-part-item__placeholder {
    width: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--shakers-oak) 0%, var(--shakers-charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shakers-part-item__number {
    font-size: 64px;
    font-weight: 700;
    color: var(--shakers-amber);
    opacity: 0.3;
}

.shakers-part-item__content {
    padding: 20px;
}

.shakers-part-item__title {
    font-size: 16px;
    margin: 0 0 16px 0;
    color: var(--shakers-cream);
}

/* Prix au-dessus, bouton en dessous : la carte est trop étroite
   sur une grille de 4 colonnes pour tenir les deux côte à côte */
.shakers-part-item__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.shakers-part-item__price {
    font-size: 24px;
    font-weight: 600;
    color: var(--shakers-amber);
    line-height: 1.2;
}

.shakers-part-item__footer .shakers-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
}

/* ========================================
   CHAT WIDGET
   ======================================== */

.shakers-chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-copper) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(var(--shakers-amber-rgb), 0.4);
    font-size: 24px;
    transition: transform 0.2s;
    z-index: 1000;
}

.shakers-chat-toggle:hover {
    transform: scale(1.1);
}

.shakers-chat-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 500px;
    background: var(--shakers-charcoal);
    border-radius: 16px;
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.shakers-chat-panel.show {
    display: flex;
}

.shakers-chat-panel__header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shakers-chat-panel__title {
    font-weight: 600;
    margin: 0;
    color: var(--shakers-cream);
}

.shakers-chat-panel__close {
    background: none;
    border: none;
    color: rgba(var(--shakers-text-rgb), 0.5);
    cursor: pointer;
    font-size: 18px;
}

.shakers-chat-panel__messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.shakers-chat-panel__empty {
    text-align: center;
    color: rgba(var(--shakers-text-rgb), 0.4);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.shakers-chat-panel__input-wrapper {
    padding: 16px;
    border-top: 1px solid rgba(var(--shakers-border-rgb), 0.1);
}

.shakers-chat-panel__input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(var(--shakers-surface-rgb), 0.05);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    border-radius: 8px;
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
}

.shakers-chat-panel__input:focus {
    border-color: var(--shakers-amber);
}

/* ========================================
   VOTES IMAGE
   ======================================== */

/* Options de vote avec images - shortcode [shakers_active_vote] */
.shakers-vote-card__options--image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.shakers-vote-option--image {
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    display: flex;
    flex-direction: column;
}

.shakers-vote-option--image:hover {
    border-color: var(--shakers-amber);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--shakers-amber-rgb), 0.3);
}

.shakers-vote-option--image.selected {
    border-color: var(--shakers-amber);
    box-shadow: 0 0 0 3px rgba(var(--shakers-amber-rgb), 0.3);
}

.shakers-vote-option__image-wrapper {
    position: relative;
}

.shakers-vote-option__zoom-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(230, 230, 230, 0.95);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
}

.shakers-vote-option__zoom-icon:hover {
    background: rgba(var(--shakers-surface-rgb), 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.shakers-vote-option__zoom-icon svg {
    width: 18px;
    height: 18px;
    stroke: #4a4a4a;
    fill: none;
}

.shakers-vote-option__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Lightbox pour images de vote */
.shakers-image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.shakers-image-lightbox.active {
    display: flex;
}

.shakers-image-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shakers-image-lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.shakers-image-lightbox__title {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    margin-top: 16px;
    text-align: center;
}

.shakers-image-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.shakers-image-lightbox__close:hover {
    transform: scale(1.2);
}

.shakers-vote-option__label-image {
    padding: 12px 16px;
    background: rgba(var(--shakers-bg-rgb), 0.9);
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Options de vote avec images - shortcode [barrel_voting] */
.barrel-vote-options-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.barrel-vote-option-image {
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(var(--shakers-surface-rgb), 0.03);
}

.barrel-vote-option-image:hover {
    border-color: var(--shakers-amber);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--shakers-amber-rgb), 0.3);
}

.barrel-vote-option-image input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.barrel-vote-option-image input[type="radio"]:checked + .barrel-option-image-wrapper {
    border-color: var(--shakers-amber);
}

.barrel-vote-option-image input[type="radio"]:checked + .barrel-option-image-wrapper::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--shakers-amber);
    color: var(--shakers-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
}

.barrel-option-image-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.barrel-option-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.barrel-option-image-wrapper .barrel-option-text {
    padding: 12px 16px;
    background: rgba(var(--shakers-bg-rgb), 0.9);
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Résultats avec images */
.barrel-result-image {
    display: flex;
    align-items: center;
    gap: 12px;
}

.barrel-result-compact-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.3);
    flex-shrink: 0;
}

.barrel-result-image .barrel-result-compact-header {
    flex: 1;
}

/* Responsive pour votes image */
@media (max-width: 768px) {
    .shakers-vote-card__options--image,
    .barrel-vote-options-image {
        gap: 16px;
    }
    
    .shakers-vote-option__image,
    .barrel-option-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .shakers-vote-card__options--image,
    .barrel-vote-options-image {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .shakers-vote-option__image,
    .barrel-option-image {
        height: 180px;
    }
    
    .barrel-result-compact-image {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   PAST VOTES
   ======================================== */

.shakers-past-votes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Grille pour votes passés avec images */
.shakers-past-vote__results--image {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    flex-direction: initial !important;
}

.shakers-past-vote__option--image {
    position: relative;
    border: 2px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    display: flex;
    flex-direction: column;
}

.shakers-past-vote__option--image.winner {
    border-color: #3B82F6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.shakers-past-vote__zoom-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(230, 230, 230, 0.95);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
}

.shakers-past-vote__zoom-icon:hover {
    background: rgba(var(--shakers-surface-rgb), 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.shakers-past-vote__zoom-icon svg {
    width: 18px;
    height: 18px;
    stroke: #4a4a4a;
    fill: none;
}

.shakers-past-vote__option-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.shakers-past-vote__option-content {
    padding: 12px;
    position: relative;
}

.shakers-past-vote__option--image .shakers-past-vote__option-label {
    font-weight: 600;
    color: var(--shakers-cream);
    margin-bottom: 8px;
    display: block;
}

.shakers-past-vote__option--image .shakers-past-vote__option-stats {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    margin-bottom: 8px;
    display: block;
}

.shakers-past-vote__option--image .shakers-past-vote__option-progress {
    position: relative;
    height: 4px;
    background: rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.shakers-past-vote__option--image .shakers-past-vote__option-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--shakers-amber);
}

/* Responsive pour votes passés image */
@media (max-width: 1024px) {
    .shakers-past-vote__results--image {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shakers-past-vote__results--image {
        grid-template-columns: 1fr;
    }
    
    .shakers-past-vote__option-image {
        height: 150px;
    }
}

.shakers-past-vote {
    padding: 20px;
}

.shakers-past-vote__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.shakers-past-vote__question {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--shakers-cream);
    flex: 1;
}

.shakers-past-vote__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.shakers-past-vote__date {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
}

.shakers-past-vote__results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.shakers-past-vote__option {
    position: relative;
    padding: 12px 14px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.shakers-past-vote__option-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(var(--shakers-amber-rgb), 0.15);
    transition: width 0.3s;
}

.shakers-past-vote__option-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shakers-past-vote__option-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--shakers-cream);
}

.shakers-past-vote__option-stats {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-past-vote__footer {
    padding-top: 12px;
    border-top: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
}

/* ========================================
   DISCUSSION OVERRIDE (Uniformisation)
   ======================================== */

/* Surcharger les styles de discussion pour uniformiser avec le thème whisky */
.barrel-discussion-container {
    background: transparent !important;
}

.barrel-discussion-messages {
    background: rgba(var(--shakers-surface-rgb), 0.03) !important;
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2) !important;
    border-radius: 12px !important;
}

.barrel-message {
    background: rgba(var(--shakers-surface-rgb), 0.05) !important;
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1) !important;
    border-radius: 8px !important;
    color: var(--shakers-cream) !important;
}

.barrel-message.admin-reply {
    background: rgba(var(--shakers-amber-rgb), 0.1) !important;
    border-color: rgba(var(--shakers-amber-rgb), 0.3) !important;
}

.barrel-message-author {
    color: var(--shakers-amber) !important;
    font-family: 'Outfit', sans-serif !important;
}

.barrel-message-date {
    color: rgba(var(--shakers-text-rgb), 0.5) !important;
    font-family: 'Outfit', sans-serif !important;
}

.barrel-message-text {
    color: var(--shakers-cream) !important;
    font-family: 'Outfit', sans-serif !important;
}

.barrel-discussion-form textarea {
    background: rgba(var(--shakers-surface-rgb), 0.95) !important;
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1) !important;
    border-radius: 8px !important;
    color: #000 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    padding: 8px 12px !important;
}

.barrel-discussion-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
}

.barrel-discussion-form textarea:focus {
    border-color: var(--shakers-amber) !important;
    outline: none !important;
    background: rgba(var(--shakers-surface-rgb), 1) !important;
    color: #000 !important;
}

.barrel-discussion-form button {
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-copper) 100%) !important;
    color: var(--shakers-charcoal) !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.barrel-discussion-form button:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 4px 20px rgba(var(--shakers-amber-rgb), 0.4) !important;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.shakers-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    font-family: 'Outfit', sans-serif;
}

.shakers-empty-state a {
    color: var(--shakers-amber);
    text-decoration: underline;
}

/* ========================================
   QUIZ
   ======================================== */

.shakers-quiz {
    border: 1px solid #F59E0B;
    padding: 24px;
    margin-bottom: 24px;
}

.shakers-quiz--answered {
    border-color: #D4A574;
    padding: 16px 24px;
}

.shakers-quiz__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.shakers-quiz__title {
    font-size: 18px;
    margin: 12px 0 0 0;
    font-weight: 600;
    color: var(--shakers-cream);
}

.shakers-quiz__reward {
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--shakers-quiz);
    font-family: 'Outfit', sans-serif;
}

.shakers-badge--quiz {
    background: rgba(245, 158, 11, 0.2);
    color: var(--shakers-quiz);
}

.shakers-quiz__question {
    font-size: 16px;
    margin: 16px 0;
    line-height: 1.5;
    color: var(--shakers-cream);
}

.shakers-quiz__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.shakers-quiz__option {
    padding: 14px;
    background: rgba(var(--shakers-surface-rgb), 0.05);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    border-radius: 10px;
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.shakers-quiz__option:hover {
    background: rgba(var(--shakers-surface-rgb), 0.08);
    border-color: var(--shakers-quiz);
}

.shakers-quiz__option.selected {
    background: rgba(245, 158, 11, 0.3);
    border: 2px solid var(--shakers-quiz);
}

.shakers-quiz__option--correct {
    background: rgba(76, 175, 80, 0.2) !important;
    border-color: var(--shakers-success) !important;
    color: var(--shakers-success) !important;
}

.shakers-quiz__option--wrong {
    background: rgba(244, 67, 54, 0.2) !important;
    border-color: #F44336 !important;
    color: #F44336 !important;
}

.shakers-quiz__option-icon {
    margin-right: 8px;
    font-weight: bold;
    font-size: 16px;
}

.shakers-quiz__options--answered .shakers-quiz__option {
    cursor: default;
}

.shakers-btn--quiz {
    background: linear-gradient(135deg, var(--shakers-quiz) 0%, #D97706 100%);
}

.shakers-btn--quiz:hover {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.shakers-quiz__result {
    margin: 12px 0;
}

.shakers-quiz__result-success,
.shakers-quiz__result-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
}

.shakers-quiz__result-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid var(--shakers-success);
}

.shakers-quiz__result-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid #F44336;
}

.shakers-quiz__result-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.shakers-quiz__result-success .shakers-quiz__result-icon {
    background: var(--shakers-success);
    color: white;
}

.shakers-quiz__result-error .shakers-quiz__result-icon {
    background: #F44336;
    color: white;
}

.shakers-quiz__result-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--shakers-cream);
}

.shakers-quiz__result-text {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.7);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz__info {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

/* Quiz répondu - Version compacte */
.shakers-quiz__answered-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.shakers-quiz__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    color: var(--shakers-cream);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shakers-quiz__toggle:hover {
    background: rgba(var(--shakers-surface-rgb), 0.15);
    border-color: var(--shakers-quiz);
}

.shakers-quiz__toggle-icon {
    transition: transform 0.2s ease;
}

.shakers-quiz.expanded .shakers-quiz__toggle-icon {
    transform: rotate(45deg);
}

.shakers-quiz__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.shakers-quiz.expanded .shakers-quiz__details {
    max-height: 1000px;
}

/* Quiz - Version compacte avant réponse */
.shakers-quiz__compact {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

.shakers-quiz__title-compact {
    flex: 1;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz__toggle-main {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    color: var(--shakers-cream);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shakers-quiz__toggle-main:hover {
    background: rgba(var(--shakers-surface-rgb), 0.15);
    border-color: var(--shakers-quiz);
}

.shakers-quiz__details-main {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.shakers-quiz.expanded .shakers-quiz__details-main {
    max-height: 1000px;
    margin-top: 20px;
}

.shakers-quiz.expanded .shakers-quiz__toggle-icon {
    transform: rotate(45deg);
}

.shakers-quiz--answered {
    padding: 16px 24px;
}

/* ========================================
   FUT DESCRIPTION
   ======================================== */

.shakers-fut-description {
    padding: 20px;
    margin-bottom: 24px;
}

.shakers-fut-description__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-copper) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shakers-fut-description__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(var(--shakers-amber-rgb), 0.4);
}

.shakers-fut-description__toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(var(--shakers-surface-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.shakers-fut-description.expanded .shakers-fut-description__toggle-icon {
    transform: rotate(45deg);
}

/* Styles retirés - la description est toujours visible dans l'onglet "Le Fût" */

.shakers-fut-description__text {
    color: rgba(var(--shakers-text-rgb), 0.8);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.shakers-fut-description__text p {
    margin-bottom: 12px;
}

/* ========================================
   UPCOMING EVENTS
   ======================================== */

.shakers-upcoming-events {
    padding: 24px;
    margin-bottom: 24px;
}

.shakers-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.shakers-event-item {
    padding: 20px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border-left: 4px solid var(--shakers-amber);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.shakers-event-item:hover {
    background: rgba(var(--shakers-surface-rgb), 0.05);
    transform: translateX(4px);
}

.shakers-event-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.shakers-event-item__type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.shakers-event-item__date {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    font-family: 'Outfit', sans-serif;
}

.shakers-event-item__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--shakers-cream);
}

.shakers-event-item__description {
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.7);
    margin: 8px 0;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
}

.shakers-event-item__extra {
    font-size: 13px;
    color: var(--shakers-amber);
    margin: 8px 0;
    font-family: 'Outfit', sans-serif;
}

.shakers-event-item__duration {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin: 8px 0;
    font-family: 'Outfit', sans-serif;
}

.shakers-event-item__actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.shakers-event-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-copper) 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
}

.shakers-event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--shakers-amber-rgb), 0.4);
}

.shakers-event-btn--secondary {
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
}

.shakers-event-btn--secondary:hover {
    background: rgba(var(--shakers-surface-rgb), 0.15);
}

/* ========================================
   MY QUIZZES
   ======================================== */

.shakers-my-quizzes {
    padding: 24px;
    margin-bottom: 24px;
}

.shakers-quizzes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.shakers-quiz-card {
    padding: 20px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border-radius: 12px;
    border: 2px solid rgba(var(--shakers-border-rgb), 0.1);
    transition: all 0.2s ease;
}

.shakers-quiz-card:hover {
    background: rgba(var(--shakers-surface-rgb), 0.05);
    transform: translateY(-2px);
}

.shakers-quiz-card--success {
    border-color: var(--shakers-success);
    background: rgba(76, 175, 80, 0.05);
}

.shakers-quiz-card--error {
    border-color: #F44336;
    background: rgba(244, 67, 54, 0.05);
}

.shakers-quiz-card--available {
    border-color: var(--shakers-quiz);
}

.shakers-quiz-card--upcoming {
    border-color: rgba(156, 163, 175, 0.3);
    background: rgba(var(--shakers-surface-rgb), 0.02);
    opacity: 0.7;
}

.shakers-quiz-card--upcoming:hover {
    transform: none;
    background: rgba(var(--shakers-surface-rgb), 0.02);
}

.shakers-quiz-card--upcoming .shakers-quiz-card__header {
    margin-bottom: 0;
}

.shakers-quiz-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.shakers-quiz-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0;
    color: var(--shakers-cream);
}

.shakers-quiz-card__meta {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    margin: 4px 0 0 0;
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz-card__points {
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--shakers-success);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz-card__reward {
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--shakers-quiz);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz-card__question {
    font-size: 15px;
    color: rgba(var(--shakers-text-rgb), 0.8);
    margin: 12px 0;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz-card__answers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0;
}

.shakers-quiz-answer {
    padding: 12px;
    background: rgba(var(--shakers-surface-rgb), 0.05);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shakers-quiz-answer--correct {
    background: rgba(76, 175, 80, 0.15);
    border-color: var(--shakers-success);
    color: var(--shakers-success);
}

.shakers-quiz-answer--wrong {
    background: rgba(244, 67, 54, 0.15);
    border-color: #F44336;
    color: #F44336;
}

.shakers-quiz-answer__icon {
    font-weight: bold;
    font-size: 16px;
}

.shakers-quiz-answer__label {
    font-size: 11px;
    opacity: 0.7;
    margin-left: auto;
}

.shakers-quiz-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(var(--shakers-border-rgb), 0.1);
}

.shakers-quiz-card__time {
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    font-family: 'Outfit', sans-serif;
}

.shakers-btn--small {
    padding: 6px 16px;
    font-size: 13px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .shakers-fut-hero__overlay {
        padding: 70px 20px 20px;
    }

    .shakers-fut-hero__title {
        font-size: 32px;
    }

    .shakers-live-card__inner {
        flex-direction: column;
    }

    .shakers-live-card__video {
        width: 100%;
    }
    
    .shakers-live-card__thumbnail {
        width: 100%;
        height: 200px;
    }

    .shakers-parts-grid {
        grid-template-columns: 1fr;
    }

    .shakers-chat-panel {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 90px;
    }

    .shakers-tabs-container {
        padding: 16px;
    }

    .shakers-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ========================================
   LE FÛT - DESCRIPTION & SPECS
   ======================================== */

.shakers-fut-description {
    padding: 20px 0;
}

.shakers-fut-description__content {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(var(--shakers-text-rgb), 0.85) !important;
    margin-bottom: 32px;
}

.shakers-fut-description__content p {
    margin-bottom: 16px;
    color: rgba(var(--shakers-text-rgb), 0.85) !important;
}

.shakers-fut-description__content * {
    color: rgba(var(--shakers-text-rgb), 0.85) !important;
}

.shakers-section-subtitle {
    font-size: 14px;
    color: var(--shakers-amber);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.shakers-fut-specs {
    margin-top: 32px;
    padding: 24px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
}

.shakers-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.shakers-spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: rgba(var(--shakers-surface-rgb), 0.02);
    border-radius: 8px;
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.1);
    transition: all 0.2s ease;
}

.shakers-spec-item:hover {
    background: rgba(var(--shakers-surface-rgb), 0.04);
    border-color: rgba(var(--shakers-amber-rgb), 0.3);
}

.shakers-spec-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.shakers-spec-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    color: var(--shakers-amber);
    font-weight: 600;
}

@media (max-width: 768px) {
    .shakers-specs-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ZONE D'ALERTE ÉVÉNEMENTS
   ============================================ */

.shakers-alert {
    position: relative;
    width: 100%;
    padding: 12px 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    display: block;
}

.shakers-alert:hover {
    transform: scale(1.01);
}

/* Live en cours - Rouge */
.shakers-alert--live {
    background: #FF4444;
}

/* Votes/Quiz en cours - Bleu */
.shakers-alert--event {
    background: #6366F1;
}

.shakers-alert__content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shakers-alert__text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white !important;
    line-height: 1.4;
    text-align: center;
    animation: subtle-zoom 5s ease-in-out infinite;
}

/* Animation zoom discret toutes les 5 secondes */
@keyframes subtle-zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.shakers-alert__text strong {
    font-weight: 600;
    color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .shakers-alert {
        padding: 10px 15px;
    }
    
    .shakers-alert__text {
        font-size: 13px;
    }
}

/* ============================================
   CALENDRIER DES ÉVÉNEMENTS
   ============================================ */

.shakers-calendar {
    background: rgba(var(--shakers-bg-rgb), 0.6);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.shakers-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.shakers-calendar__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--shakers-amber);
    margin: 0;
}

.shakers-calendar__export {
    display: flex;
    gap: 10px;
}

.shakers-calendar__export-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.shakers-calendar__export-btn--ical {
    background: var(--shakers-amber);
    color: #1A1A1A;
}

.shakers-calendar__export-btn--ical:hover {
    background: var(--shakers-amber-light);
    transform: translateY(-2px);
}

.shakers-calendar__month {
    margin-bottom: 40px;
}

.shakers-calendar__month:last-child {
    margin-bottom: 0;
}

.shakers-calendar__month-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--shakers-amber-light);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(var(--shakers-amber-rgb), 0.3);
    text-transform: capitalize;
}

.shakers-calendar__events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shakers-calendar__event {
    background: rgba(var(--shakers-bg-rgb), 0.6);
    border-radius: 6px;
    padding: 10px 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-left: 3px solid transparent;
}

.shakers-calendar__event:hover {
    background: rgba(var(--shakers-bg-rgb), 0.9);
    transform: translateX(5px);
}

.shakers-calendar__event-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.shakers-calendar__event-type {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 60px;
    justify-content: center;
    flex-shrink: 0;
}

.shakers-calendar__event-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--shakers-cream);
}

.shakers-calendar__event-start {
    font-weight: 600;
    color: var(--shakers-amber);
}

.shakers-calendar__event-separator {
    color: rgba(var(--shakers-text-rgb), 0.4);
    font-weight: 300;
}

.shakers-calendar__event-end {
    font-weight: 500;
    color: rgba(var(--shakers-text-rgb), 0.7);
}

.shakers-calendar__event-duration {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--shakers-amber-light);
    padding: 4px 10px;
    background: rgba(var(--shakers-amber-rgb), 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.shakers-calendar__event-info {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-left: 71px; /* Aligner avec le contenu (largeur étiquette + gap) */
}

.shakers-calendar__event-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--shakers-cream);
    line-height: 1.3;
}

.shakers-calendar__event-description {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(var(--shakers-text-rgb), 0.7);
    line-height: 1.4;
}

/* Bouton « Voir plus » : déplie les mois suivants */
.shakers-calendar__more-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 14px 20px;
    background: rgba(var(--shakers-amber-rgb), 0.12);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.4);
    border-radius: 10px;
    color: var(--shakers-amber-light);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shakers-calendar__more-btn:hover {
    background: rgba(var(--shakers-amber-rgb), 0.22);
    color: var(--shakers-amber);
}

.shakers-calendar.is-expanded .shakers-calendar__more-btn {
    margin-top: 0;
}

.shakers-calendar-empty {
    background: rgba(var(--shakers-bg-rgb), 0.6);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.shakers-calendar-empty p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .shakers-calendar {
        padding: 20px;
    }
    
    .shakers-calendar__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .shakers-calendar__title {
        font-size: 24px;
    }
    
    .shakers-calendar__export-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .shakers-calendar__month-title {
        font-size: 20px;
    }
    
    .shakers-calendar__event {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    
    .shakers-calendar__event-type {
        min-width: auto;
    }
    
    .shakers-calendar__event-dates {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-size: 12px;
    }
    
    .shakers-calendar__event-separator {
        display: none;
    }
    
    .shakers-calendar__event-duration {
        font-size: 11px;
    }
}

/* ============================================
   LECTEUR YOUTUBE PROGRAMMABLE
   ============================================ */

.shakers-youtube-player {
    margin: 30px 0;
}

.shakers-youtube-player__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--shakers-amber);
    margin: 0 0 20px 0;
    text-align: center;
}

.shakers-youtube-player__wrapper {
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.shakers-youtube-player__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   GRILLE DES FÛTS
   ============================================ */

.shakers-futs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.shakers-fut-card {
    background: rgba(var(--shakers-bg-rgb), 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
}

.shakers-fut-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: rgba(var(--shakers-amber-rgb), 0.5);
}

.shakers-fut-card__image {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: rgba(var(--shakers-bg-rgb), 0.9);
}

.shakers-fut-card__status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.shakers-fut-card__status--available {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.shakers-fut-card__status--ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: #1A1A1A;
}

.shakers-fut-card__status--complete {
    background: rgba(244, 67, 54, 0.9);
    color: white;
}

/* Pastilles d'activités en cours */
.shakers-fut-card__activities {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.shakers-fut-card__activities .shakers-activity-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-family: 'Outfit', sans-serif;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.shakers-fut-card__activities .shakers-activity-badge--live {
    background: rgba(255, 68, 68, 0.95) !important;
    background-color: rgba(255, 68, 68, 0.95) !important;
    color: white !important;
    animation: pulse-badge 2s infinite;
}

.shakers-fut-card__activities .shakers-activity-badge--vote {
    background: rgba(99, 102, 241, 0.95) !important;
    background-color: rgba(99, 102, 241, 0.95) !important;
    color: white !important;
}

.shakers-fut-card__activities .shakers-activity-badge--quiz {
    background: rgba(245, 158, 11, 0.95) !important;
    background-color: rgba(245, 158, 11, 0.95) !important;
    color: white !important;
}

.shakers-fut-card__activities .shakers-activity-badge__dot {
    width: 8px;
    height: 8px;
    background: white !important;
    background-color: white !important;
    border-radius: 50% !important;
    animation: blink-dot 1s infinite;
    display: inline-block;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.shakers-fut-card__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
}

.shakers-fut-card__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--shakers-amber) 0%, var(--shakers-gold) 100%);
    transition: width 0.3s ease;
}

.shakers-fut-card__content {
    padding: 24px;
}

.shakers-fut-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--shakers-cream);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.shakers-fut-card__distillery {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--shakers-amber);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.shakers-fut-card__description {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.7);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.shakers-fut-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-bottom: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    margin-bottom: 15px;
}

.shakers-fut-card__stat {
    text-align: center;
}

.shakers-fut-card__stat-value {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--shakers-amber);
    line-height: 1;
    margin-bottom: 5px;
}

.shakers-fut-card__stat-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shakers-fut-card__barrel-number {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.shakers-futs-empty {
    background: rgba(var(--shakers-bg-rgb), 0.6);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.shakers-futs-empty p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    margin: 0;
}

/* ============================================
   BANNIÈRES PUBLICITAIRES
   ============================================ */

.shakers-banner {
    position: relative;
    width: 100%;
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shakers-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.shakers-banner__link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.shakers-banner__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.shakers-banner:hover .shakers-banner__image {
    transform: scale(1.02);
}

.shakers-banner__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: var(--shakers-on-media);
}

.shakers-banner__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--shakers-on-media);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.shakers-banner__description {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--shakers-on-media-muted);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Version compacte pour sidebar */
.shakers-banner--compact {
    margin: 20px 0;
}

.shakers-banner--compact .shakers-banner__title {
    font-size: 20px;
}

.shakers-banner--compact .shakers-banner__description {
    font-size: 14px;
}

.shakers-banner--compact .shakers-banner__overlay {
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .shakers-banner {
        margin: 20px 0;
        border-radius: 12px;
    }
    
    .shakers-banner__overlay {
        padding: 20px;
    }
    
    .shakers-banner__title {
        font-size: 22px;
    }
    
    .shakers-banner__description {
        font-size: 14px;
    }
}

/* ============================================
   PROCHAIN ÉVÉNEMENT - VERSION SIMPLE
   ============================================ */

.shakers-next-event-simple {
    display: block;
    margin: 30px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(var(--shakers-surface-rgb), 0.03) 0%, rgba(var(--shakers-surface-rgb), 0.01) 100%);
    border-left: 3px solid var(--shakers-amber);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.shakers-next-event-simple:hover {
    background: linear-gradient(135deg, rgba(var(--shakers-surface-rgb), 0.05) 0%, rgba(var(--shakers-surface-rgb), 0.02) 100%);
    transform: translateX(4px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(var(--shakers-amber-rgb), 0.15);
}

.shakers-next-event-link {
    position: relative;
}

.shakers-next-event-link::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--shakers-amber);
    opacity: 0;
    transition: all 0.3s ease;
}

.shakers-next-event-link:hover::after {
    opacity: 1;
    right: 20px;
}

.shakers-next-event-simple__label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--shakers-amber) !important;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.shakers-next-event-simple__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: white !important;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.shakers-next-event-simple__date {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--shakers-text-rgb), 0.7) !important;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .shakers-next-event-simple__title {
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .shakers-futs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shakers-fut-card__image {
        height: 220px;
    }
    
    .shakers-fut-card__content {
        padding: 20px;
    }
    
    .shakers-fut-card__title {
        font-size: 20px;
    }
    
    .shakers-fut-card__stats {
        gap: 10px;
    }
    
    .shakers-fut-card__stat-value {
        font-size: 20px;
    }
}

/* ========================================
   SHORTCODE: ALL FUTS PARTS
   ======================================== */

.shakers-all-futs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.shakers-fut-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid rgba(var(--shakers-amber-rgb), 0.2);
}

.shakers-fut-section:last-child {
    border-bottom: none;
}

/* En-tête du fût */
.shakers-fut-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.shakers-fut-header__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shakers-fut-header__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.shakers-fut-header__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shakers-fut-header__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.shakers-fut-number {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--shakers-amber);
    text-transform: uppercase;
}

.shakers-fut-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shakers-fut-badge--available {
    background: rgba(76, 175, 80, 0.2);
    color: var(--shakers-success);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.shakers-fut-badge--sold-out {
    background: rgba(var(--shakers-surface-rgb), 0.1);
    color: rgba(var(--shakers-text-rgb), 0.5);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
}

.shakers-fut-header__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--shakers-cream);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.shakers-fut-header__details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.shakers-fut-detail {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-fut-detail:not(:last-child)::after {
    content: '•';
    margin-left: 12px;
    color: var(--shakers-amber);
}

.shakers-fut-header__description {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--shakers-text-rgb), 0.7);
    margin: 0 0 20px 0;
}

/* Barre de progression */
.shakers-fut-progress {
    margin-top: 20px;
}

.shakers-fut-progress__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
}

.shakers-fut-progress__label {
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-fut-progress__value {
    font-weight: 600;
    color: var(--shakers-amber);
}

/* ========================================
   BARREL USER PARTS - UNIFORMISATION
   ======================================== */
.barrel-user-parts {
    font-family: 'Outfit', sans-serif;
}

.barrel-user-parts h2 {
    color: var(--shakers-cream);
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.barrel-fut-section {
    margin-bottom: 40px;
}

.barrel-fut-section h3 {
    color: var(--shakers-amber);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* En-tête d'un parcours : logo producteur, nom, accès direct à la page */
.barrel-fut-identity {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 20px;
    margin-bottom: 16px;
    background: rgba(var(--shakers-surface-rgb), 0.04);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.3);
    border-radius: 12px;
}

.barrel-fut-identity__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(var(--shakers-surface-rgb), 0.06);
    padding: 6px;
    flex-shrink: 0;
}

.barrel-fut-identity__text {
    flex: 1;
    min-width: 180px;
}

.barrel-fut-identity__producer {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(var(--shakers-text-rgb), 0.6);
    margin-bottom: 2px;
}

.barrel-fut-identity__name {
    margin: 0 !important;
    font-size: 22px;
    font-weight: 600;
    color: var(--shakers-amber);
}

.barrel-fut-identity__link {
    color: var(--shakers-amber);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.5);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.barrel-fut-identity__link:hover {
    background: rgba(var(--shakers-amber-rgb), 0.15);
    color: var(--shakers-amber-light);
}

.barrel-fut-back {
    margin: 16px 0 0;
}

.barrel-fut-stats {
    color: rgba(var(--shakers-text-rgb), 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.barrel-parts-grid-current,
.barrel-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .barrel-parts-grid-current,
    .barrel-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .barrel-parts-grid-current,
    .barrel-compact-grid {
        grid-template-columns: 1fr;
    }
}

.barrel-part-card-owned {
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.barrel-part-card-owned:hover {
    border-color: rgba(var(--shakers-amber-rgb), 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--shakers-amber-rgb), 0.1);
}

.barrel-part-card-owned img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.barrel-part-content {
    padding: 15px;
}

.barrel-part-content h4 {
    color: var(--shakers-cream);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.barrel-part-code {
    color: rgba(var(--shakers-text-rgb), 0.6);
    font-size: 13px;
}

.barrel-part-code strong {
    color: var(--shakers-amber);
}

.barrel-separator {
    margin: 40px 0 30px;
    text-align: center;
    position: relative;
}

.barrel-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(var(--shakers-amber-rgb), 0.2);
}

.barrel-separator span {
    position: relative;
    background: var(--shakers-charcoal);
    padding: 0 20px;
    color: var(--shakers-amber);
    font-weight: 600;
    font-size: 16px;
}

.barrel-muted-legend {
    color: rgba(var(--shakers-text-rgb), 0.5);
    font-size: 13px;
    font-style: italic;
    margin-top: 15px;
}

.barrel-placeholder-card {
    border-style: dashed !important;
    opacity: 0.4;
}

.barrel-bottle-card {
    border-color: var(--shakers-amber) !important;
}

.barrel-activate-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--shakers-amber) 0%, var(--shakers-copper) 100%);
    color: var(--shakers-charcoal);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.barrel-activate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--shakers-amber-rgb), 0.3);
}

.barrel-activate-btn.disabled {
    background: rgba(var(--shakers-surface-rgb), 0.1);
    color: rgba(var(--shakers-text-rgb), 0.4);
    cursor: not-allowed;
}

.barrel-fut-link {
    color: var(--shakers-amber);
    text-decoration: none;
    transition: color 0.3s ease;
}

.barrel-fut-link:hover {
    color: var(--shakers-cream);
}

.barrel-part-card-owned-compact {
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.barrel-part-card-owned-compact:hover {
    border-color: rgba(var(--shakers-amber-rgb), 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--shakers-amber-rgb), 0.1);
}

.barrel-part-card-owned-compact img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.barrel-part-card-owned-compact .barrel-part-content.compact {
    padding: 12px;
}

.barrel-part-card-owned-compact .barrel-part-content.compact h4 {
    color: var(--shakers-cream);
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Grille des parts */
.shakers-parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shakers-part-card {
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shakers-part-card:hover {
    border-color: rgba(var(--shakers-amber-rgb), 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--shakers-amber-rgb), 0.2);
}

.shakers-part-card__visual {
    height: 180px;
    background: linear-gradient(135deg, var(--shakers-oak) 0%, var(--shakers-charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shakers-part-card__number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--shakers-amber);
    opacity: 0.4;
}

.shakers-part-card__content {
    padding: 20px;
}

.shakers-part-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--shakers-cream);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.shakers-part-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shakers-part-card__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--shakers-amber);
}

.shakers-btn-acquire {
    padding: 10px 20px;
    font-size: 14px;
}

.shakers-no-parts,
.shakers-no-futs {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .shakers-fut-header {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .shakers-fut-header__image img {
        height: 300px;
    }
    
    .shakers-fut-header__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .shakers-all-futs-container {
        padding: 20px 15px;
    }
    
    .shakers-fut-section {
        margin-bottom: 50px;
        padding-bottom: 40px;
    }
    
    .shakers-fut-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shakers-fut-header__image img {
        height: 250px;
    }
    
    .shakers-fut-header__title {
        font-size: 26px;
    }
    
    .shakers-parts-grid {
        grid-template-columns: 1fr;
    }
    
    .shakers-part-card__visual {
        height: 150px;
    }
    
    .shakers-part-card__number {
        font-size: 48px;
    }
}

/* ========================================
   ACCÈS RÉSERVÉ AUX DÉTENTEURS DE PARTS
   ======================================== */

.shakers-parts-gate {
    background: rgba(var(--shakers-amber-rgb), 0.08);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.shakers-parts-gate__message {
    font-size: 16px;
    color: rgba(var(--shakers-text-rgb), 0.85);
    margin: 0;
}

.shakers-parts-gate__link {
    display: inline-block;
    margin-left: 6px;
    color: var(--shakers-amber);
    font-weight: 600;
    text-decoration: underline;
}

.shakers-parts-gate__link:hover {
    color: var(--shakers-amber-light);
}

.shakers-parts-gate__hint {
    margin: 14px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--shakers-amber);
}

.shakers-parts-intro {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--shakers-text-rgb), 0.75);
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border-left: 3px solid var(--shakers-amber);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 0 0 24px;
}

.shakers-parts-intro strong {
    color: var(--shakers-amber);
}

.shakers-tab--locked::after {
    content: '🔒';
    margin-left: 6px;
    font-size: 11px;
    opacity: 0.7;
}

/* ========================================
   VIDÉOS
   ======================================== */

/* Groupes de vidéos : replays de lives et autres vidéos, sur deux niveaux distincts */
.shakers-videos__group {
    margin-bottom: 48px;
}

.shakers-videos__group:last-child {
    margin-bottom: 0;
}

.shakers-videos__group + .shakers-videos__group {
    padding-top: 32px;
    border-top: 1px solid rgba(var(--shakers-amber-rgb), 0.25);
}

.shakers-videos__group--domain .shakers-section-title {
    font-size: 0.9em;
    opacity: 0.95;
}

.shakers-videos__group-intro {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    margin: -6px 0 0;
}

.shakers-badge--replay {
    background: rgba(var(--shakers-amber-rgb), 0.2);
    color: var(--shakers-amber);
}

.shakers-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.shakers-video-card {
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shakers-video-card:hover {
    background: rgba(var(--shakers-surface-rgb), 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.shakers-video-card__player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    background: #000;
}

.shakers-video-card__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Support pour FitVids wrapper */
.shakers-video-card__player .fluid-width-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 !important;
}

.shakers-video-card__player .fluid-width-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shakers-video-card__content {
    padding: 20px;
}

.shakers-video-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--shakers-cream);
    margin: 0 0 12px 0;
    font-family: 'Cormorant Garamond', serif;
}

.shakers-video-card__description {
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.7);
    margin: 0 0 12px 0;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
}

.shakers-video-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.5);
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
    .shakers-videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PARTS DISPONIBLES : 4 PAR LIGNE + VOIR PLUS
   ======================================== */

.shakers-parts-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .shakers-parts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .shakers-parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shakers-parts-grid {
        grid-template-columns: 1fr;
    }
}

.shakers-parts-section__more-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 14px 20px;
    background: rgba(var(--shakers-amber-rgb), 0.12);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.4);
    border-radius: 10px;
    color: var(--shakers-amber-light);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shakers-parts-section__more-btn:hover {
    background: rgba(var(--shakers-amber-rgb), 0.22);
    color: var(--shakers-amber);
}

/* Le repli « Voir plus » doit tenir même si le thème redéfinit display */
.shakers-part-item--more[hidden],
.shakers-calendar__month--more[hidden] {
    display: none !important;
}

/* ========================================
   CONNEXION (bloc + popup)
   ======================================== */

.shakers-login-block {
    box-sizing: border-box;
    max-width: 460px;
    margin: 40px auto;
    padding: 32px;
    background: rgba(var(--shakers-surface-rgb), 0.03);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.2);
    border-radius: 16px;
}

.shakers-login__title {
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--shakers-cream);
    text-align: center;
}

.shakers-login__intro {
    margin: 0 0 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(var(--shakers-text-rgb), 0.7);
    text-align: center;
}

.shakers-login__field {
    margin-bottom: 16px;
}

.shakers-login__field label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--shakers-text-rgb), 0.8);
}

.shakers-login__field input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    background: rgba(var(--shakers-surface-rgb), 0.06);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    border-radius: 8px;
    color: var(--shakers-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.shakers-login__field input:focus {
    outline: none;
    border-color: var(--shakers-amber);
}

.shakers-login__hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(var(--shakers-text-rgb), 0.6);
}

.shakers-login__submit {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 13px 24px;
    background: var(--shakers-amber);
    border: none;
    border-radius: 8px;
    color: var(--shakers-charcoal);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shakers-login__submit:hover {
    filter: brightness(1.1);
    color: var(--shakers-charcoal);
}

.shakers-login__submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.shakers-login__switch {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(var(--shakers-text-rgb), 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.shakers-login__switch:hover {
    color: var(--shakers-amber);
}

.shakers-login__message {
    display: none;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    text-align: center;
}

.shakers-login__message--success {
    display: block;
    background: rgba(76, 175, 80, 0.12);
    color: #7BC67E;
}

.shakers-login__message--error {
    display: block;
    background: rgba(244, 67, 54, 0.12);
    color: #F08279;
}

.shakers-login__register {
    margin: 20px 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(var(--shakers-text-rgb), 0.6);
    text-align: center;
}

.shakers-login__register a {
    color: var(--shakers-amber);
}

/* Popup */
.shakers-login-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
}

.shakers-login-modal.is-open {
    display: block;
}

.shakers-login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.shakers-login-modal__dialog {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 40px);
    max-width: 440px;
    max-height: calc(100vh - 80px);
    margin: 8vh auto 0;
    padding: 36px 32px 32px;
    overflow-y: auto;
    background: var(--shakers-charcoal, #1A1A1A);
    border: 1px solid rgba(var(--shakers-amber-rgb), 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: shakers-scaleIn 0.2s ease;
}

.shakers-login-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--shakers-surface-rgb), 0.1);
    border: 1px solid rgba(var(--shakers-border-rgb), 0.2);
    border-radius: 50%;
    color: var(--shakers-cream);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shakers-login-modal__close:hover {
    border-color: var(--shakers-amber);
    color: var(--shakers-amber);
}

@media (max-width: 600px) {
    .shakers-login-block {
        padding: 24px;
    }

    .shakers-login-modal__dialog {
        margin-top: 4vh;
        padding: 32px 20px 24px;
    }
}
