/* Cookie Bar Styles */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 37, 57, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-bar-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-bar-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.cookie-bar-text p {
    margin: 0;
    opacity: 0.9;
}

.cookie-bar-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.cookie-bar-text a:hover {
    text-decoration: underline;
}

.cookie-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

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

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

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

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

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

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

.cookie-btn-decline:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Icon */
.cookie-icon {
    margin-right: 12px;
    font-size: 20px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-bar {
        padding: 16px;
    }
    
    .cookie-bar-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-bar-text {
        text-align: center;
    }
    
    .cookie-bar-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-bar-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-bar-text h4 {
        font-size: 15px;
    }
    
    .cookie-bar-text p {
        font-size: 13px;
    }
}
