/* Cookie Consent Popup Styles */
#cookieConsentPopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#cookieConsentPopup.show {
    transform: translateY(0);
    opacity: 1;
}

#cookieConsentPopup.hide {
    transform: translateY(150%);
    opacity: 0;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-consent-text {
    color: #666;
    font-size: 12px;
}

.cookie-consent-text a {
    color: var(--teal, #0D7377);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: var(--teal-600, #0A5D61);
}

.cookie-consent-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    flex: 1;
    min-width: 100px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-btn-accept {
    background: var(--teal, #0D7377);
    color: white;
}

.cookie-consent-btn-accept:hover {
    background: var(--teal-600, #0A5D61);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(13, 115, 119, 0.3);
}

.cookie-consent-btn-decline {
    background: #f3f4f6;
    color: #666;
}

.cookie-consent-btn-decline:hover {
    background: #e5e7eb;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    #cookieConsentPopup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 14px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
}
