/* ============================================================ 
   COOKIE CONSENT DRAWER - VENIGEM ADVANCED TECHNOLOGIES 
   ============================================================ */

:root {
    --cookie-bg: rgba(10, 15, 28, 0.95);
    --cookie-border: rgba(5, 152, 153, 0.2);
    --cookie-text: #e0e0e0;
    --cookie-accent: #059899;
}

.cookie-consent-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    background: var(--cookie-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--cookie-border);
    border-radius: 16px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(5, 152, 153, 0.1);
    transform: translateX(-120%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    width: 32px;
    height: 32px;
    background: rgba(5, 152, 153, 0.1);
    color: var(--cookie-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.cookie-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}

.cookie-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cookie-text);
    margin: 0;
}

.cookie-content a {
    color: var(--cookie-accent);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.cookie-btn-accept {
    background: var(--cookie-accent);
    color: #fff;
    border: 1px solid var(--cookie-accent);
}

.cookie-btn-accept:hover {
    background: #047d7e;
    box-shadow: 0 0 15px rgba(5, 152, 153, 0.3);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--cookie-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Close Animation */
.cookie-consent-card.hide {
    transform: translateX(-120%);
    opacity: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cookie-consent-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
    }
}
