/* ============================================
   Cookie Consent Styles
   ============================================ */

.tj34-cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInUp 0.5s ease;
    display: none;
}

.tj34-cookie-consent.show {
    display: block;
}

.tj34-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tj34-cookie-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.tj34-cookie-content p i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tj34-cookie-content .tj34-btn {
    align-self: flex-end;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tj34-cookie-consent {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .tj34-cookie-consent {
        left: 10px;
        right: 10px;
        padding: 1rem;
    }
    
    .tj34-cookie-content p {
        font-size: 0.85rem;
    }
}

