.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 41, 55, 0.98);
    color: #fff;
    padding: 1.25rem 1rem;
    z-index: 9999;
    box-shadow: 0 -10px 15px -3px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: sans-serif;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner.hidden {
    display: none;
}
.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-banner-content p {
    margin: 0;
    flex: 1 1 400px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e7eb;
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-cookie {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-accept { 
    background-color: #f59e0b; 
    color: #fff; 
}
.btn-accept:hover { 
    background-color: #d97706; 
}
.btn-reject { 
    background-color: transparent; 
    border: 1px solid #9ca3af; 
    color: #e5e7eb; 
}
.btn-reject:hover { 
    background-color: rgba(255,255,255,0.1); 
    border-color: #fff;
    color: #fff; 
}
.cookie-link { 
    color: #fcd34d; 
    text-decoration: underline; 
    font-size: 0.9rem; 
    margin-left: 0.5rem; 
}
