/* Cookie Notice Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    font-size: 14px;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-banner-buttons .btn-accept {
    background: #0d6efd;
    color: white;
}

.cookie-banner-buttons .btn-decline {
    background: #6c757d;
    color: white;
}

.cookie-banner-buttons .btn-settings {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-banner-buttons button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .cookie-banner-buttons button {
        flex: 1;
    }
}

/* Additional utility classes */
.d-none-social {
    display: none !important;
}
