/* Cookie Consent Popup - LTR Spanish - Compact Corner Toast */
.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    max-width: 380px;
    z-index: 2000;
    background: #ffffff;
    color: #333333;
    padding: 16px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    direction: ltr;
    text-align: left;
}

.cookie-consent-popup.show {
    transform: translateY(0);
}

.cookie-consent-popup.hide {
    opacity: 0;
    transform: translateY(120%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.cookie-consent-title {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
}

.cookie-consent-description {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666666;
}

.cookie-consent-link {
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-consent-link:hover {
    color: #ff6f61;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: Rubik, sans-serif;
    white-space: nowrap;
    flex: 1;
}

.cookie-consent-btn:hover {
    background: #34495e;
}

.cookie-consent-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 14px 16px;
    }

    .cookie-consent-title {
        font-size: 0.9rem;
    }

    .cookie-consent-description {
        font-size: 0.8rem;
    }

    .cookie-consent-btn {
        padding: 10px 16px;
    }
}

/* Cookie preferences link in footer */
.cookie-preferences-link {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.cookie-preferences-link:hover {
    opacity: 1;
}
