/* Cookie Banner Styles - GDPR Compliant */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0E0E0E 100%);
    border-top: 2px solid #9CFE4F;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-banner-icon {
    width: 24px;
    height: 24px;
    background: #9CFE4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-banner-icon i {
    color: #1a1a1a;
    font-size: 12px;
}

.cookie-banner-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cookie-banner-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: #9CFE4F;
    text-decoration: none;
    font-weight: 500;
}

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

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-banner-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.cookie-banner-btn-accept {
    background: linear-gradient(45deg, #9CFE4F, #7FE34F);
    color: #1a1a1a;
}

.cookie-banner-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 254, 79, 0.3);
}

.cookie-banner-btn-reject {
    background: transparent;
    color: #cccccc;
    border: 2px solid #cccccc;
}

.cookie-banner-btn-reject:hover {
    background: #cccccc;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.cookie-banner-link {
    color: #9CFE4F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
}

.cookie-banner-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        gap: 12px;
    }
    
    .cookie-banner-title {
        font-size: 16px;
    }
    
    .cookie-banner-text {
        font-size: 13px;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner-link {
        margin-left: 0;
        text-align: center;
        order: -1;
    }
}

/* Animation for banner appearance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.show {
    animation: slideUp 0.3s ease-out;
}

/* Hide banner when dismissed */
.cookie-banner.hidden {
    display: none;
}

/* Loading state for buttons */
.cookie-banner-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-banner-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cookie Notification Styles */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #9CFE4F, #7FE34F);
    color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(156, 254, 79, 0.3);
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    max-width: 350px;
}

.cookie-notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.cookie-notification-content i {
    font-size: 16px;
    color: #1a1a1a;
}

.cookie-notification-content button {
    background: none;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 14px;
}

.cookie-notification-content button:hover {
    opacity: 0.7;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive for notifications */
@media (max-width: 768px) {
    .cookie-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
