/* Cookie Consent Banner Styles */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 25, 36, 0.98);
    color: #fff;
    padding: 1.5em 2em;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 2px solid #F99410;
}

#cookie-banner.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.cookie-text a {
    color: #F99410;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75em 1.75em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #F99410;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #e68409;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 148, 16, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media screen and (max-width: 736px) {
    #cookie-banner {
        padding: 1.25em 1.5em;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1em;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}
