/* Cookie Consent Styles */
.tek-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    z-index: 999990;
    /* Below Chatbot (999999) */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tek-cookie-banner.active {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon .dashicons {
    color: var(--accent-primary, #06b6d4);
    font-size: 20px;
}

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

.cookie-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #cbd5e1;
}

.cookie-text a {
    color: var(--accent-primary, #06b6d4);
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: white;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-actions button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-actions .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
}

.cookie-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.cookie-actions .btn-primary {
    background: var(--accent-primary, #06b6d4);
    border: none;
    color: white;
}

.cookie-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .tek-cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
        max-width: none;
        flex-direction: column;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }
}