/* Black Friday Banner Styles */

.black-friday-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
}

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

.black-friday-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bf-emoji {
    font-size: 1.5rem;
}

.bf-text {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.bf-highlight {
    color: #FFD700;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.bf-countdown {
    background: #FFD700;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bf-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.bf-close:hover {
    opacity: 1;
}

.black-friday-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }
}

.bf-price-original {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9em;
    margin-right: 0.5rem;
}

.bf-price-new {
    color: #FFD700;
    font-weight: 500;
    font-size: 1.1em;
}

/* Adjust main content for banner */
body.bf-active {
    padding-top: 60px;
}

body.bf-active nav {
    top: 60px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .black-friday-banner {
        padding: 0.8rem 1rem;
    }

    .bf-text {
        font-size: 0.85rem;
    }

    .bf-highlight {
        font-size: 1rem;
    }

    .bf-countdown {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    body.bf-active {
        padding-top: 100px;
    }

    body.bf-active nav {
        top: 100px;
    }
}
