/* ===== BANDEROLE SAINT-VALENTIN ===== */
.valentine-banner {
    background: linear-gradient(135deg, #b8424a 0%, #8e2a32 100%);
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    box-shadow: 0 3px 15px rgba(142, 42, 50, 0.3);
    z-index: 999;
    animation: valentineSlideDown 0.5s ease-out;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.valentine-banner:hover {
    background: linear-gradient(135deg, #c94f57 0%, #a33640 100%);
    box-shadow: 0 4px 20px rgba(142, 42, 50, 0.4);
}

@keyframes valentineSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.valentine-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #fff;
    position: relative;
}

.valentine-banner .banner-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.valentine-banner .banner-text {
    flex: 1;
}

.valentine-banner .banner-text h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.valentine-banner .banner-text p {
    margin: 0.3rem 0 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.valentine-banner .banner-cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.valentine-banner:hover .banner-cta {
    background: rgba(255, 255, 255, 0.3);
}

.valentine-banner .banner-hearts {
    display: flex;
    gap: 0.4rem;
}

.valentine-banner .floating-heart {
    font-size: 1.1rem;
    opacity: 0.8;
    animation: valentinePulse 2.5s ease-in-out infinite;
}

.valentine-banner .floating-heart:nth-child(2) {
    animation-delay: 0.4s;
}

.valentine-banner .floating-heart:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes valentinePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ===== POPUP SAINT-VALENTIN ===== */
.valentine-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: valentineFadeIn 0.3s ease;
    backdrop-filter: blur(3px);
}

.valentine-overlay.active {
    display: flex;
}

@keyframes valentineFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.valentine-modal {
    background: #fffaf8;
    border-radius: 12px;
    max-width: 480px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 50px rgba(142, 42, 50, 0.25);
    animation: valentineModalIn 0.35s ease;
}

@keyframes valentineModalIn {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.valentine-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    line-height: 1;
}

.valentine-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.valentine-header {
    background: linear-gradient(135deg, #b8424a 0%, #8e2a32 100%);
    color: #fff;
    padding: 1.8rem 2rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.valentine-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.valentine-subtitle {
    margin: 0.6rem 0 0;
    opacity: 0.95;
    font-size: 1rem;
    font-style: italic;
}

.valentine-content {
    padding: 1.8rem 2rem;
}

.valentine-section {
    margin-bottom: 1.3rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #f0e0dc;
}

.valentine-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.valentine-section h3 {
    color: #8e2a32;
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.valentine-section p {
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.valentine-section em {
    color: #888;
    font-size: 0.85rem;
}

.valentine-price {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.1rem;
    background: linear-gradient(135deg, #fff5f3 0%, #ffeae6 100%);
    border-radius: 8px;
    border: 1px solid #f5ddd8;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.valentine-price span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8e2a32;
}

.valentine-price small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.valentine-footer {
    background: #faf5f4;
    padding: 1.3rem;
    text-align: center;
    border-top: 1px solid #f0e0dc;
    border-radius: 0 0 12px 12px;
}

.valentine-footer p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.95rem;
}

.valentine-footer a {
    color: #8e2a32;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.valentine-footer a:hover {
    color: #b8424a;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .valentine-banner {
        padding: 0.9rem 1rem;
    }

    .valentine-banner .banner-content {
        gap: 1rem;
    }

    .valentine-banner .banner-icon {
        font-size: 1.8rem;
    }

    .valentine-banner .banner-text h2 {
        font-size: 1.05rem;
    }

    .valentine-banner .banner-text p {
        font-size: 0.85rem;
    }

    .valentine-banner .banner-hearts {
        display: none;
    }

    .valentine-header h2 {
        font-size: 1.3rem;
    }

    .valentine-content {
        padding: 1.4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .valentine-banner .banner-icon {
        font-size: 1.5rem;
    }

    .valentine-banner .banner-text h2 {
        font-size: 0.95rem;
    }

    .valentine-banner .banner-text p {
        font-size: 0.8rem;
    }

    .valentine-banner .banner-cta {
        display: none;
    }

    .valentine-header {
        padding: 1.4rem;
    }

    .valentine-header h2 {
        font-size: 1.15rem;
    }

    .valentine-content {
        padding: 1.2rem;
    }

    .valentine-price span {
        font-size: 1.5rem;
    }
}
