/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 3rem);
    max-width: 600px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cookie-icon-wrapper span {
    font-size: 1.75rem;
    color: #f59e0b; /* Amber/Cookie color */
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.cookie-text p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.cookie-text p a {
    color: var(--clr-primary, #f97316);
    text-decoration: none;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn-accept {
    background: #0f172a;
    color: white;
}

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

.cookie-btn-decline {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.cookie-btn-decline:hover {
    background: #f1f5f9;
    color: #0f172a;
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1.25rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-icon-wrapper {
        display: none; /* Hide icon on mobile to save space */
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
