/* Cookie Consent Styles */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#cookie-consent-banner.cookie-consent-show {
    transform: translateY(0);
    opacity: 1;
}

#cookie-consent-banner.cookie-consent-hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 40px;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cookie-consent-icon svg {
    color: white;
}

.cookie-consent-text {
    flex: 1;
    min-width: 0;
}

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

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    justify-content: center;
}

.cookie-consent-accept {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cookie-consent-accept:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

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

.cookie-consent-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Message Styles */
.cookie-consent-message {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-message.cookie-consent-message-show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-consent-message.cookie-consent-message-hide {
    transform: translateX(400px);
    opacity: 0;
}

.cookie-consent-message-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
}

.cookie-consent-message-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-message-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-message-content svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .cookie-consent-actions {
        flex-direction: row;
        width: 100%;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: auto;
    }
    
    .cookie-consent-message {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .cookie-consent-text h4 {
        font-size: 15px;
    }
    
    .cookie-consent-text p {
        font-size: 13px;
    }
    
    .cookie-consent-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}
