/**
 * 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(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.shakers-card:hover {
    border-color: rgba(212, 165, 116, 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(212, 165, 116, 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(255, 255, 255, 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;
}

.shakers-fut-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.shakers-fut-hero__number {
    font-size: 14px;
    color: var(--shakers-amber);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

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

.shakers-fut-hero__meta {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.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(255, 255, 255, 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(255, 255, 255, 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(212, 165, 116, 0.3);
}

.shakers-scroll-to-parts:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 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(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(212, 165, 116, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.1);
}

.shakers-vote-card__voters {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 0.15);
    border-color: var(--shakers-vote);
}

.shakers-card__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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;
}

.shakers-success-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.6) !important;
}

.shakers-success-timer {
    margin-top: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 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;
}

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

.shakers-tab {
    padding: 10px 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.4);
    margin-top: 4px;
    text-align: right;
}

.shakers-tasting__session {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 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(255, 255, 255, 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(255, 255, 255, 0.6);
}

.shakers-tasting__session-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.5);
    margin-top: 4px;
}

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

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

.shakers-parts-section {
    margin: 60px 0;
}

.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-grid {
    display: grid;
    grid-template-columns: repeat(3, 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 {
    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__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shakers-part-item__placeholder {
    width: 100%;
    height: 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);
}

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

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

/* ========================================
   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(212, 165, 116, 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(212, 165, 116, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.4);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

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

.shakers-chat-panel__input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 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);
}

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

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

.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(255, 255, 255, 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(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.shakers-past-vote__option-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 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(255, 255, 255, 0.6);
}

.shakers-past-vote__footer {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(212, 165, 116, 0.2) !important;
    border-radius: 12px !important;
}

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

.barrel-message.admin-reply {
    background: rgba(212, 165, 116, 0.1) !important;
    border-color: rgba(212, 165, 116, 0.3) !important;
}

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

.barrel-message-date {
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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(212, 165, 116, 0.4) !important;
}

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

.shakers-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
}

.shakers-quiz__info {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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(212, 165, 116, 0.4);
}

.shakers-fut-description__toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.03);
    border-left: 4px solid var(--shakers-amber);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.shakers-event-item:hover {
    background: rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(212, 165, 116, 0.4);
}

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

.shakers-event-btn--secondary:hover {
    background: rgba(255, 255, 255, 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(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.shakers-quiz-card:hover {
    background: rgba(255, 255, 255, 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__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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 0.1);
}

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

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

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

@media (max-width: 768px) {
    .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 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .shakers-tab {
        white-space: nowrap;
    }
}

/* ========================================
   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(253, 248, 240, 0.85) !important;
    margin-bottom: 32px;
}

.shakers-fut-description__content p {
    margin-bottom: 16px;
    color: rgba(253, 248, 240, 0.85) !important;
}

.shakers-fut-description__content * {
    color: rgba(253, 248, 240, 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(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 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(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.2s ease;
}

.shakers-spec-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 116, 0.3);
}

.shakers-spec-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(253, 248, 240, 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(26, 26, 26, 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(212, 165, 116, 0.3);
    text-transform: capitalize;
}

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

.shakers-calendar__event {
    background: rgba(26, 26, 26, 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(26, 26, 26, 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(253, 248, 240, 0.4);
    font-weight: 300;
}

.shakers-calendar__event-end {
    font-weight: 500;
    color: rgba(253, 248, 240, 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(212, 165, 116, 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(253, 248, 240, 0.7);
    line-height: 1.4;
}

.shakers-calendar-empty {
    background: rgba(26, 26, 26, 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(253, 248, 240, 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(26, 26, 26, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

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

.shakers-fut-card__image {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: rgba(26, 26, 26, 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(253, 248, 240, 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(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 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(253, 248, 240, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.shakers-futs-empty {
    background: rgba(26, 26, 26, 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(253, 248, 240, 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: white;
}

.shakers-banner__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--shakers-cream);
    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: rgba(253, 248, 240, 0.9);
    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(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 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(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateX(4px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 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(255, 255, 255, 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(212, 165, 116, 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(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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;
}

.barrel-fut-stats {
    color: rgba(255, 255, 255, 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(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.barrel-part-card-owned:hover {
    border-color: rgba(212, 165, 116, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 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(255, 255, 255, 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(212, 165, 116, 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(255, 255, 255, 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(212, 165, 116, 0.3);
}

.barrel-activate-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 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);
}

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

.shakers-part-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shakers-part-card:hover {
    border-color: rgba(212, 165, 116, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 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(255, 255, 255, 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;
    }
}
