.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-notice-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
}

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

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

.cookie-notice-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-notice-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cookie-notice-btn.accept {
    background: #27ae60;
    color: white;
}

.cookie-notice-btn.accept:hover {
    background: #229954;
}

.cookie-notice-btn.decline {
    background: #e74c3c;
    color: white;
}

.cookie-notice-btn.decline:hover {
    background: #c0392b;
}

@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice-buttons {
        justify-content: center;
    }
    
    .cookie-notice-text {
        min-width: auto;
    }
}
