/* Cookie Consent Banner Styles */
.gln-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.gln-cookie-banner.gln-cookie-show {
    transform: translateY(0);
}

.gln-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gln-cookie-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.gln-privacy-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.gln-privacy-link:hover {
    color: #1d4ed8;
}

.gln-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gln-cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gln-cookie-accept {
    background: #2563eb;
    color: white;
}

.gln-cookie-accept:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.gln-cookie-settings {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.gln-cookie-settings:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gln-cookie-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .gln-cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .gln-cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .gln-cookie-banner {
        padding: 16px 0;
    }

    .gln-cookie-content {
        padding: 0 16px;
    }

    .gln-cookie-text p {
        font-size: 13px;
    }

    .gln-cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}