/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    color: #ffffff;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-consent-link {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.cookie-consent-link:hover {
    opacity: 1;
}

.cookie-consent-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-consent-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.cookie-consent-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-consent-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-consent-link,
    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-consent-btn {
        padding: 1rem;
    }
}
