/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1d1d1d;
    color: #fff;
    z-index: 9999;
    padding: 20px 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-text p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
    color: #fff;
}

.cookie-consent-text a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #2980b9;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
}

.cookie-btn-info {
    background: var(--theme-accent);
    color: white;
}

.cookie-btn-info:hover {
    background: var(--theme-accent-hover);
    transform: translateY(-1px);
}

.cookie-btn-accept {
    background: var(--theme-accent);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--theme-accent-hover);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
}

.cookie-btn-reject:hover {
    background: #c03a2b81;
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-consent-content {
        text-align: center;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}
